diff options
author | Michael Brown <mcb30@ipxe.org> | 2015-08-02 16:54:24 +0100 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2015-08-02 16:54:24 +0100 |
commit | b1caa48e4bb3f15e7eb749e0c3470436ebff3435 (patch) | |
tree | 8ce3bbef596e98c102585672186f3e586dd1c27e /src/include/ipxe/rsa.h | |
parent | 93370488acb9fedc06527bb0baf89cc2ce82a0a8 (diff) | |
download | ipxe-b1caa48e4bb3f15e7eb749e0c3470436ebff3435.tar.gz |
[crypto] Support SHA-{224,384,512} in X.509 certificates
Add support for SHA-224, SHA-384, and SHA-512 as digest algorithms in
X.509 certificates, and allow the choice of public-key, cipher, and
digest algorithms to be configured at build time via config/crypto.h.
Originally-implemented-by: Tufan Karadere <tufank@gmail.com>
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/include/ipxe/rsa.h')
-rw-r--r-- | src/include/ipxe/rsa.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/ipxe/rsa.h b/src/include/ipxe/rsa.h index 5fe7ec4df..d947eec73 100644 --- a/src/include/ipxe/rsa.h +++ b/src/include/ipxe/rsa.h @@ -8,6 +8,7 @@ FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL ); +#include <stdarg.h> #include <ipxe/crypto.h> #include <ipxe/bigint.h> #include <ipxe/asn1.h> |