diff options
author | lloyd <[email protected]> | 2009-07-21 05:05:16 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2009-07-21 05:05:16 +0000 |
commit | 26fa46ce690011c2e1bf032db0ef6606d1a3b2f6 (patch) | |
tree | 9fa00f415eea4654f78cfe9eee94f10d0884ce97 /src/pubkey | |
parent | eacb11c515ce8bb4d6b856db6caf4dd1fbeaca68 (diff) |
One signature of PKCS8::PEM_encode was stray, and didn't have a cooresponding
implementation. This had been the case since at least 1.8.0. Remove it, since
implementing this signature would require having the library create an
AutoSeeded_RNG, which seems like it might be quite surprising to an unsuspecting
user.
Problem reported by M. Braun in ticket 44
Diffstat (limited to 'src/pubkey')
-rw-r--r-- | src/pubkey/pk_codecs/pkcs8.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/pubkey/pk_codecs/pkcs8.h b/src/pubkey/pk_codecs/pkcs8.h index 87f8ba326..0965e5ff1 100644 --- a/src/pubkey/pk_codecs/pkcs8.h +++ b/src/pubkey/pk_codecs/pkcs8.h @@ -117,11 +117,6 @@ BOTAN_DLL std::string PEM_encode(const Private_Key& key, const std::string& pass, const std::string& pbe_algo = ""); -BOTAN_DLL std::string PEM_encode(const Private_Key&, - const std::string&, - const std::string& = ""); - - /** * Load a key from a data source. * @param source the data source providing the encoded key |