summaryrefslogtreecommitdiffstats
path: root/providers/implementations/encode_decode
diff options
context:
space:
mode:
authorPauli <paul.dale@oracle.com>2020-09-30 12:15:12 +1000
committerPauli <paul.dale@oracle.com>2020-10-01 11:25:12 +1000
commita55b00bdbc00b1632e551cf71bce72137e683c12 (patch)
tree250ce0774c55af4be08453594f249d30bb8fa91f /providers/implementations/encode_decode
parentc4232b9edbeb242583a804dfb0bafaf57610e6fb (diff)
der: _ossl prefix DER functions
Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/13038)
Diffstat (limited to 'providers/implementations/encode_decode')
-rw-r--r--providers/implementations/encode_decode/encode_key2any.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/providers/implementations/encode_decode/encode_key2any.c b/providers/implementations/encode_decode/encode_key2any.c
index c3402c875c..2a4a31fe5b 100644
--- a/providers/implementations/encode_decode/encode_key2any.c
+++ b/providers/implementations/encode_decode/encode_key2any.c
@@ -657,7 +657,7 @@ static int prepare_rsa_params(const void *rsa, int nid,
}
break;
}
- if (!DER_w_RSASSA_PSS_params(&pkt, -1, pss)
+ if (!ossl_DER_w_RSASSA_PSS_params(&pkt, -1, pss)
|| !WPACKET_finish(&pkt)
|| !WPACKET_get_total_written(&pkt, &str_sz))
goto err;