diff options
author | Michael Brown <mcb30@ipxe.org> | 2012-03-21 16:48:08 +0000 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2012-03-22 01:34:40 +0000 |
commit | 2d9d0adc4e7539c45a2a0f387bcf60a1f96ed79c (patch) | |
tree | 5d873fb6ac3e510a96b45b58eeaa4ba3ff962492 /src/include/ipxe/x509.h | |
parent | c28537838858be19a0d9ee903fc3758ec73d756d (diff) | |
download | ipxe-2d9d0adc4e7539c45a2a0f387bcf60a1f96ed79c.tar.gz |
[crypto] Add previous certificate in chain as a parameter to parse_next()
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/include/ipxe/x509.h')
-rw-r--r-- | src/include/ipxe/x509.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/ipxe/x509.h b/src/include/ipxe/x509.h index ca2912fda..427f79557 100644 --- a/src/include/ipxe/x509.h +++ b/src/include/ipxe/x509.h @@ -183,6 +183,7 @@ extern int x509_validate_root ( struct x509_certificate *cert, extern int x509_validate_time ( struct x509_certificate *cert, time_t time ); extern int x509_validate_chain ( int ( * parse_next ) ( struct x509_certificate *cert, + const struct x509_certificate *previous, void *context ), void *context, time_t time, struct x509_root *root, |