diff options
author | Jose <jose@zeroc.com> | 2017-02-17 14:57:07 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2017-02-17 14:57:07 +0100 |
commit | 147176a09e6d7691c3e048d403abbea4ce5d185b (patch) | |
tree | 00ba5c0e93f992d77e9d0c0ad29314379f03e848 /cpp/include/IceSSL/Plugin.h | |
parent | Fixed install location for IcePy.so (diff) | |
download | ice-147176a09e6d7691c3e048d403abbea4ce5d185b.tar.bz2 ice-147176a09e6d7691c3e048d403abbea4ce5d185b.tar.xz ice-147176a09e6d7691c3e048d403abbea4ce5d185b.zip |
Fix (ICE-6831) - Improve IceSSL::Certificate API
Diffstat (limited to 'cpp/include/IceSSL/Plugin.h')
-rw-r--r-- | cpp/include/IceSSL/Plugin.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/cpp/include/IceSSL/Plugin.h b/cpp/include/IceSSL/Plugin.h index 4e9849431e6..17dddbe597c 100644 --- a/cpp/include/IceSSL/Plugin.h +++ b/cpp/include/IceSSL/Plugin.h @@ -336,6 +336,16 @@ public: // bool operator==(const Certificate&) const; bool operator!=(const Certificate&) const; + + // + // Authority key identifier + // + std::vector<Ice::Byte> getAuthorityKeyIdentifier() const; + + // + // Subject key identifier + // + std::vector<Ice::Byte> getSubjectKeyIdentifier() const; // // Get the certificate's public key. |