iPXE
rsa_sha384.c File Reference
#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_sha384_with_rsa_encryption []
 "sha384WithRSAEncryption" object identifier
struct asn1_algorithm sha384_with_rsa_encryption_algorithm __asn1_algorithm
 "sha384WithRSAEncryption" OID-identified algorithm
static const uint8_t rsa_sha384_prefix_data []
 SHA-384 digestInfo prefix.
struct rsa_digestinfo_prefix rsa_sha384_prefix __rsa_digestinfo_prefix
 SHA-384 digestInfo prefix.
struct tls_signature_hash_algorithm tls_rsa_sha384 __tls_sig_hash_algorithm
 RSA with SHA-384 signature hash algorithm.

Function Documentation

◆ FILE_LICENCE()

FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL )

◆ FILE_SECBOOT()

FILE_SECBOOT ( PERMITTED )

Variable Documentation

◆ oid_sha384_with_rsa_encryption

uint8_t oid_sha384_with_rsa_encryption[]
static
Initial value:
=
#define ASN1_OID_SHA384WITHRSAENCRYPTION
ASN.1 OID for sha384WithRSAEncryption (1.2.840.113549.1.1.12)
Definition asn1.h:192

"sha384WithRSAEncryption" object identifier

Definition at line 33 of file rsa_sha384.c.

◆ __asn1_algorithm

struct asn1_algorithm sha384_with_rsa_encryption_algorithm __asn1_algorithm
Initial value:
= {
.name = "sha384WithRSAEncryption",
.pubkey = &rsa_algorithm,
.digest = &sha384_algorithm,
}
#define ASN1_CURSOR(value)
Define an ASN.1 cursor for a static value.
Definition asn1.h:402
struct pubkey_algorithm rsa_algorithm
RSA public-key algorithm.
Definition rsa.c:661
static uint8_t oid_sha384_with_rsa_encryption[]
"sha384WithRSAEncryption" object identifier
Definition rsa_sha384.c:33
struct digest_algorithm sha384_algorithm
SHA-384 algorithm.
Definition sha384.c:64

"sha384WithRSAEncryption" OID-identified algorithm

Generic elliptic curve container algorithm.

Definition at line 37 of file rsa_sha384.c.

37 {
38 .name = "sha384WithRSAEncryption",
39 .pubkey = &rsa_algorithm,
40 .digest = &sha384_algorithm,
42};

◆ rsa_sha384_prefix_data

const uint8_t rsa_sha384_prefix_data[]
static
Initial value:
=
#define SHA384_DIGEST_SIZE
Definition Tpm20.h:34
#define ASN1_OID_SHA384
ASN.1 OID for id-sha384 (2.16.840.1.101.3.4.2.2)
Definition asn1.h:287
#define RSA_DIGESTINFO_PREFIX(digest_size,...)
RSA digestInfo prefix.
Definition rsa.h:34

SHA-384 digestInfo prefix.

Definition at line 45 of file rsa_sha384.c.

◆ __rsa_digestinfo_prefix

struct rsa_digestinfo_prefix rsa_sha384_prefix __rsa_digestinfo_prefix
Initial value:
= {
.digest = &sha384_algorithm,
.len = sizeof ( rsa_sha384_prefix_data ),
}
static const uint8_t rsa_sha384_prefix_data[]
SHA-384 digestInfo prefix.
Definition rsa_sha384.c:45

SHA-384 digestInfo prefix.

Definition at line 49 of file rsa_sha384.c.

49 {
50 .digest = &sha384_algorithm,
52 .len = sizeof ( rsa_sha384_prefix_data ),
53};

◆ __tls_sig_hash_algorithm

struct tls_signature_hash_algorithm tls_rsa_sha384 __tls_sig_hash_algorithm
Initial value:
= {
.code = {
.signature = TLS_RSA_ALGORITHM,
},
.pubkey = &rsa_algorithm,
.digest = &sha384_algorithm,
}
#define TLS_SHA384_ALGORITHM
Definition tls.h:118
#define TLS_RSA_ALGORITHM
Definition tls.h:122

RSA with SHA-384 signature hash algorithm.

Definition at line 56 of file rsa_sha384.c.

56 {
57 .code = {
58 .signature = TLS_RSA_ALGORITHM,
60 },
61 .pubkey = &rsa_algorithm,
62 .digest = &sha384_algorithm,
63};