You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@santuario.apache.org by bl...@apache.org on 2005/02/25 23:26:01 UTC

cvs commit: xml-security/c/src/enc/OpenSSL OpenSSLCryptoKeyRSA.cpp OpenSSLCryptoKeyRSA.hpp

blautenb    2005/02/25 14:26:01

  Modified:    c/src/enc/OpenSSL OpenSSLCryptoKeyRSA.cpp
                        OpenSSLCryptoKeyRSA.hpp
  Log:
  Remove redundant m_keyType class variable as reported by Jesse Pelton (jsp@pkc.com) on security-dev@xml
  
  Revision  Changes    Path
  1.18      +1 -2      xml-security/c/src/enc/OpenSSL/OpenSSLCryptoKeyRSA.cpp
  
  Index: OpenSSLCryptoKeyRSA.cpp
  ===================================================================
  RCS file: /home/cvs/xml-security/c/src/enc/OpenSSL/OpenSSLCryptoKeyRSA.cpp,v
  retrieving revision 1.17
  retrieving revision 1.18
  diff -u -r1.17 -r1.18
  --- OpenSSLCryptoKeyRSA.cpp	19 Feb 2005 03:37:48 -0000	1.17
  +++ OpenSSLCryptoKeyRSA.cpp	25 Feb 2005 22:26:00 -0000	1.18
  @@ -622,7 +622,6 @@
   
   	XSECnew(ret, OpenSSLCryptoKeyRSA);
   
  -	ret->m_keyType = m_keyType;
   	ret->mp_rsaKey = RSA_new();
   
   	if (mp_oaepParams != NULL) {
  
  
  
  1.11      +1 -2      xml-security/c/src/enc/OpenSSL/OpenSSLCryptoKeyRSA.hpp
  
  Index: OpenSSLCryptoKeyRSA.hpp
  ===================================================================
  RCS file: /home/cvs/xml-security/c/src/enc/OpenSSL/OpenSSLCryptoKeyRSA.hpp,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- OpenSSLCryptoKeyRSA.hpp	3 Feb 2005 13:13:08 -0000	1.10
  +++ OpenSSLCryptoKeyRSA.hpp	25 Feb 2005 22:26:00 -0000	1.11
  @@ -263,7 +263,6 @@
   
   private:
   
  -	XSECCryptoKey::KeyType			m_keyType;
   	RSA								* mp_rsaKey;
   	unsigned char					* mp_oaepParams;
   	unsigned int					m_oaepParamsLen;