From 97e00da90282dddfc572c84d8468d85ab1925fba Mon Sep 17 00:00:00 2001 From: "Dr. David von Oheimb" Date: Wed, 13 May 2020 11:58:52 +0200 Subject: Add OPENSSL_CTX parameter to OSSL_CRMF_pbmp_new() and improve its doc Reviewed-by: Shane Lontis (Merged from https://github.com/openssl/openssl/pull/11808) --- crypto/cmp/cmp_local.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'crypto/cmp/cmp_local.h') diff --git a/crypto/cmp/cmp_local.h b/crypto/cmp/cmp_local.h index 95c4781b6f..90d043c71c 100644 --- a/crypto/cmp/cmp_local.h +++ b/crypto/cmp/cmp_local.h @@ -75,9 +75,9 @@ struct ossl_cmp_ctx_st { ASN1_OCTET_STRING *referenceValue; /* optional user name for MSG_MAC_ALG */ ASN1_OCTET_STRING *secretValue; /* password/shared secret for MSG_MAC_ALG */ /* PBMParameters for MSG_MAC_ALG */ - size_t pbm_slen; /* currently fixed to 16 */ + size_t pbm_slen; /* salt length, currently fixed to 16 */ int pbm_owf; /* NID of one-way function (OWF), default: SHA256 */ - int pbm_itercnt; /* currently fixed to 500 */ + int pbm_itercnt; /* OWF iteration count, currently fixed to 500 */ int pbm_mac; /* NID of MAC algorithm, default: HMAC-SHA1 as per RFC 4210 */ /* CMP message header and extra certificates */ -- cgit v1.2.3