aboutsummaryrefslogtreecommitdiffstats
path: root/src/cert
diff options
context:
space:
mode:
authorlloyd <[email protected]>2012-06-01 04:59:27 +0000
committerlloyd <[email protected]>2012-06-01 04:59:27 +0000
commita597c5ac36f012f76814fcfc1523d956871c0c0c (patch)
treeb2003fc6a5a5d0d228ab966e0da84d89d5dc9db3 /src/cert
parent63defdde855dca51d5db405cb97d9b7c9ba09332 (diff)
Drop some deprecated functions
Diffstat (limited to 'src/cert')
-rw-r--r--src/cert/x509/x509_obj.cpp11
-rw-r--r--src/cert/x509/x509_obj.h9
2 files changed, 0 insertions, 20 deletions
diff --git a/src/cert/x509/x509_obj.cpp b/src/cert/x509/x509_obj.cpp
index ff116d894..37d814ce6 100644
--- a/src/cert/x509/x509_obj.cpp
+++ b/src/cert/x509/x509_obj.cpp
@@ -109,17 +109,6 @@ void X509_Object::decode_from(BER_Decoder& from)
}
/*
-* Return a BER or PEM encoded X.509 object
-*/
-void X509_Object::encode(Pipe& out, X509_Encoding encoding) const
- {
- if(encoding == PEM)
- out.write(this->PEM_encode());
- else
- out.write(this->BER_encode());
- }
-
-/*
* Return a BER encoded X.509 object
*/
std::vector<byte> X509_Object::BER_encode() const
diff --git a/src/cert/x509/x509_obj.h b/src/cert/x509/x509_obj.h
index 75a0b5c02..5905e1b37 100644
--- a/src/cert/x509/x509_obj.h
+++ b/src/cert/x509/x509_obj.h
@@ -86,15 +86,6 @@ class BOTAN_DLL X509_Object : public ASN1_Object
*/
std::string PEM_encode() const;
- /**
- * Encode this to a pipe
- * @deprecated use BER_encode or PEM_encode instead
- * @param out the pipe to write to
- * @param encoding the encoding to use
- */
- BOTAN_DEPRECATED("Use BER_encode or PEM_encode")
- void encode(Pipe& out, X509_Encoding encoding = PEM) const;
-
virtual ~X509_Object() {}
protected:
X509_Object(DataSource& src, const std::string& pem_labels);