| /crypto/ |
| D | pcbc.c | 53 u8 *src = walk->src.virt.addr; in crypto_pcbc_encrypt_segment() local 78 u8 *src = walk->src.virt.addr; in crypto_pcbc_encrypt_inplace() local 96 struct scatterlist *dst, struct scatterlist *src, in crypto_pcbc_encrypt() 129 u8 *src = walk->src.virt.addr; in crypto_pcbc_decrypt_segment() local 154 u8 *src = walk->src.virt.addr; in crypto_pcbc_decrypt_inplace() local 172 struct scatterlist *dst, struct scatterlist *src, in crypto_pcbc_decrypt()
|
| D | cbc.c | 50 u8 *src = walk->src.virt.addr; in crypto_cbc_encrypt_segment() local 74 u8 *src = walk->src.virt.addr; in crypto_cbc_encrypt_inplace() local 91 struct scatterlist *dst, struct scatterlist *src, in crypto_cbc_encrypt() 122 u8 *src = walk->src.virt.addr; in crypto_cbc_decrypt_segment() local 148 u8 *src = walk->src.virt.addr; in crypto_cbc_decrypt_inplace() local 170 struct scatterlist *dst, struct scatterlist *src, in crypto_cbc_decrypt()
|
| D | tea.c | 62 static void tea_encrypt(struct crypto_tfm *tfm, u8 *dst, const u8 *src) in tea_encrypt() 90 static void tea_decrypt(struct crypto_tfm *tfm, u8 *dst, const u8 *src) in tea_decrypt() 135 static void xtea_encrypt(struct crypto_tfm *tfm, u8 *dst, const u8 *src) in xtea_encrypt() 156 static void xtea_decrypt(struct crypto_tfm *tfm, u8 *dst, const u8 *src) in xtea_decrypt() 179 static void xeta_encrypt(struct crypto_tfm *tfm, u8 *dst, const u8 *src) in xeta_encrypt() 200 static void xeta_decrypt(struct crypto_tfm *tfm, u8 *dst, const u8 *src) in xeta_decrypt()
|
| D | compress.c | 21 const u8 *src, unsigned int slen, in crypto_compress() 29 const u8 *src, unsigned int slen, in crypto_decompress()
|
| D | cipher.c | 66 u8 *dst, const u8 *src) in cipher_crypt_unaligned() 79 u8 *dst, const u8 *src) in cipher_encrypt_unaligned() 93 u8 *dst, const u8 *src) in cipher_decrypt_unaligned()
|
| D | 842.c | 40 const u8 *src, unsigned int slen, in crypto842_compress() 49 const u8 *src, unsigned int slen, in crypto842_decompress()
|
| D | khazad.c | 805 const __be64 *src = (const __be64 *)plaintext; in khazad_crypt() local 837 static void khazad_encrypt(struct crypto_tfm *tfm, u8 *dst, const u8 *src) in khazad_encrypt() 843 static void khazad_decrypt(struct crypto_tfm *tfm, u8 *dst, const u8 *src) in khazad_decrypt()
|
| D | crypto_null.c | 32 static int null_compress(struct crypto_tfm *tfm, const u8 *src, in null_compress() 72 static void null_crypt(struct crypto_tfm *tfm, u8 *dst, const u8 *src) in null_crypt() 79 struct scatterlist *src, unsigned int nbytes) in skcipher_null_crypt()
|
| D | xts.c | 86 static inline void xts_round(struct sinfo *s, void *dst, const void *src) in xts_round() 148 struct scatterlist *src, unsigned int nbytes) in encrypt() 159 struct scatterlist *src, unsigned int nbytes) in decrypt() 177 be128 *src, *dst, *t; in xts_crypt() local
|
| D | cts.c | 76 struct scatterlist *src, in cts_cbc_encrypt() 126 struct scatterlist *dst, struct scatterlist *src, in crypto_cts_encrypt() 162 struct scatterlist *src, in cts_cbc_decrypt() 221 struct scatterlist *dst, struct scatterlist *src, in crypto_cts_decrypt()
|
| D | lzo.c | 51 static int lzo_compress(struct crypto_tfm *tfm, const u8 *src, in lzo_compress() 67 static int lzo_decompress(struct crypto_tfm *tfm, const u8 *src, in lzo_decompress()
|
| D | lz4.c | 48 static int lz4_compress_crypto(struct crypto_tfm *tfm, const u8 *src, in lz4_compress_crypto() 64 static int lz4_decompress_crypto(struct crypto_tfm *tfm, const u8 *src, in lz4_decompress_crypto()
|
| D | lz4hc.c | 48 static int lz4hc_compress_crypto(struct crypto_tfm *tfm, const u8 *src, in lz4hc_compress_crypto() 64 static int lz4hc_decompress_crypto(struct crypto_tfm *tfm, const u8 *src, in lz4hc_decompress_crypto()
|
| D | anubis.c | 577 const __be32 *src = (const __be32 *)plaintext; in anubis_crypt() local 662 static void anubis_encrypt(struct crypto_tfm *tfm, u8 *dst, const u8 *src) in anubis_encrypt() 668 static void anubis_decrypt(struct crypto_tfm *tfm, u8 *dst, const u8 *src) in anubis_decrypt()
|
| D | lrw.c | 112 static inline void lrw_round(struct sinfo *s, void *dst, const void *src) in lrw_round() 201 struct scatterlist *src, unsigned int nbytes) in encrypt() 212 struct scatterlist *src, unsigned int nbytes) in decrypt() 231 be128 *iv, *src, *dst, *t; in lrw_crypt() local
|
| D | chacha20_generic.c | 84 static void chacha20_docrypt(u32 *state, u8 *dst, const u8 *src, in chacha20_docrypt() 144 struct scatterlist *src, unsigned int nbytes) in crypto_chacha20_crypt()
|
| D | blowfish_generic.c | 41 static void bf_encrypt(struct crypto_tfm *tfm, u8 *dst, const u8 *src) in bf_encrypt() 75 static void bf_decrypt(struct crypto_tfm *tfm, u8 *dst, const u8 *src) in bf_decrypt()
|
| D | poly1305_generic.c | 78 const u8 *src, unsigned int srclen) in crypto_poly1305_setdesckey() 99 const u8 *src, unsigned int srclen, in poly1305_blocks() 174 const u8 *src, unsigned int srclen) in crypto_poly1305_update()
|
| D | scatterwalk.c | 27 void *src = out ? buf : sgdata; in memcpy_dir() local 152 struct scatterlist *src, in scatterwalk_ffwd()
|
| D | ctr.c | 63 u8 *src = walk->src.virt.addr; in crypto_ctr_crypt_final() local 81 u8 *src = walk->src.virt.addr; in crypto_ctr_crypt_segment() local 109 u8 *src = walk->src.virt.addr; in crypto_ctr_crypt_inplace() local 128 struct scatterlist *dst, struct scatterlist *src, in crypto_ctr_crypt()
|
| D | jitterentropy-kcapi.c | 85 void jent_memcpy(void *dest, const void *src, unsigned int n) in jent_memcpy() 146 const u8 *src, unsigned int slen, in jent_kcapi_random()
|
| D | deflate.c | 127 static int deflate_compress(struct crypto_tfm *tfm, const u8 *src, in deflate_compress() 156 static int deflate_decompress(struct crypto_tfm *tfm, const u8 *src, in deflate_decompress()
|
| D | salsa20_generic.c | 140 const u8 *src, unsigned int bytes) in salsa20_encrypt_bytes() 178 struct scatterlist *dst, struct scatterlist *src, in encrypt()
|
| D | serpent_generic.c | 445 void __serpent_encrypt(struct serpent_ctx *ctx, u8 *dst, const u8 *src) in __serpent_encrypt() 503 static void serpent_encrypt(struct crypto_tfm *tfm, u8 *dst, const u8 *src) in serpent_encrypt() 510 void __serpent_decrypt(struct serpent_ctx *ctx, u8 *dst, const u8 *src) in __serpent_decrypt() 563 static void serpent_decrypt(struct crypto_tfm *tfm, u8 *dst, const u8 *src) in serpent_decrypt() 582 static void tnepres_encrypt(struct crypto_tfm *tfm, u8 *dst, const u8 *src) in tnepres_encrypt() 602 static void tnepres_decrypt(struct crypto_tfm *tfm, u8 *dst, const u8 *src) in tnepres_decrypt()
|
| D | twofish_generic.c | 112 const __le32 *src = (const __le32 *)in; in twofish_encrypt() local 149 const __le32 *src = (const __le32 *)in; in twofish_decrypt() local
|