diff options
| author | tb <> | 2023-07-05 08:39:40 +0000 |
|---|---|---|
| committer | tb <> | 2023-07-05 08:39:40 +0000 |
| commit | e2b8fb178a65a0dcfa097c0256646345e6d229a2 (patch) | |
| tree | 3d68ee8afc0bc37ca16d301401e781acf405b6a6 /src/lib/libcrypto/ec/ec_local.h | |
| parent | 49dd42972b867c5c9b0a3fea2131dbd1ebcbf88a (diff) | |
| download | openbsd-e2b8fb178a65a0dcfa097c0256646345e6d229a2.tar.gz openbsd-e2b8fb178a65a0dcfa097c0256646345e6d229a2.tar.bz2 openbsd-e2b8fb178a65a0dcfa097c0256646345e6d229a2.zip | |
Drop useless ossl_ prefixes
discussed with jsing
Diffstat (limited to 'src/lib/libcrypto/ec/ec_local.h')
| -rw-r--r-- | src/lib/libcrypto/ec/ec_local.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/lib/libcrypto/ec/ec_local.h b/src/lib/libcrypto/ec/ec_local.h index 0d219e8e21..7a1f90886d 100644 --- a/src/lib/libcrypto/ec/ec_local.h +++ b/src/lib/libcrypto/ec/ec_local.h | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | /* $OpenBSD: ec_local.h,v 1.23 2023/07/03 07:26:40 tb Exp $ */ | 1 | /* $OpenBSD: ec_local.h,v 1.24 2023/07/05 08:39:40 tb Exp $ */ |
| 2 | /* | 2 | /* |
| 3 | * Originally written by Bodo Moeller for the OpenSSL project. | 3 | * Originally written by Bodo Moeller for the OpenSSL project. |
| 4 | */ | 4 | */ |
| @@ -341,12 +341,12 @@ struct ec_key_method_st { | |||
| 341 | 341 | ||
| 342 | #define EC_KEY_METHOD_DYNAMIC 1 | 342 | #define EC_KEY_METHOD_DYNAMIC 1 |
| 343 | 343 | ||
| 344 | int ossl_ec_key_gen(EC_KEY *eckey); | 344 | int ec_key_gen(EC_KEY *eckey); |
| 345 | int ossl_ecdh_compute_key(void *out, size_t outlen, const EC_POINT *pub_key, EC_KEY *ecdh, | 345 | int ecdh_compute_key(void *out, size_t outlen, const EC_POINT *pub_key, EC_KEY *ecdh, |
| 346 | void *(*KDF) (const void *in, size_t inlen, void *out, size_t *outlen)); | 346 | void *(*KDF) (const void *in, size_t inlen, void *out, size_t *outlen)); |
| 347 | int ossl_ecdsa_verify(int type, const unsigned char *dgst, int dgst_len, | 347 | int ecdsa_verify(int type, const unsigned char *dgst, int dgst_len, |
| 348 | const unsigned char *sigbuf, int sig_len, EC_KEY *eckey); | 348 | const unsigned char *sigbuf, int sig_len, EC_KEY *eckey); |
| 349 | int ossl_ecdsa_verify_sig(const unsigned char *dgst, int dgst_len, | 349 | int ecdsa_verify_sig(const unsigned char *dgst, int dgst_len, |
| 350 | const ECDSA_SIG *sig, EC_KEY *eckey); | 350 | const ECDSA_SIG *sig, EC_KEY *eckey); |
| 351 | 351 | ||
| 352 | /* | 352 | /* |
