Lines Matching refs:src
22 asmlinkage void blowfish_enc_blk(struct bf_ctx *ctx, u8 *dst, const u8 *src);
23 asmlinkage void blowfish_dec_blk(struct bf_ctx *ctx, u8 *dst, const u8 *src);
27 const u8 *src);
29 const u8 *src, bool cbc);
32 const u8 *src)
34 return __blowfish_dec_blk_4way(ctx, dst, src, false);
38 const u8 *src)
40 return __blowfish_dec_blk_4way(ctx, dst, src, true);
43 static void blowfish_encrypt(struct crypto_tfm *tfm, u8 *dst, const u8 *src)
45 blowfish_enc_blk(crypto_tfm_ctx(tfm), dst, src);
48 static void blowfish_decrypt(struct crypto_tfm *tfm, u8 *dst, const u8 *src)
50 blowfish_dec_blk(crypto_tfm_ctx(tfm), dst, src);