iPXE
rsa_sha512.c File Reference
#include <byteswap.h>
#include <ipxe/rsa.h>
#include <ipxe/sha512.h>
#include <ipxe/asn1.h>
#include <ipxe/tls.h>

Go to the source code of this file.

Functions

 FILE_LICENCE (GPL2_OR_LATER_OR_UBDL)
 FILE_SECBOOT (PERMITTED)

Variables

static uint8_t oid_sha512_with_rsa_encryption []
 "sha512WithRSAEncryption" object identifier
struct asn1_algorithm sha512_with_rsa_encryption_algorithm __asn1_algorithm
 "sha512WithRSAEncryption" OID-identified algorithm
static const uint8_t rsa_sha512_prefix_data []
 SHA-512 digestInfo prefix.
struct rsa_digestinfo_prefix rsa_sha512_prefix __rsa_digestinfo_prefix
 SHA-512 digestInfo prefix.
struct tls_signature_hash_algorithm tls_rsa_sha512 __tls_sig_hash_algorithm
 RSA with SHA-512 signature hash algorithm.

Function Documentation

◆ FILE_LICENCE()

FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL )

◆ FILE_SECBOOT()

FILE_SECBOOT ( PERMITTED )

Variable Documentation

◆ oid_sha512_with_rsa_encryption

uint8_t oid_sha512_with_rsa_encryption[]
static
Initial value:
=
#define ASN1_OID_SHA512WITHRSAENCRYPTION
ASN.1 OID for sha512WithRSAEncryption (1.2.840.113549.1.1.13).
Definition asn1.h:204

"sha512WithRSAEncryption" object identifier

Definition at line 34 of file rsa_sha512.c.

◆ __asn1_algorithm

struct asn1_algorithm sha512_with_rsa_encryption_algorithm __asn1_algorithm
Initial value:
= {
.name = "sha512WithRSAEncryption",
.pubkey = &rsa_algorithm,
.digest = &sha512_algorithm,
}
#define ASN1_CURSOR(value)
Define an ASN.1 cursor for a static value.
Definition asn1.h:408
struct pubkey_algorithm rsa_algorithm
RSA public-key algorithm.
Definition rsa.c:833
static uint8_t oid_sha512_with_rsa_encryption[]
"sha512WithRSAEncryption" object identifier
Definition rsa_sha512.c:34
struct digest_algorithm sha512_algorithm

"sha512WithRSAEncryption" OID-identified algorithm

Generic elliptic curve container algorithm.

Definition at line 38 of file rsa_sha512.c.

38 {
39 .name = "sha512WithRSAEncryption",
40 .pubkey = &rsa_algorithm,
41 .digest = &sha512_algorithm,
43};

◆ rsa_sha512_prefix_data

const uint8_t rsa_sha512_prefix_data[]
static
Initial value:
=
#define SHA512_DIGEST_SIZE
Definition Tpm20.h:37
#define ASN1_OID_SHA512
ASN.1 OID for id-sha512 (2.16.840.1.101.3.4.2.3).
Definition asn1.h:300
#define RSA_DIGESTINFO_PREFIX(digest_size,...)
RSA digestInfo prefix.
Definition rsa.h:34

SHA-512 digestInfo prefix.

Definition at line 46 of file rsa_sha512.c.

◆ __rsa_digestinfo_prefix

struct rsa_digestinfo_prefix rsa_sha512_prefix __rsa_digestinfo_prefix
Initial value:
= {
.digest = &sha512_algorithm,
.len = sizeof ( rsa_sha512_prefix_data ),
}
static const uint8_t rsa_sha512_prefix_data[]
SHA-512 digestInfo prefix.
Definition rsa_sha512.c:46

SHA-512 digestInfo prefix.

Definition at line 50 of file rsa_sha512.c.

50 {
51 .digest = &sha512_algorithm,
53 .len = sizeof ( rsa_sha512_prefix_data ),
54};

◆ __tls_sig_hash_algorithm

struct tls_signature_hash_algorithm tls_rsa_pss_pss_sha512 __tls_sig_hash_algorithm
Initial value:
= {
.algorithm = &rsa_encryption_algorithm,
.pubkey = &rsa_algorithm,
.digest = &sha512_algorithm,
}
#define htons(value)
Definition byteswap.h:136
#define TLS_RSA_SHA512_ALGORITHM
Definition tls.h:122

RSA with SHA-512 signature hash algorithm.

RSA-PSS with RSASSA-PSS OID and SHA-512 signature hash algorithm.

RSA-PSS with rsaEncryption OID and SHA-512 signature hash algorithm.

Definition at line 57 of file rsa_sha512.c.

57 {
59 .algorithm = &rsa_encryption_algorithm,
60 .pubkey = &rsa_algorithm,
61 .digest = &sha512_algorithm,
62};