Ejemplo n.º 1
0
// Retrieve the OpenSSL representation of the key
DSA* OSSLDSAPublicKey::getOSSLKey()
{
	if (dsa == NULL) createOSSLKey();

	return dsa;
}
Ejemplo n.º 2
0
// Retrieve the OpenSSL representation of the key
DH* OSSLDHPublicKey::getOSSLKey()
{
	if (dh == NULL) createOSSLKey();

	return dh;
}