/third_party/node/deps/openssl/openssl/providers/implementations/ciphers/ |
H A D | cipher_camellia.c | 52 IMPLEMENT_generic_cipher(camellia, CAMELLIA, ecb, ECB, 0, 256, 128, 0, block) 54 IMPLEMENT_generic_cipher(camellia, CAMELLIA, ecb, ECB, 0, 192, 128, 0, block) 56 IMPLEMENT_generic_cipher(camellia, CAMELLIA, ecb, ECB, 0, 128, 128, 0, block) 58 IMPLEMENT_generic_cipher(camellia, CAMELLIA, cbc, CBC, 0, 256, 128, 128, block) 60 IMPLEMENT_generic_cipher(camellia, CAMELLIA, cbc, CBC, 0, 192, 128, 128, block) 62 IMPLEMENT_generic_cipher(camellia, CAMELLIA, cbc, CBC, 0, 128, 128, 128, block) 64 IMPLEMENT_generic_cipher(camellia, CAMELLIA, ofb, OFB, 0, 256, 8, 128, stream) 66 IMPLEMENT_generic_cipher(camellia, CAMELLIA, ofb, OFB, 0, 192, 8, 128, stream) 68 IMPLEMENT_generic_cipher(camellia, CAMELLIA, ofb, OFB, 0, 128, 8, 128, stream) 70 IMPLEMENT_generic_cipher(camellia, CAMELLI [all...] |
H A D | cipher_camellia.h | 10 #include <openssl/camellia.h>
|
H A D | cipher_camellia_hw.c | 16 #include <openssl/camellia.h>
|
/third_party/openssl/providers/implementations/ciphers/ |
H A D | cipher_camellia.c | 52 IMPLEMENT_generic_cipher(camellia, CAMELLIA, ecb, ECB, 0, 256, 128, 0, block) 54 IMPLEMENT_generic_cipher(camellia, CAMELLIA, ecb, ECB, 0, 192, 128, 0, block) 56 IMPLEMENT_generic_cipher(camellia, CAMELLIA, ecb, ECB, 0, 128, 128, 0, block) 58 IMPLEMENT_generic_cipher(camellia, CAMELLIA, cbc, CBC, 0, 256, 128, 128, block) 60 IMPLEMENT_generic_cipher(camellia, CAMELLIA, cbc, CBC, 0, 192, 128, 128, block) 62 IMPLEMENT_generic_cipher(camellia, CAMELLIA, cbc, CBC, 0, 128, 128, 128, block) 64 IMPLEMENT_generic_cipher(camellia, CAMELLIA, ofb, OFB, 0, 256, 8, 128, stream) 66 IMPLEMENT_generic_cipher(camellia, CAMELLIA, ofb, OFB, 0, 192, 8, 128, stream) 68 IMPLEMENT_generic_cipher(camellia, CAMELLIA, ofb, OFB, 0, 128, 8, 128, stream) 70 IMPLEMENT_generic_cipher(camellia, CAMELLI [all...] |
H A D | cipher_camellia.h | 10 #include <openssl/camellia.h>
|
/third_party/ffmpeg/tools/ |
H A D | crypto_bench.c | 80 #include "libavutil/camellia.h" 136 static struct AVCAMELLIA *camellia; in run_lavu_camellia() local 137 if (!camellia && !(camellia = av_camellia_alloc())) in run_lavu_camellia() 139 av_camellia_init(camellia, hardcoded_key, 128); in run_lavu_camellia() 140 av_camellia_crypt(camellia, output, input, size >> 4, NULL, 0); in run_lavu_camellia() 205 #include <openssl/camellia.h> 249 CAMELLIA_KEY camellia; in run_crypto_camellia() local 252 Camellia_set_key(hardcoded_key, 128, &camellia); in run_crypto_camellia() 255 Camellia_ecb_encrypt(input + i, output + i, &camellia, in run_crypto_camellia() 500 symmetric_key camellia; run_tomcrypt_camellia() local [all...] |
/third_party/mbedtls/library/ |
H A D | block_cipher.c | 73 mbedtls_camellia_free(&ctx->ctx.camellia); in mbedtls_block_cipher_free() 113 mbedtls_camellia_init(&ctx->ctx.camellia); in mbedtls_block_cipher_setup() 157 return mbedtls_camellia_setkey_enc(&ctx->ctx.camellia, key, key_bitlen); in mbedtls_block_cipher_setkey() 194 return mbedtls_camellia_crypt_ecb(&ctx->ctx.camellia, in mbedtls_block_cipher_encrypt()
|
/third_party/ffmpeg/tests/fate/ |
H A D | libavutil.mak | 16 FATE_LIBAVUTIL += fate-camellia 17 fate-camellia: libavutil/tests/camellia$(EXESUF) 18 fate-camellia: CMD = run libavutil/tests/camellia$(EXESUF) 19 fate-camellia: CMP = null
|
/third_party/mbedtls/programs/test/ |
H A D | benchmark.c | 33 #include "mbedtls/camellia.h" 112 "des3, des, camellia, chacha20,\n" \ 510 aria, camellia, chacha20, member 588 } else if (strcmp(argv[i], "camellia") == 0) { in main() 589 todo.camellia = 1; in main() 937 if (todo.camellia) { in main() 939 mbedtls_camellia_context camellia; in main() local 941 mbedtls_camellia_init(&camellia); in main() 947 mbedtls_camellia_setkey_enc(&camellia, tmp, keysize); in main() 950 mbedtls_camellia_crypt_cbc(&camellia, MBEDTLS_CAMELLIA_ENCRYP in main() [all...] |
/third_party/ffmpeg/libavutil/ |
H A D | Makefile | 18 camellia.h \ 115 camellia.o \ 233 camellia \
|
/third_party/node/deps/openssl/openssl/crypto/camellia/ |
H A D | cmll_ecb.c | 16 #include <openssl/camellia.h>
|
H A D | cmll_ofb.c | 16 #include <openssl/camellia.h>
|
H A D | cmll_ctr.c | 16 #include <openssl/camellia.h>
|
H A D | cmll_cbc.c | 16 #include <openssl/camellia.h>
|
H A D | cmll_misc.c | 17 #include <openssl/camellia.h>
|
H A D | cmll_cfb.c | 16 #include <openssl/camellia.h>
|
/third_party/openssl/crypto/camellia/ |
H A D | cmll_ecb.c | 16 #include <openssl/camellia.h>
|
H A D | cmll_ofb.c | 16 #include <openssl/camellia.h>
|
H A D | cmll_ctr.c | 16 #include <openssl/camellia.h>
|
H A D | cmll_cbc.c | 16 #include <openssl/camellia.h>
|
H A D | cmll_misc.c | 17 #include <openssl/camellia.h>
|
H A D | cmll_cfb.c | 16 #include <openssl/camellia.h>
|
/third_party/mbedtls/include/mbedtls/ |
H A D | block_cipher.h | 24 #include "mbedtls/camellia.h" 67 mbedtls_camellia_context MBEDTLS_PRIVATE(camellia);
|
/third_party/node/deps/openssl/openssl/include/crypto/ |
H A D | cmll_platform.h | 21 # include <openssl/camellia.h>
|
/third_party/openssl/include/crypto/ |
H A D | cmll_platform.h | 21 # include <openssl/camellia.h>
|