Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/boringssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Langley <agl@chromium.org>2014-06-20 23:00:00 +0400
committerAdam Langley <agl@chromium.org>2014-06-21 00:17:40 +0400
commit467c87e318c70699f22ca028c93af3f4b901db9e (patch)
tree9198abe960d71517d4c1465e3b248e2f1451bf38 /crypto/evp
parentdc160f84f5d9a552d047241a0b51d87e507f16bc (diff)
remove duplicate 0x for default RSASSA-PSS salt len
(Imported from upstream's 42d73874edb4eb6681b769d9850afebe97adf329)
Diffstat (limited to 'crypto/evp')
-rw-r--r--crypto/evp/p_rsa_asn1.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/evp/p_rsa_asn1.c b/crypto/evp/p_rsa_asn1.c
index 6b94ed7d..f43cdc3a 100644
--- a/crypto/evp/p_rsa_asn1.c
+++ b/crypto/evp/p_rsa_asn1.c
@@ -352,7 +352,7 @@ static int rsa_pss_param_print(BIO *bp, RSA_PSS_PARAMS *pss,
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");