Home
last modified time | relevance | path

Searched refs:AVBlowfish (Results 1 – 5 of 5) sorted by relevance

/third_party/ffmpeg/libavutil/
Dblowfish.h35 typedef struct AVBlowfish { struct
38 } AVBlowfish; typedef
43 AVBlowfish *av_blowfish_alloc(void);
52 void av_blowfish_init(struct AVBlowfish *ctx, const uint8_t *key, int key_len);
62 void av_blowfish_crypt_ecb(struct AVBlowfish *ctx, uint32_t *xl, uint32_t *xr,
75 void av_blowfish_crypt(struct AVBlowfish *ctx, uint8_t *dst, const uint8_t *src,
Dblowfish.c305 AVBlowfish *av_blowfish_alloc(void) in av_blowfish_alloc()
307 return av_mallocz(sizeof(struct AVBlowfish)); in av_blowfish_alloc()
310 av_cold void av_blowfish_init(AVBlowfish *ctx, const uint8_t *key, int key_len) in av_blowfish_init()
345 void av_blowfish_crypt_ecb(AVBlowfish *ctx, uint32_t *xl, uint32_t *xr, in av_blowfish_crypt_ecb()
376 void av_blowfish_crypt(AVBlowfish *ctx, uint8_t *dst, const uint8_t *src, in av_blowfish_crypt()
/third_party/ffmpeg/libavutil/tests/
Dblowfish.c128 static void test_blowfish(AVBlowfish *ctx, uint8_t *dst, const uint8_t *src, in test_blowfish()
152 AVBlowfish *ctx = av_blowfish_alloc(); in main()
/third_party/ffmpeg/libavformat/
Drtmpcrypt.c194 struct AVBlowfish ctx; in rtmpe9_sig()
/third_party/ffmpeg/tools/
Dcrypto_bench.c126 static struct AVBlowfish *blowfish; in run_lavu_blowfish()