|
Ice 3.7 C++98 API Reference
|
Represents the IceSSL plug-in object. More...
#include <IceSSL/IceSSL.h>


Public Member Functions | |
| virtual CertificatePtr | decode (const std::string &str) const =0 |
| Decode a certificate from a string that uses the PEM encoding format. | |
| virtual CertificatePtr | load (const std::string &file) const =0 |
| Load the certificate from a file. | |
| virtual void | setCertificateVerifier (const CertificateVerifierPtr &v)=0 |
| Establish the certificate verifier object. | |
| virtual void | setPasswordPrompt (const PasswordPromptPtr &p)=0 |
| Establish the password prompt object. | |
| virtual | ~Plugin () |
| Public Member Functions inherited from Ice::Plugin | |
| virtual void | destroy ()=0 |
| Called when the communicator is being destroyed. | |
| virtual void | initialize ()=0 |
| Perform any necessary initialization steps. | |
| Public Member Functions inherited from Ice::LocalObject | |
| virtual bool | operator< (const LocalObject &) const |
| virtual bool | operator== (const LocalObject &) const |
| Public Member Functions inherited from IceUtil::Shared | |
| void | __clearFlag (unsigned char flag) |
| virtual void | __decRef () |
| virtual int | __getRef () const |
| bool | __hasFlag (unsigned char flag) |
| virtual void | __incRef () |
| void | __setFlag (unsigned char flag) |
| virtual void | __setNoDelete (bool) |
| Shared & | operator= (const Shared &) |
| Shared () | |
| Shared (const Shared &) | |
| virtual | ~Shared () |
Additional Inherited Members | |
| Public Types inherited from Ice::Plugin | |
| typedef PluginPtr | PointerType |
| Static Public Attributes inherited from IceUtil::Shared | |
| static const unsigned char | NoDelete |
| Protected Attributes inherited from IceUtil::Shared | |
| unsigned char | _flags |
| IceUtilInternal::Atomic | _ref |
Represents the IceSSL plug-in object.
|
virtual |
Reimplemented from Ice::Plugin.
|
pure virtual |
Decode a certificate from a string that uses the PEM encoding format.
| str | A string containing the encoded certificate. |
| CertificateEncodingException | if an error occurs. |
|
pure virtual |
Load the certificate from a file.
The certificate must use the PEM encoding format.
| file | The certificate file. |
| CertificateReadException | if the file cannot be read. |
|
pure virtual |
Establish the certificate verifier object.
This should be done before any connections are established.
| v | The verifier. |
|
pure virtual |
Establish the password prompt object.
This must be done before the plug-in is initialized.
| p | The password prompt. |