summaryrefslogtreecommitdiffstats
path: root/src/include/ipxe/x509.h
diff options
context:
space:
mode:
authorMichael Brown2012-03-21 18:14:05 +0100
committerMichael Brown2012-03-22 01:31:22 +0100
commitc28537838858be19a0d9ee903fc3758ec73d756d (patch)
tree334ec41e125e0e704a7d04c0a829b24dc17ca9aa /src/include/ipxe/x509.h
parent[crypto] Define ASN.1 OID-identified algorithms for all supported digests (diff)
downloadipxe-c28537838858be19a0d9ee903fc3758ec73d756d.tar.gz
ipxe-c28537838858be19a0d9ee903fc3758ec73d756d.tar.xz
ipxe-c28537838858be19a0d9ee903fc3758ec73d756d.zip
[crypto] Parse X.509 certificate serial number
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/include/ipxe/x509.h')
-rw-r--r--src/include/ipxe/x509.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/include/ipxe/x509.h b/src/include/ipxe/x509.h
index 45f738cd..ca2912fd 100644
--- a/src/include/ipxe/x509.h
+++ b/src/include/ipxe/x509.h
@@ -24,6 +24,12 @@ struct x509_bit_string {
unsigned int unused;
};
+/** An X.509 serial number */
+struct x509_serial {
+ /** Raw serial number */
+ struct asn1_cursor raw;
+};
+
/** An X.509 issuer */
struct x509_issuer {
/** Raw issuer */
@@ -121,6 +127,8 @@ struct x509_certificate {
struct asn1_cursor raw;
/** Version */
unsigned int version;
+ /** Serial number */
+ struct x509_serial serial;
/** Raw tbsCertificate */
struct asn1_cursor tbs;
/** Signature algorithm */