diff options
author | Kurt Roeckx <kurt@roeckx.be> | 2014-09-08 23:14:36 +0200 |
---|---|---|
committer | Rich Salz <rsalz@openssl.org> | 2014-09-08 23:21:04 +0200 |
commit | 44e0c2bae4bfd87d770480902618dbccde84fd81 (patch) | |
tree | fec922dd02ccada0d46acea1710604171a5633d8 /crypto/rsa | |
parent | RT2600: Change Win line-endings to Unix. (diff) | |
download | openssl-44e0c2bae4bfd87d770480902618dbccde84fd81.tar.xz openssl-44e0c2bae4bfd87d770480902618dbccde84fd81.zip |
RT2626: Change default_bits from 1K to 2K
This is a more comprehensive fix. It changes all
keygen apps to use 2K keys. It also changes the
default to use SHA256 not SHA1. This is from
Kurt's upstream Debian changes.
Reviewed-by: Rich Salz <rsalz@openssl.org>
Reviewed-by: Kurt Roeckx <kurt@openssl.org>
Diffstat (limited to 'crypto/rsa')
-rw-r--r-- | crypto/rsa/rsa_ameth.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/rsa/rsa_ameth.c b/crypto/rsa/rsa_ameth.c index c6e083f870..419a5d4a3c 100644 --- a/crypto/rsa/rsa_ameth.c +++ b/crypto/rsa/rsa_ameth.c @@ -460,7 +460,7 @@ static int rsa_pkey_ctrl(EVP_PKEY *pkey, int op, long arg1, void *arg2) #endif case ASN1_PKEY_CTRL_DEFAULT_MD_NID: - *(int *)arg2 = NID_sha1; + *(int *)arg2 = NID_sha256; return 1; default: |