diff options
Diffstat (limited to 'src/pubkey/ecc_key/ecc_key.h')
-rw-r--r-- | src/pubkey/ecc_key/ecc_key.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/pubkey/ecc_key/ecc_key.h b/src/pubkey/ecc_key/ecc_key.h index 29a08fba6..226427768 100644 --- a/src/pubkey/ecc_key/ecc_key.h +++ b/src/pubkey/ecc_key/ecc_key.h @@ -42,6 +42,8 @@ class BOTAN_DLL EC_PublicKey : public virtual Public_Key AlgorithmIdentifier algorithm_identifier() const; + MemoryVector<byte> x509_subject_public_key() const; + /** * Get the domain parameters of this key. * @throw Invalid_State is thrown if the @@ -71,12 +73,6 @@ class BOTAN_DLL EC_PublicKey : public virtual Public_Key { return domain_encoding; } /** - * Get an x509_encoder that can be used to encode this key. - * @result an x509_encoder for this key - */ - X509_Encoder* x509_encoder() const; - - /** * Get an x509_decoder that can be used to decode a stored key into * this key. * @result an x509_decoder for this key |