diff options
author | tb <> | 2022-05-05 08:48:50 +0000 |
---|---|---|
committer | tb <> | 2022-05-05 08:48:50 +0000 |
commit | 4cc2cbe49983e62c1b09a3b7e06a129ebf908534 (patch) | |
tree | 8bc79a25442ee537c061d12dfc43f2b067fbe786 /src | |
parent | c23e9f0b14c85c157138467546b10f065b7d922f (diff) | |
download | openbsd-4cc2cbe49983e62c1b09a3b7e06a129ebf908534.tar.gz openbsd-4cc2cbe49983e62c1b09a3b7e06a129ebf908534.tar.bz2 openbsd-4cc2cbe49983e62c1b09a3b7e06a129ebf908534.zip |
Provide EVP_PKEY_HKDF alias for NID_hkdf
ok beck jsing
Diffstat (limited to '')
-rw-r--r-- | src/lib/libcrypto/evp/evp.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libcrypto/evp/evp.h b/src/lib/libcrypto/evp/evp.h index a80cf189fc..c7942cc12a 100644 --- a/src/lib/libcrypto/evp/evp.h +++ b/src/lib/libcrypto/evp/evp.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: evp.h,v 1.99 2022/01/14 08:38:05 tb Exp $ */ | 1 | /* $OpenBSD: evp.h,v 1.100 2022/05/05 08:48:50 tb Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -112,6 +112,7 @@ | |||
112 | #define EVP_PKEY_GOSTIMIT NID_id_Gost28147_89_MAC | 112 | #define EVP_PKEY_GOSTIMIT NID_id_Gost28147_89_MAC |
113 | #define EVP_PKEY_HMAC NID_hmac | 113 | #define EVP_PKEY_HMAC NID_hmac |
114 | #define EVP_PKEY_CMAC NID_cmac | 114 | #define EVP_PKEY_CMAC NID_cmac |
115 | #define EVP_PKEY_HKDF NID_hkdf | ||
115 | #define EVP_PKEY_GOSTR12_256 NID_id_tc26_gost3410_2012_256 | 116 | #define EVP_PKEY_GOSTR12_256 NID_id_tc26_gost3410_2012_256 |
116 | #define EVP_PKEY_GOSTR12_512 NID_id_tc26_gost3410_2012_512 | 117 | #define EVP_PKEY_GOSTR12_512 NID_id_tc26_gost3410_2012_512 |
117 | 118 | ||