Home
last modified time | relevance | path

Searched refs:camellia (Results 1 - 25 of 33) sorted by relevance

12

/third_party/node/deps/openssl/openssl/providers/implementations/ciphers/
H A Dcipher_camellia.c52 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 Dcipher_camellia.h10 #include <openssl/camellia.h>
H A Dcipher_camellia_hw.c16 #include <openssl/camellia.h>
/third_party/openssl/providers/implementations/ciphers/
H A Dcipher_camellia.c52 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 Dcipher_camellia.h10 #include <openssl/camellia.h>
/third_party/ffmpeg/tools/
H A Dcrypto_bench.c80 #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 Dblock_cipher.c73 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 Dlibavutil.mak16 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 Dbenchmark.c33 #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 DMakefile18 camellia.h \
115 camellia.o \
233 camellia \
/third_party/node/deps/openssl/openssl/crypto/camellia/
H A Dcmll_ecb.c16 #include <openssl/camellia.h>
H A Dcmll_ofb.c16 #include <openssl/camellia.h>
H A Dcmll_ctr.c16 #include <openssl/camellia.h>
H A Dcmll_cbc.c16 #include <openssl/camellia.h>
H A Dcmll_misc.c17 #include <openssl/camellia.h>
H A Dcmll_cfb.c16 #include <openssl/camellia.h>
/third_party/openssl/crypto/camellia/
H A Dcmll_ecb.c16 #include <openssl/camellia.h>
H A Dcmll_ofb.c16 #include <openssl/camellia.h>
H A Dcmll_ctr.c16 #include <openssl/camellia.h>
H A Dcmll_cbc.c16 #include <openssl/camellia.h>
H A Dcmll_misc.c17 #include <openssl/camellia.h>
H A Dcmll_cfb.c16 #include <openssl/camellia.h>
/third_party/mbedtls/include/mbedtls/
H A Dblock_cipher.h24 #include "mbedtls/camellia.h"
67 mbedtls_camellia_context MBEDTLS_PRIVATE(camellia);
/third_party/node/deps/openssl/openssl/include/crypto/
H A Dcmll_platform.h21 # include <openssl/camellia.h>
/third_party/openssl/include/crypto/
H A Dcmll_platform.h21 # include <openssl/camellia.h>

Completed in 7 milliseconds

12