iPXE
oid_rsa_pss.c File Reference
#include <ipxe/rsa.h>
#include <ipxe/asn1.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_rsassa_pss [] = { ASN1_OID_RSASSA_PSS }
 "rsassa-pss" object identifier
struct asn1_algorithm rsassa_pss_algorithm __asn1_algorithm
 "rsassa-pss" OID-identified algorithm

Function Documentation

◆ FILE_LICENCE()

FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL )

◆ FILE_SECBOOT()

FILE_SECBOOT ( PERMITTED )

Variable Documentation

◆ oid_rsassa_pss

uint8_t oid_rsassa_pss[] = { ASN1_OID_RSASSA_PSS }
static

"rsassa-pss" object identifier

Definition at line 31 of file oid_rsa_pss.c.

#define ASN1_OID_RSASSA_PSS
ASN.1 OID for rsassa-pss (1.2.840.113549.1.1.10).
Definition asn1.h:186

◆ __asn1_algorithm

struct asn1_algorithm rsassa_pss_algorithm __asn1_algorithm
Initial value:
= {
.name = "rsassa-pss",
.pubkey = &rsa_pss_algorithm,
.digest = NULL,
}
#define NULL
NULL pointer (VOID *).
Definition Base.h:321
#define ASN1_CURSOR(value)
Define an ASN.1 cursor for a static value.
Definition asn1.h:408
static uint8_t oid_rsassa_pss[]
"rsassa-pss" object identifier
Definition oid_rsa_pss.c:31
struct pubkey_algorithm rsa_pss_algorithm
RSA-PSS public-key algorithm.
Definition rsa.c:844

"rsassa-pss" OID-identified algorithm

Generic elliptic curve container algorithm.

Definition at line 34 of file oid_rsa_pss.c.

34 {
35 .name = "rsassa-pss",
36 .pubkey = &rsa_pss_algorithm,
37 .digest = NULL,
38 .oid = ASN1_CURSOR ( oid_rsassa_pss ),
39};