diff options
author | Michael Brown <mcb30@ipxe.org> | 2012-05-14 18:22:38 +0100 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2012-05-15 13:24:23 +0100 |
commit | 39ac285a8abced92b03842a8ce48957550d454ad (patch) | |
tree | a74d4c2232a99806b91ebbefd4f840b958c9e94b /src/include/ipxe/asn1.h | |
parent | deac4ea1baa62ab554b57179e481c1b255716bb1 (diff) | |
download | ipxe-39ac285a8abced92b03842a8ce48957550d454ad.tar.gz |
[crypto] Add framework for OCSP
Add support for constructing OCSP queries and parsing OCSP responses.
(There is no support yet for actually issuing an OCSP query via an
HTTP POST.)
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/include/ipxe/asn1.h')
-rw-r--r-- | src/include/ipxe/asn1.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/include/ipxe/asn1.h b/src/include/ipxe/asn1.h index 3fbd09f48..3e73b59c7 100644 --- a/src/include/ipxe/asn1.h +++ b/src/include/ipxe/asn1.h @@ -70,6 +70,9 @@ struct asn1_builder_header { /** ASN.1 object identifier */ #define ASN1_OID 0x06 +/** ASN.1 enumeration */ +#define ASN1_ENUMERATED 0x0a + /** ASN.1 UTC time */ #define ASN1_UTC_TIME 0x17 @@ -204,6 +207,14 @@ struct asn1_builder_header { ASN1_OID_SINGLE ( 5 ), ASN1_OID_SINGLE ( 7 ), \ ASN1_OID_SINGLE ( 48 ), ASN1_OID_SINGLE ( 1 ) +/** ASN.1 OID for id-pkix-ocsp-basic ( 1.3.6.1.5.5.7.48.1.1) */ +#define ASN1_OID_OCSP_BASIC \ + ASN1_OID_INITIAL ( 1, 3 ), ASN1_OID_SINGLE ( 6 ), \ + ASN1_OID_SINGLE ( 1 ), ASN1_OID_SINGLE ( 5 ), \ + ASN1_OID_SINGLE ( 5 ), ASN1_OID_SINGLE ( 7 ), \ + ASN1_OID_SINGLE ( 48 ), ASN1_OID_SINGLE ( 1 ), \ + ASN1_OID_SINGLE ( 1 ) + /** ASN.1 OID for id-kp-OCSPSigning (1.3.6.1.5.5.7.3.9) */ #define ASN1_OID_OCSPSIGNING \ ASN1_OID_INITIAL ( 1, 3 ), ASN1_OID_SINGLE ( 6 ), \ |