- Updated to new rsa_init, rsa_gen_key prototypes

diff --git a/programs/pkey/rsa_verify.c b/programs/pkey/rsa_verify.c
index b3a7eab..84cb84e 100644
--- a/programs/pkey/rsa_verify.c
+++ b/programs/pkey/rsa_verify.c
@@ -63,7 +63,7 @@
         goto exit;
     }
 
-    rsa_init( &rsa, RSA_PKCS_V15, 0, NULL, NULL );
+    rsa_init( &rsa, RSA_PKCS_V15, 0 );
 
     if( ( ret = mpi_read_file( &rsa.N, 16, f ) ) != 0 ||
         ( ret = mpi_read_file( &rsa.E, 16, f ) ) != 0 )