ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/gvpe/src/gvpectrl.C
(Generate patch)

Comparing gvpe/src/gvpectrl.C (file contents):
Revision 1.19 by root, Wed Jun 29 22:36:23 2016 UTC vs.
Revision 1.20 by root, Wed Jun 29 22:37:50 2016 UTC

280 RSA *rsa = RSA_new (); 280 RSA *rsa = RSA_new ();
281 BIGNUM *e = BN_new (); 281 BIGNUM *e = BN_new ();
282 BN_set_bit (e, 0); BN_set_bit (e, 16); // 0x10001, 65537 282 BN_set_bit (e, 0); BN_set_bit (e, 16); // 0x10001, 65537
283 283
284#if OPENSSL_VERSION_NUMBER < 0x10100000 284#if OPENSSL_VERSION_NUMBER < 0x10100000
285 BN_GENCB cb; 285 BN_GENCB cb_100;
286 BN_GENCB_set (&cb, indicator, 0); 286 BN_GENCB *cb = &cb_100;
287 require (RSA_generate_key_ex (rsa, bits, e, &cb));
288#else 287#else
289 BN_GENCB *cb = BN_GENCB_new (); 288 BN_GENCB *cb = BN_GENCB_new ();
289 require (cb);
290#endif
291
290 BN_GENCB_set (cb, indicator, 0); 292 BN_GENCB_set (cb, indicator, 0);
291 require (RSA_generate_key_ex (rsa, bits, e, cb)); 293 require (RSA_generate_key_ex (rsa, bits, e, cb));
292#endif
293 294
294 fprintf (stderr, _("Done.\n")); 295 fprintf (stderr, _("Done.\n"));
295 296
296 fname = conf.config_filename ("pubkey/%s", 0); 297 fname = conf.config_filename ("pubkey/%s", 0);
297 pubf = fopen (fname, "wb"); 298 pubf = fopen (fname, "wb");

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines