Skip to content
Snippets Groups Projects
Commit 098f8e73 authored by Henrik (Grubba) Grubbström's avatar Henrik (Grubba) Grubbström
Browse files

Bugfix.

Rev: lib/modules/Crypto/rsa.pike:1.24
parent e5d2ff09
No related branches found
No related tags found
No related merge requests found
/* $Id: rsa.pike,v 1.23 2000/06/20 10:36:13 grubba Exp $
/* $Id: rsa.pike,v 1.24 2000/06/20 13:03:05 grubba Exp $
*
* Follow the PKCS#1 standard for padding and encryption.
*/
......@@ -285,7 +285,7 @@ string cooked_get_q()
object set_private_key(bignum priv, array(bignum)|void extra)
{
if (extra) {
[p, q] = extra;
[p, q] = extra[..1];
}
return ::set_private_key(priv);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment