aboutsummaryrefslogtreecommitdiff
path: root/crypto
diff options
context:
space:
mode:
authorDavid Benjamin <davidben@google.com>2024-03-29 17:01:25 -0400
committerBoringssl LUCI CQ <boringssl-scoped@luci-project-accounts.iam.gserviceaccount.com>2024-03-29 21:48:32 +0000
commitb171749734c438994526096c2150e9baf9d87313 (patch)
tree91a1eff18631075f790e2a3818fac092bbf39da7 /crypto
parenta2ef200d79158613f5a312eb5a13ddceae518bfb (diff)
downloadboringssl-b171749734c438994526096c2150e9baf9d87313.zip
boringssl-b171749734c438994526096c2150e9baf9d87313.tar.gz
boringssl-b171749734c438994526096c2150e9baf9d87313.tar.bz2
Switch EVP_CIPHERs to C99 initializers
We're using it in parts of EVP already and this is much more readable. Change-Id: I42f30b83331cafdabd4f5d995b61176458e906bc Reviewed-on: https://boringssl-review.googlesource.com/c/boringssl/+/67567 Auto-Submit: David Benjamin <davidben@google.com> Commit-Queue: David Benjamin <davidben@google.com> Reviewed-by: Adam Langley <agl@google.com> Commit-Queue: Adam Langley <agl@google.com>
Diffstat (limited to 'crypto')
-rw-r--r--crypto/cipher_extra/e_des.c108
-rw-r--r--crypto/cipher_extra/e_null.c10
-rw-r--r--crypto/cipher_extra/e_rc2.c46
-rw-r--r--crypto/cipher_extra/e_rc4.c12
4 files changed, 83 insertions, 93 deletions
diff --git a/crypto/cipher_extra/e_des.c b/crypto/cipher_extra/e_des.c
index baf0be0..62ac2a0 100644
--- a/crypto/cipher_extra/e_des.c
+++ b/crypto/cipher_extra/e_des.c
@@ -85,16 +85,14 @@ static int des_cbc_cipher(EVP_CIPHER_CTX *ctx, uint8_t *out, const uint8_t *in,
}
static const EVP_CIPHER evp_des_cbc = {
- /* nid = */ NID_des_cbc,
- /* block_size = */ 8,
- /* key_len = */ 8,
- /* iv_len = */ 8,
- /* ctx_size = */ sizeof(EVP_DES_KEY),
- /* flags = */ EVP_CIPH_CBC_MODE,
- /* init = */ des_init_key,
- /* cipher = */ des_cbc_cipher,
- /* cleanup = */ NULL,
- /* ctrl = */ NULL,
+ .nid = NID_des_cbc,
+ .block_size = 8,
+ .key_len = 8,
+ .iv_len = 8,
+ .ctx_size = sizeof(EVP_DES_KEY),
+ .flags = EVP_CIPH_CBC_MODE,
+ .init = des_init_key,
+ .cipher = des_cbc_cipher,
};
const EVP_CIPHER *EVP_des_cbc(void) { return &evp_des_cbc; }
@@ -114,16 +112,14 @@ static int des_ecb_cipher(EVP_CIPHER_CTX *ctx, uint8_t *out, const uint8_t *in,
}
static const EVP_CIPHER evp_des_ecb = {
- /* nid = */ NID_des_ecb,
- /* block_size = */ 8,
- /* key_len = */ 8,
- /* iv_len = */ 0,
- /* ctx_size = */ sizeof(EVP_DES_KEY),
- /* flags = */ EVP_CIPH_ECB_MODE,
- /* init = */ des_init_key,
- /* cipher = */ des_ecb_cipher,
- /* cleanup = */ NULL,
- /* ctrl = */ NULL,
+ .nid = NID_des_ecb,
+ .block_size = 8,
+ .key_len = 8,
+ .iv_len = 0,
+ .ctx_size = sizeof(EVP_DES_KEY),
+ .flags = EVP_CIPH_ECB_MODE,
+ .init = des_init_key,
+ .cipher = des_ecb_cipher,
};
const EVP_CIPHER *EVP_des_ecb(void) { return &evp_des_ecb; }
@@ -153,16 +149,14 @@ static int des_ede3_cbc_cipher(EVP_CIPHER_CTX *ctx, uint8_t *out,
}
static const EVP_CIPHER evp_des_ede3_cbc = {
- /* nid = */ NID_des_ede3_cbc,
- /* block_size = */ 8,
- /* key_len = */ 24,
- /* iv_len = */ 8,
- /* ctx_size = */ sizeof(DES_EDE_KEY),
- /* flags = */ EVP_CIPH_CBC_MODE,
- /* init = */ des_ede3_init_key,
- /* cipher = */ des_ede3_cbc_cipher,
- /* cleanup = */ NULL,
- /* ctrl = */ NULL,
+ .nid = NID_des_ede3_cbc,
+ .block_size = 8,
+ .key_len = 24,
+ .iv_len = 8,
+ .ctx_size = sizeof(DES_EDE_KEY),
+ .flags = EVP_CIPH_CBC_MODE,
+ .init = des_ede3_init_key,
+ .cipher = des_ede3_cbc_cipher,
};
const EVP_CIPHER *EVP_des_ede3_cbc(void) { return &evp_des_ede3_cbc; }
@@ -178,16 +172,14 @@ static int des_ede_init_key(EVP_CIPHER_CTX *ctx, const uint8_t *key,
}
static const EVP_CIPHER evp_des_ede_cbc = {
- /* nid = */ NID_des_ede_cbc,
- /* block_size = */ 8,
- /* key_len = */ 16,
- /* iv_len = */ 8,
- /* ctx_size = */ sizeof(DES_EDE_KEY),
- /* flags = */ EVP_CIPH_CBC_MODE,
- /* init = */ des_ede_init_key,
- /* cipher = */ des_ede3_cbc_cipher,
- /* cleanup = */ NULL,
- /* ctrl = */ NULL,
+ .nid = NID_des_ede_cbc,
+ .block_size = 8,
+ .key_len = 16,
+ .iv_len = 8,
+ .ctx_size = sizeof(DES_EDE_KEY),
+ .flags = EVP_CIPH_CBC_MODE,
+ .init = des_ede_init_key,
+ .cipher = des_ede3_cbc_cipher,
};
const EVP_CIPHER *EVP_des_ede_cbc(void) { return &evp_des_ede_cbc; }
@@ -208,31 +200,27 @@ static int des_ede_ecb_cipher(EVP_CIPHER_CTX *ctx, uint8_t *out,
}
static const EVP_CIPHER evp_des_ede = {
- /* nid = */ NID_des_ede_ecb,
- /* block_size = */ 8,
- /* key_len = */ 16,
- /* iv_len = */ 0,
- /* ctx_size = */ sizeof(DES_EDE_KEY),
- /* flags = */ EVP_CIPH_ECB_MODE,
- /* init = */ des_ede_init_key,
- /* cipher = */ des_ede_ecb_cipher,
- /* cleanup = */ NULL,
- /* ctrl = */ NULL,
+ .nid = NID_des_ede_ecb,
+ .block_size = 8,
+ .key_len = 16,
+ .iv_len = 0,
+ .ctx_size = sizeof(DES_EDE_KEY),
+ .flags = EVP_CIPH_ECB_MODE,
+ .init = des_ede_init_key,
+ .cipher = des_ede_ecb_cipher,
};
const EVP_CIPHER *EVP_des_ede(void) { return &evp_des_ede; }
static const EVP_CIPHER evp_des_ede3 = {
- /* nid = */ NID_des_ede3_ecb,
- /* block_size = */ 8,
- /* key_len = */ 24,
- /* iv_len = */ 0,
- /* ctx_size = */ sizeof(DES_EDE_KEY),
- /* flags = */ EVP_CIPH_ECB_MODE,
- /* init = */ des_ede3_init_key,
- /* cipher = */ des_ede_ecb_cipher,
- /* cleanup = */ NULL,
- /* ctrl = */ NULL,
+ .nid = NID_des_ede3_ecb,
+ .block_size = 8,
+ .key_len = 24,
+ .iv_len = 0,
+ .ctx_size = sizeof(DES_EDE_KEY),
+ .flags = EVP_CIPH_ECB_MODE,
+ .init = des_ede3_init_key,
+ .cipher = des_ede_ecb_cipher,
};
const EVP_CIPHER *EVP_des_ede3(void) { return &evp_des_ede3; }
diff --git a/crypto/cipher_extra/e_null.c b/crypto/cipher_extra/e_null.c
index 10a5c26..ad99df9 100644
--- a/crypto/cipher_extra/e_null.c
+++ b/crypto/cipher_extra/e_null.c
@@ -78,9 +78,13 @@ static int null_cipher(EVP_CIPHER_CTX *ctx, uint8_t *out,
}
static const EVP_CIPHER n_cipher = {
- NID_undef, 1 /* block size */, 0 /* key_len */, 0 /* iv_len */,
- 0 /* ctx_size */, 0 /* flags */, null_init_key, null_cipher,
- NULL /* cleanup */, NULL /* ctrl */,
+ .nid = NID_undef,
+ .block_size = 1,
+ .key_len = 0,
+ .iv_len = 0,
+ .ctx_size = 0,
+ .init = null_init_key,
+ .cipher = null_cipher,
};
const EVP_CIPHER *EVP_enc_null(void) { return &n_cipher; }
diff --git a/crypto/cipher_extra/e_rc2.c b/crypto/cipher_extra/e_rc2.c
index acc99ad..c2a143e 100644
--- a/crypto/cipher_extra/e_rc2.c
+++ b/crypto/cipher_extra/e_rc2.c
@@ -427,35 +427,29 @@ static int rc2_ctrl(EVP_CIPHER_CTX *ctx, int type, int arg, void *ptr) {
}
static const EVP_CIPHER rc2_40_cbc = {
- NID_rc2_40_cbc,
- 8 /* block size */,
- 5 /* 40 bit */,
- 8 /* iv len */,
- sizeof(EVP_RC2_KEY),
- EVP_CIPH_CBC_MODE | EVP_CIPH_VARIABLE_LENGTH | EVP_CIPH_CTRL_INIT,
- rc2_init_key,
- rc2_cbc_cipher,
- NULL,
- rc2_ctrl,
+ .nid = NID_rc2_40_cbc,
+ .block_size = 8,
+ .key_len = 5 /* 40 bit */,
+ .iv_len = 8,
+ .ctx_size = sizeof(EVP_RC2_KEY),
+ .flags = EVP_CIPH_CBC_MODE | EVP_CIPH_VARIABLE_LENGTH | EVP_CIPH_CTRL_INIT,
+ .init = rc2_init_key,
+ .cipher = rc2_cbc_cipher,
+ .ctrl = rc2_ctrl,
};
-const EVP_CIPHER *EVP_rc2_40_cbc(void) {
- return &rc2_40_cbc;
-}
+const EVP_CIPHER *EVP_rc2_40_cbc(void) { return &rc2_40_cbc; }
static const EVP_CIPHER rc2_cbc = {
- NID_rc2_cbc,
- 8 /* block size */,
- 16 /* 128 bit */,
- 8 /* iv len */,
- sizeof(EVP_RC2_KEY),
- EVP_CIPH_CBC_MODE | EVP_CIPH_VARIABLE_LENGTH | EVP_CIPH_CTRL_INIT,
- rc2_init_key,
- rc2_cbc_cipher,
- NULL,
- rc2_ctrl,
+ .nid = NID_rc2_cbc,
+ .block_size = 8,
+ .key_len = 16 /* 128 bit */,
+ .iv_len = 8,
+ .ctx_size = sizeof(EVP_RC2_KEY),
+ .flags = EVP_CIPH_CBC_MODE | EVP_CIPH_VARIABLE_LENGTH | EVP_CIPH_CTRL_INIT,
+ .init = rc2_init_key,
+ .cipher = rc2_cbc_cipher,
+ .ctrl = rc2_ctrl,
};
-const EVP_CIPHER *EVP_rc2_cbc(void) {
- return &rc2_cbc;
-}
+const EVP_CIPHER *EVP_rc2_cbc(void) { return &rc2_cbc; }
diff --git a/crypto/cipher_extra/e_rc4.c b/crypto/cipher_extra/e_rc4.c
index e252ad8..0c3404f 100644
--- a/crypto/cipher_extra/e_rc4.c
+++ b/crypto/cipher_extra/e_rc4.c
@@ -81,10 +81,14 @@ static int rc4_cipher(EVP_CIPHER_CTX *ctx, uint8_t *out, const uint8_t *in,
}
static const EVP_CIPHER rc4 = {
- NID_rc4, 1 /* block_size */, 16 /* key_size */,
- 0 /* iv_len */, sizeof(RC4_KEY), EVP_CIPH_VARIABLE_LENGTH,
- rc4_init_key, rc4_cipher, NULL /* cleanup */,
- NULL /* ctrl */,
+ .nid = NID_rc4,
+ .block_size = 1,
+ .key_len = 16,
+ .iv_len = 0,
+ .ctx_size = sizeof(RC4_KEY),
+ .flags = EVP_CIPH_VARIABLE_LENGTH,
+ .init = rc4_init_key,
+ .cipher = rc4_cipher,
};
const EVP_CIPHER *EVP_rc4(void) { return &rc4; }