diff options
author | Anthony Neal <aneal@zeroc.com> | 2002-03-27 15:53:45 +0000 |
---|---|---|
committer | Anthony Neal <aneal@zeroc.com> | 2002-03-27 15:53:45 +0000 |
commit | 4d248d29e4398b0c62ed7716be48bf2cc519d454 (patch) | |
tree | 2a2a4b9a83619e0a1549a0681699cc415f352157 /cpp/src/Ice/RSAKeyPair.cpp | |
parent | revising docu; updating init() args (diff) | |
download | ice-4d248d29e4398b0c62ed7716be48bf2cc519d454.tar.bz2 ice-4d248d29e4398b0c62ed7716be48bf2cc519d454.tar.xz ice-4d248d29e4398b0c62ed7716be48bf2cc519d454.zip |
Updates for better handling of DHParams.
Diffstat (limited to 'cpp/src/Ice/RSAKeyPair.cpp')
-rw-r--r-- | cpp/src/Ice/RSAKeyPair.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Ice/RSAKeyPair.cpp b/cpp/src/Ice/RSAKeyPair.cpp index 158c0380810..f6ccedff747 100644 --- a/cpp/src/Ice/RSAKeyPair.cpp +++ b/cpp/src/Ice/RSAKeyPair.cpp @@ -70,7 +70,7 @@ IceSSL::OpenSSL::RSAKeyPair::certToByteSeq(ByteSeq& certSeq) RSA*
IceSSL::OpenSSL::RSAKeyPair::getRSAPrivateKey() const
{
- return _privateKey->getRSAPrivateKey();
+ return _privateKey->get();
}
X509*
|