diff options
author | Jack Lloyd <[email protected]> | 2017-12-20 09:22:53 -0500 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2017-12-20 09:22:53 -0500 |
commit | 502570f103bd86808ff15bde84d2b3f7161ff5f3 (patch) | |
tree | aa81e9b7e35d5c7b69831cc5fa538e6dbf6964c2 /doc/manual/deprecated.rst | |
parent | f989179cd1bf3cddd8f4085bbc081fab9f4a6504 (diff) |
Note deprecation of X509_Certificate info access via subject_info
Diffstat (limited to 'doc/manual/deprecated.rst')
-rw-r--r-- | doc/manual/deprecated.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/manual/deprecated.rst b/doc/manual/deprecated.rst index 3c768d1cb..ff3db83f8 100644 --- a/doc/manual/deprecated.rst +++ b/doc/manual/deprecated.rst @@ -19,6 +19,11 @@ in the source. - The TLS constructors taking `std::function` for callbacks. Instead use the TLS::Callbacks interface. +- Using ``X509_Certificate::subject_info`` and ``issuer_info`` to access any + information that is not included in the DN or subject alternative name. Prefer + using the specific accessor functions for other data, eg instead of + ``cert.subject_info("X509.Certificate.serial")`` use ``cert.serial_number()``. + - The Buffered_Computation base class. In a future release the class will be removed, and all of member functions instead declared directly on MessageAuthenticationCode and HashFunction. So this only affects you if you |