diff options
author | NIIBE Yutaka <gniibe@fsij.org> | 2022-01-04 14:06:54 +0900 |
---|---|---|
committer | NIIBE Yutaka <gniibe@fsij.org> | 2022-01-04 14:06:54 +0900 |
commit | f9ba07942b10c72af50bd73c92c4851b6981546e (patch) | |
tree | 988f95d30b6d44d58704f415e767cd69e8672908 /cipher/camellia-glue.c | |
parent | 034e4402dade7a4bcc239913b78c702c5c6f0dbb (diff) | |
download | libgcrypt-f9ba07942b10c72af50bd73c92c4851b6981546e.tar.gz |
cipher: Use const for *_spec_t, if possible.
* cipher/blake2.c: Use const.
* cipher/camellia-glue.c, cipher/cipher.c, cipher/crc.c: Likewise.
* cipher/des.c, cipher/gost28147.c, cipher/gostr3411-94.c: Likewise.
* cipher/keccak.c, cipher/mac-cmac.c, cipher/mac-gmac.c: Likewise.
* cipher/mac-hmac.c, cipher/mac-internal.h: Likewise.
* cipher/mac-poly1305.c, cipher/mac.c, cipher/md.c: Likewise.
* cipher/md.c, cipher/md2.c, cipher/md4.c, cipher/md5.c: Likewise.
* cipher/pubkey.c, cipher/rfc2268.c, cipher/rijndael.c: Likewise.
* cipher/rmd160.c, cipher/seed.c, cipher/serpent.c: Likewise.
* cipher/sha1.c, cipher/sha256.c, cipher/sha512.c: Likewise.
* cipher/sm3.c, cipher/sm4.c, cipher/stribog.c: Likewise.
* cipher/pubkey.c, cipher/rfc2268.c, cipher/rijndael.c: Likewise.
* src/cipher-proto.h, src/cipher.h: Likewise.
--
Signed-off-by: NIIBE Yutaka <gniibe@fsij.org>
Diffstat (limited to 'cipher/camellia-glue.c')
-rw-r--r-- | cipher/camellia-glue.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cipher/camellia-glue.c b/cipher/camellia-glue.c index 23cbec81..72c02d77 100644 --- a/cipher/camellia-glue.c +++ b/cipher/camellia-glue.c @@ -1146,7 +1146,7 @@ selftest(void) <http://info.isl.ntt.co.jp/crypt/eng/camellia/specifications_oid.html>, retrieved May 1, 2007. */ -static gcry_cipher_oid_spec_t camellia128_oids[] = +static const gcry_cipher_oid_spec_t camellia128_oids[] = { {"1.2.392.200011.61.1.1.1.2", GCRY_CIPHER_MODE_CBC}, {"0.3.4401.5.3.1.9.1", GCRY_CIPHER_MODE_ECB}, @@ -1155,7 +1155,7 @@ static gcry_cipher_oid_spec_t camellia128_oids[] = { NULL } }; -static gcry_cipher_oid_spec_t camellia192_oids[] = +static const gcry_cipher_oid_spec_t camellia192_oids[] = { {"1.2.392.200011.61.1.1.1.3", GCRY_CIPHER_MODE_CBC}, {"0.3.4401.5.3.1.9.21", GCRY_CIPHER_MODE_ECB}, @@ -1164,7 +1164,7 @@ static gcry_cipher_oid_spec_t camellia192_oids[] = { NULL } }; -static gcry_cipher_oid_spec_t camellia256_oids[] = +static const gcry_cipher_oid_spec_t camellia256_oids[] = { {"1.2.392.200011.61.1.1.1.4", GCRY_CIPHER_MODE_CBC}, {"0.3.4401.5.3.1.9.41", GCRY_CIPHER_MODE_ECB}, |