diff options
author | Marc Laukien <marc@zeroc.com> | 2002-09-28 19:59:40 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2002-09-28 19:59:40 +0000 |
commit | a46dbf9951edb25908ee2342d96c8948080f3b2d (patch) | |
tree | 69edeff1a51dc4350a12e8f26c81025b4f74167c /cpp/src/IceSSL/RSAKeyPair.cpp | |
parent | Removed slice task tagdir attribute from build.xml (diff) | |
download | ice-a46dbf9951edb25908ee2342d96c8948080f3b2d.tar.bz2 ice-a46dbf9951edb25908ee2342d96c8948080f3b2d.tar.xz ice-a46dbf9951edb25908ee2342d96c8948080f3b2d.zip |
minor changes for gcc 3.2
Diffstat (limited to 'cpp/src/IceSSL/RSAKeyPair.cpp')
-rw-r--r-- | cpp/src/IceSSL/RSAKeyPair.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/cpp/src/IceSSL/RSAKeyPair.cpp b/cpp/src/IceSSL/RSAKeyPair.cpp index a80f5403fe6..5178dc58e46 100644 --- a/cpp/src/IceSSL/RSAKeyPair.cpp +++ b/cpp/src/IceSSL/RSAKeyPair.cpp @@ -24,16 +24,16 @@ using Ice::ByteSeq; using IceUtil::Base64; IceSSL::RSAKeyPair::RSAKeyPair(const string& key, const string& cert) : - _privateKey(new RSAPrivateKey(key)), - _publicKey(new RSAPublicKey(cert)) + _privateKey(new RSAPrivateKey(key)), + _publicKey(new RSAPublicKey(cert)) { assert(_privateKey != 0); assert(_publicKey != 0); } IceSSL::RSAKeyPair::RSAKeyPair(const ByteSeq& keySeq, const ByteSeq& certSeq) : - _privateKey(new RSAPrivateKey(keySeq)), - _publicKey(new RSAPublicKey(certSeq)) + _privateKey(new RSAPrivateKey(keySeq)), + _publicKey(new RSAPublicKey(certSeq)) { assert(_privateKey != 0); assert(_publicKey != 0); @@ -80,8 +80,8 @@ IceSSL::RSAKeyPair::getX509PublicKey() const } IceSSL::RSAKeyPair::RSAKeyPair(const RSAPrivateKeyPtr& rsa, const RSAPublicKeyPtr& x509) : - _privateKey(rsa), - _publicKey(x509) + _privateKey(rsa), + _publicKey(x509) { } |