diff options
author | lloyd <[email protected]> | 2010-03-04 03:28:48 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-03-04 03:28:48 +0000 |
commit | de89566f633d5ed807ca57a59cc1071f79fdded3 (patch) | |
tree | 4a0109b931df0f28ec01c3ae40b3d3f69543bbd8 /src/pubkey/x509_key.h | |
parent | 76f39cc9fe4b2a3354db22f8beaf0c3788578b79 (diff) |
Remove X509_Decoder. Fix GOST-34.10 DER constructor (was default to normal ECC)
Diffstat (limited to 'src/pubkey/x509_key.h')
-rw-r--r-- | src/pubkey/x509_key.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/src/pubkey/x509_key.h b/src/pubkey/x509_key.h index a8f5267d7..13f11646e 100644 --- a/src/pubkey/x509_key.h +++ b/src/pubkey/x509_key.h @@ -16,25 +16,10 @@ namespace Botan { /** -* This class represents abstract X.509 public key decoders. -*/ -class BOTAN_DLL X509_Decoder - { - public: - virtual void alg_id(const AlgorithmIdentifier&) = 0; - virtual void key_bits(const MemoryRegion<byte>&) = 0; - virtual ~X509_Decoder() {} - }; - -/** * This namespace contains functions for handling X509 objects. */ namespace X509 { -/* -* X.509 Public Key Encoding/Decoding -*/ - /** * Encode a key into a pipe. * @param key the public key to encode |