diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2014-07-11 12:59:11 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2014-07-11 12:59:11 +0000 |
commit | 7318a0bc7af497cc454375b72e42ab4ebbb97353 (patch) | |
tree | 8c0a3c4b655a457e0643ed2cb8e88a1129eafc43 /lib | |
parent | 918db922f6e9ae46a6d8290447615a6bff5af6e0 (diff) |
Remove duplicate 0x for salt len in output; Martin Kaiser via OpenSSL trunk.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libssl/src/crypto/rsa/rsa_ameth.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libssl/src/crypto/rsa/rsa_ameth.c b/lib/libssl/src/crypto/rsa/rsa_ameth.c index bcc0eee4b9b..f842a7c70cc 100644 --- a/lib/libssl/src/crypto/rsa/rsa_ameth.c +++ b/lib/libssl/src/crypto/rsa/rsa_ameth.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rsa_ameth.c,v 1.11 2014/07/11 08:44:49 jsing Exp $ */ +/* $OpenBSD: rsa_ameth.c,v 1.12 2014/07/11 12:59:10 miod Exp $ */ /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL * project 2006. */ @@ -361,7 +361,7 @@ rsa_pss_param_print(BIO *bp, RSA_PSS_PARAMS *pss, X509_ALGOR *maskHash, if (pss->saltLength) { if (i2a_ASN1_INTEGER(bp, pss->saltLength) <= 0) goto err; - } else if (BIO_puts(bp, "0x14 (default)") <= 0) + } else if (BIO_puts(bp, "14 (default)") <= 0) goto err; BIO_puts(bp, "\n"); |