1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Class Poco::Net::PrivateKeyPassphraseHandler</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<meta name="author" content="Applied Informatics Software Engineering GmbH and Contributors"/>
<meta name="publisher" content="Applied Informatics Software Engineering GmbH and Contributors"/>
<meta name="copyright" content="Copyright (c) 2009, Applied Informatics Software Engineering GmbH and Contributors"/>
<meta name="language" content="en"/>
<meta name="date" content="2009-11-24"/>
<meta name="generator" content="PocoDoc"/>
<link rel="stylesheet" href="css/styles.css" type="text/css"/>
</head>
<body bgcolor="#ffffff" leftmargin="0" topmargin="0">
<div class="header">
<h1 class="namespace"><a href="Poco.Net.html" class="namespace">Poco::Net</a></h1>
<h1 class="symbol">class PrivateKeyPassphraseHandler</h1>
</div>
<div class="body">
<p>
<b>Library:</b> NetSSL_OpenSSL<br />
<b>Package:</b> SSLCore<br />
<b>Header:</b> Poco/Net/PrivateKeyPassphraseHandler.h</p>
<h2>Description</h2>
<div class="description">
<p>A passphrase handler is needed whenever the private key of a certificate is loaded and the certificate is protected by a passphrase. The <a href="Poco.Net.PrivateKeyPassphraseHandler.html" title="class Poco::Net::PrivateKeyPassphraseHandler">PrivateKeyPassphraseHandler</a>'s task is to provide that passphrase. One can install one's own <a href="Poco.Net.PrivateKeyPassphraseHandler.html" title="class Poco::Net::PrivateKeyPassphraseHandler">PrivateKeyPassphraseHandler</a> by implementing this interface. Note that in the implementation file of the subclass the following code must be present (assuming you use the namespace My_API and the name of your handler class is MyGuiHandler): </p>
<p></p>
<pre>#include "Poco/Net/PrivateKeyFactory.h"
...
POCO_REGISTER_KEYFACTORY(My_API, MyGuiHandler)
</pre>
<p>One can either set the handler directly in the startup code of the main method of ones application by calling </p>
<p></p>
<pre>SSLManager::instance().initialize(myguiHandler, myInvalidCertificateHandler, mySSLContext)
</pre>
<p>or in case one's application extends <a href="Poco.Util.Application.html" title="class Poco::Util::Application">Poco::Util::Application</a> one can use an <a href="Poco.XML.html" title="namespace Poco::XML">XML</a> configuration and put the following entry under the path openSSL.privateKeyPassphraseHandler: </p>
<p></p>
<pre><privateKeyPassphraseHandler>
<name>MyGuiHandler</name>
<options>
[...] // Put optional config params for the handler here
</options>
</privateKeyPassphraseHandler>
</pre>
<p>Note that the name of the passphrase handler must be same as the one provided to the POCO_REGISTER_KEYFACTORY macro. </p>
</div>
<h2>Inheritance</h2>
<p><b>Known Derived Classes: </b><a href="Poco.Net.KeyConsoleHandler.html" title="class Poco::Net::KeyConsoleHandler">KeyConsoleHandler</a>, <a href="Poco.Net.KeyFileHandler.html" title="class Poco::Net::KeyFileHandler">KeyFileHandler</a></p>
<h2>Member Summary</h2>
<p><b>Member Functions: </b><a href="Poco.Net.PrivateKeyPassphraseHandler.html#15840" title="Poco::Net::PrivateKeyPassphraseHandler::onPrivateKeyRequested()">onPrivateKeyRequested</a>, <a href="Poco.Net.PrivateKeyPassphraseHandler.html#15843" title="Poco::Net::PrivateKeyPassphraseHandler::serverSide()">serverSide</a></p>
<h2>Constructors</h2>
<h3><a name="15837">PrivateKeyPassphraseHandler</a></h3>
<p class="decl"><a href="Poco.Net.PrivateKeyPassphraseHandler.html" title="class Poco::Net::PrivateKeyPassphraseHandler">PrivateKeyPassphraseHandler</a>(<br /> bool onServerSide<br />);</p>
<div class="description">
<p>Creates the <a href="Poco.Net.PrivateKeyPassphraseHandler.html" title="class Poco::Net::PrivateKeyPassphraseHandler">PrivateKeyPassphraseHandler</a>. Automatically registers at the SSLManager::PrivateKeyPassword event. </p>
</div>
<h2>Destructor</h2>
<h3><a name="15839">~PrivateKeyPassphraseHandler</a> <img src="images/virtual.gif" alt="virtual" title="virtual" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">virtual ~<a href="Poco.Net.PrivateKeyPassphraseHandler.html" title="class Poco::Net::PrivateKeyPassphraseHandler">PrivateKeyPassphraseHandler</a>();</p>
<div class="description">
<p>Destroys the <a href="Poco.Net.PrivateKeyPassphraseHandler.html" title="class Poco::Net::PrivateKeyPassphraseHandler">PrivateKeyPassphraseHandler</a>. </p>
</div>
<h2>Member Functions</h2>
<h3><a name="15840">onPrivateKeyRequested</a> <img src="images/virtual.gif" alt="virtual" title="virtual" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">virtual void onPrivateKeyRequested(<br /> const void * pSender,<br /> std::string & privateKey<br />) = 0;</p>
<div class="description">
<p>Returns the requested private key in the parameter privateKey. </p>
</div>
<h3><a name="15843">serverSide</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">bool serverSide() const;</p>
<div class="description">
<p></p>
</div>
<p class="footer">POCO C++ Libraries 1.3.6-all<br />
Copyright © 2009, <a href="http://pocoproject.org/" target="_blank">Applied Informatics Software Engineering GmbH and Contributors</a></p>
</div>
</body>
</html>
|