commit: r1544 - neon/trunk/src

joe at manyfish.co.uk joe at manyfish.co.uk
Thu Sep 11 10:39:44 EDT 2008


Author: joe
Date: Thu Sep 11 07:39:43 2008
New Revision: 1544

Modified:
   neon/trunk/src/ne_pkcs11.c

Log:
* src/ne_pkcs11.c (pk11_rsa_method): Remove redundant flag
  from the RSA_METHOD flags bitfield, and update comment.


Modified: neon/trunk/src/ne_pkcs11.c
==============================================================================
--- neon/trunk/src/ne_pkcs11.c	(original)
+++ neon/trunk/src/ne_pkcs11.c	Thu Sep 11 07:39:43 2008
@@ -150,10 +150,11 @@
     m->init = pk11_rsa_init;
     m->finish = pk11_rsa_finish;
     
-    /* This is hopefully under control of the RSA_METHOD. */
+    /* This is hopefully under complete control of the RSA_METHOD,
+     * otherwise there is nowhere to put this. */
     m->app_data = (char *)prov;
 
-    m->flags = RSA_METHOD_FLAG_NO_CHECK | RSA_FLAG_SIGN_VER;
+    m->flags = RSA_METHOD_FLAG_NO_CHECK;
     
     return m;    
 }




More information about the neon-commits mailing list