diff options
author | lloyd <[email protected]> | 2008-06-10 19:10:34 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-06-10 19:10:34 +0000 |
commit | b36db2d74992f2ea80329378c32a6321d6a60b26 (patch) | |
tree | 426add866dd75f8b3e73e0bde0ae5d936c305662 /include/x509_ca.h | |
parent | 54fecdc60438d15f970055bb691e18c6469e1785 (diff) |
Change PK_Signer::signature to take a RandomNumberGenerator reference
instead of always using the global PRNG.
Diffstat (limited to 'include/x509_ca.h')
-rw-r--r-- | include/x509_ca.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/x509_ca.h b/include/x509_ca.h index f6564d045..1f0e35261 100644 --- a/include/x509_ca.h +++ b/include/x509_ca.h @@ -31,7 +31,8 @@ class BOTAN_DLL X509_CA X509_CRL update_crl(const X509_CRL&, const std::vector<CRL_Entry>&, u32bit = 0) const; - static X509_Certificate make_cert(PK_Signer*, const AlgorithmIdentifier&, + static X509_Certificate make_cert(PK_Signer*, + const AlgorithmIdentifier&, const MemoryRegion<byte>&, const X509_Time&, const X509_Time&, const X509_DN&, const X509_DN&, |