diff options
author | Shane Lontis <shane.lontis@oracle.com> | 2021-03-09 00:59:13 +0100 |
---|---|---|
committer | Shane Lontis <shane.lontis@oracle.com> | 2021-03-18 08:52:37 +0100 |
commit | 2858156e0309031da8476e51fe76f0ce8c15010f (patch) | |
tree | 5a6539b03e48efd2abc14a73bfb2227ee3fbdd32 /include | |
parent | Add ossl_asn1 symbols (diff) | |
download | openssl-2858156e0309031da8476e51fe76f0ce8c15010f.tar.xz openssl-2858156e0309031da8476e51fe76f0ce8c15010f.zip |
Add ossl_encode symbols
Partial fix for #12964
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/14473)
Diffstat (limited to 'include')
-rw-r--r-- | include/crypto/asn1_dsa.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/crypto/asn1_dsa.h b/include/crypto/asn1_dsa.h index 2657dae0f4..3eadb9ec3c 100644 --- a/include/crypto/asn1_dsa.h +++ b/include/crypto/asn1_dsa.h @@ -13,9 +13,9 @@ #include "internal/packet.h" -int encode_der_length(WPACKET *pkt, size_t cont_len); -int encode_der_integer(WPACKET *pkt, const BIGNUM *n); -int encode_der_dsa_sig(WPACKET *pkt, const BIGNUM *r, const BIGNUM *s); +int ossl_encode_der_length(WPACKET *pkt, size_t cont_len); +int ossl_encode_der_integer(WPACKET *pkt, const BIGNUM *n); +int ossl_encode_der_dsa_sig(WPACKET *pkt, const BIGNUM *r, const BIGNUM *s); int ossl_decode_der_length(PACKET *pkt, PACKET *subpkt); int ossl_decode_der_integer(PACKET *pkt, BIGNUM *n); size_t ossl_decode_der_dsa_sig(BIGNUM *r, BIGNUM *s, const unsigned char **ppin, |