Searched refs:AVCAMELLIA (Results 1 – 4 of 4) sorted by relevance
/third_party/ffmpeg/libavutil/ |
D | camellia.h | 38 struct AVCAMELLIA; 44 struct AVCAMELLIA *av_camellia_alloc(void); 53 int av_camellia_init(struct AVCAMELLIA *ctx, const uint8_t *key, int key_bits); 65 void av_camellia_crypt(struct AVCAMELLIA *ctx, uint8_t *dst, const uint8_t *src, int count, uint8_t…
|
D | camellia.c | 42 typedef struct AVCAMELLIA { struct 47 } AVCAMELLIA; argument 125 const int av_camellia_size = sizeof(AVCAMELLIA); 184 static void generate_round_keys(AVCAMELLIA *cs, uint64_t Kl[2], uint64_t Kr[2], uint64_t Ka[2], uin… in generate_round_keys() 232 static void camellia_encrypt(AVCAMELLIA *cs, uint8_t *dst, const uint8_t *src) in camellia_encrypt() 277 static void camellia_decrypt(AVCAMELLIA *cs, uint8_t *dst, const uint8_t *src, uint8_t *iv) in camellia_decrypt() 347 struct AVCAMELLIA *av_camellia_alloc(void) in av_camellia_alloc() 349 return av_mallocz(sizeof(struct AVCAMELLIA)); in av_camellia_alloc() 352 av_cold int av_camellia_init(AVCAMELLIA *cs, const uint8_t *key, int key_bits) in av_camellia_init() 393 void av_camellia_crypt(AVCAMELLIA *cs, uint8_t *dst, const uint8_t *src, int count, uint8_t *iv, in… in av_camellia_crypt()
|
/third_party/ffmpeg/libavutil/tests/ |
D | camellia.c | 41 struct AVCAMELLIA *cs; in main()
|
/third_party/ffmpeg/tools/ |
D | crypto_bench.c | 136 static struct AVCAMELLIA *camellia; in run_lavu_camellia()
|