diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2015-09-03 13:36:26 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2015-09-03 13:36:26 -0500 |
commit | 5896a404bcc63085cf0a50d232d2d631a5107228 (patch) | |
tree | c587afcd802bac3038869d2eaa5dbadd2b249110 /tdeio/kssl/kopenssl.h | |
parent | 70bb9dde2a97b4e2b456e679a05c6f039c2c912f (diff) | |
download | tdelibs-5896a404bcc63085cf0a50d232d2d631a5107228.tar.gz tdelibs-5896a404bcc63085cf0a50d232d2d631a5107228.zip |
Add initial CRL support to KSSLCertificate
Diffstat (limited to 'tdeio/kssl/kopenssl.h')
-rw-r--r-- | tdeio/kssl/kopenssl.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tdeio/kssl/kopenssl.h b/tdeio/kssl/kopenssl.h index 59cf7b560..9d0537051 100644 --- a/tdeio/kssl/kopenssl.h +++ b/tdeio/kssl/kopenssl.h @@ -291,6 +291,11 @@ public: */ X509 * d2i_X509(X509 **a,unsigned char **pp,long length); + /* + * d2i_X509 - Covert a text representation of X509 CRL to an X509_CRL object + */ + X509_CRL * d2i_X509_CRL(X509_CRL **a,unsigned char **pp,long length); + /* * i2d_X509 - Covert an X509 object into a text representation |