diff options
author | jsing <> | 2022-11-09 19:18:08 +0000 |
---|---|---|
committer | jsing <> | 2022-11-09 19:18:08 +0000 |
commit | 530492771d0f4e7678f35ea0e8f7fc7f931b5c22 (patch) | |
tree | d2aad341e2f3b6a4e4f844421c70ea46873d2d5a /src | |
parent | 36c70da569fa5716068eea108d08b49d394e5ad6 (diff) | |
download | openbsd-530492771d0f4e7678f35ea0e8f7fc7f931b5c22.tar.gz openbsd-530492771d0f4e7678f35ea0e8f7fc7f931b5c22.tar.bz2 openbsd-530492771d0f4e7678f35ea0e8f7fc7f931b5c22.zip |
Fix up indentation for EVP_PKEY_* defines.
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libcrypto/evp/evp.h | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/src/lib/libcrypto/evp/evp.h b/src/lib/libcrypto/evp/evp.h index d2bb376c88..ec6141e39e 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.107 2022/09/11 17:29:24 tb Exp $ */ | 1 | /* $OpenBSD: evp.h,v 1.108 2022/11/09 19:18:08 jsing 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 | * |
@@ -97,24 +97,24 @@ | |||
97 | #define EVP_PKS_EC 0x0400 | 97 | #define EVP_PKS_EC 0x0400 |
98 | #define EVP_PKT_EXP 0x1000 /* <= 512 bit key */ | 98 | #define EVP_PKT_EXP 0x1000 /* <= 512 bit key */ |
99 | 99 | ||
100 | #define EVP_PKEY_NONE NID_undef | 100 | #define EVP_PKEY_NONE NID_undef |
101 | #define EVP_PKEY_RSA NID_rsaEncryption | 101 | #define EVP_PKEY_RSA NID_rsaEncryption |
102 | #define EVP_PKEY_RSA_PSS NID_rsassaPss | 102 | #define EVP_PKEY_RSA_PSS NID_rsassaPss |
103 | #define EVP_PKEY_RSA2 NID_rsa | 103 | #define EVP_PKEY_RSA2 NID_rsa |
104 | #define EVP_PKEY_DSA NID_dsa | 104 | #define EVP_PKEY_DSA NID_dsa |
105 | #define EVP_PKEY_DSA1 NID_dsa_2 | 105 | #define EVP_PKEY_DSA1 NID_dsa_2 |
106 | #define EVP_PKEY_DSA2 NID_dsaWithSHA | 106 | #define EVP_PKEY_DSA2 NID_dsaWithSHA |
107 | #define EVP_PKEY_DSA3 NID_dsaWithSHA1 | 107 | #define EVP_PKEY_DSA3 NID_dsaWithSHA1 |
108 | #define EVP_PKEY_DSA4 NID_dsaWithSHA1_2 | 108 | #define EVP_PKEY_DSA4 NID_dsaWithSHA1_2 |
109 | #define EVP_PKEY_DH NID_dhKeyAgreement | 109 | #define EVP_PKEY_DH NID_dhKeyAgreement |
110 | #define EVP_PKEY_EC NID_X9_62_id_ecPublicKey | 110 | #define EVP_PKEY_EC NID_X9_62_id_ecPublicKey |
111 | #define EVP_PKEY_GOSTR01 NID_id_GostR3410_2001 | 111 | #define EVP_PKEY_GOSTR01 NID_id_GostR3410_2001 |
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_HKDF NID_hkdf |
116 | #define EVP_PKEY_GOSTR12_256 NID_id_tc26_gost3410_2012_256 | 116 | #define EVP_PKEY_GOSTR12_256 NID_id_tc26_gost3410_2012_256 |
117 | #define EVP_PKEY_GOSTR12_512 NID_id_tc26_gost3410_2012_512 | 117 | #define EVP_PKEY_GOSTR12_512 NID_id_tc26_gost3410_2012_512 |
118 | 118 | ||
119 | #ifdef __cplusplus | 119 | #ifdef __cplusplus |
120 | extern "C" { | 120 | extern "C" { |