diff options
author | Bodo Möller <bodo@openssl.org> | 2003-02-21 14:58:23 +0100 |
---|---|---|
committer | Bodo Möller <bodo@openssl.org> | 2003-02-21 14:58:23 +0100 |
commit | 62e3163b1b153a2414d5c258ace557a3b4d373c5 (patch) | |
tree | c009b685a6ec9a7999733a92bd92cf50d1182755 /util/libeay.num | |
parent | Ooops forgot to recognise V_ASN1_GENERALSTRING. (diff) | |
download | openssl-62e3163b1b153a2414d5c258ace557a3b4d373c5.tar.xz openssl-62e3163b1b153a2414d5c258ace557a3b4d373c5.zip |
ECPublicKey_set_octet_string and ECPublicKey_get_octet_string
behaviour was not quite consistent with the conventions
for d2i and i2d functions as far as handling of the 'out'
or 'in' pointer is concerned.
This patch changes this behaviour, and renames the functions to
o2i_ECPublicKey and i2o_ECPublicKey (not 'd2i' and 'i2d' because the
external encoding is just a raw object string without any DER icing).
Submitted by: Nils Larsch
Diffstat (limited to 'util/libeay.num')
-rwxr-xr-x | util/libeay.num | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/libeay.num b/util/libeay.num index bfddc357f1..c03f58d64c 100755 --- a/util/libeay.num +++ b/util/libeay.num @@ -2871,7 +2871,7 @@ BN_GF2m_mod_mul 3309 EXIST::FUNCTION: EC_GROUP_set_seed 3310 EXIST::FUNCTION:EC EC_GROUP_get_curve_GF2m 3311 EXIST::FUNCTION:EC PEM_read_X509_CERT_PAIR 3312 EXIST:!WIN16:FUNCTION: -ECPublicKey_set_octet_string 3313 EXIST::FUNCTION:EC +o2i_ECPublicKey 3313 EXIST::FUNCTION:EC ECDSA_get_ex_data 3314 EXIST::FUNCTION:ECDSA BN_GF2m_mod 3315 EXIST::FUNCTION: EC_GROUP_get_seed_len 3316 EXIST::FUNCTION:EC @@ -2891,7 +2891,7 @@ BN_GF2m_mod_sqrt 3328 EXIST::FUNCTION: ECDH_set_default_method 3329 EXIST::FUNCTION:ECDH EC_KEY_generate_key 3330 EXIST::FUNCTION:EC BN_GF2m_arr2poly 3331 EXIST::FUNCTION: -ECPublicKey_get_octet_string 3332 EXIST::FUNCTION:EC +i2o_ECPublicKey 3332 EXIST::FUNCTION:EC EC_GROUP_check 3333 EXIST::FUNCTION:EC d2i_ECPrivateKey_bio 3334 EXIST::FUNCTION:BIO,EC d2i_ECPrivateKey 3335 EXIST::FUNCTION:EC |