diff options
Diffstat (limited to 'src/pubkey/pk_codecs/pkcs8.h')
-rw-r--r-- | src/pubkey/pk_codecs/pkcs8.h | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/src/pubkey/pk_codecs/pkcs8.h b/src/pubkey/pk_codecs/pkcs8.h index adfad0e63..9488c2c0b 100644 --- a/src/pubkey/pk_codecs/pkcs8.h +++ b/src/pubkey/pk_codecs/pkcs8.h @@ -13,28 +13,6 @@ namespace Botan { -/** -* PKCS #8 Private Key Encoder. -*/ -class BOTAN_DLL PKCS8_Encoder - { - public: - /** - * Get the algorithm identifier associated with the scheme - * this encoders key is part of. - * @return the algorithm identifier - */ - virtual AlgorithmIdentifier alg_id() const = 0; - - /** - * Get the DER encoded key. - * @return the DER encoded key - */ - // FIXME: Why not SecureVector? - virtual MemoryVector<byte> key_bits() const = 0; - virtual ~PKCS8_Encoder() {} - }; - /* * PKCS #8 Private Key Decoder */ |