Searched refs:crypto_tfm (Results 1 - 25 of 101) sorted by relevance

12345

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/rtl8192u/ieee80211/
H A Dinternal.h43 static inline void crypto_yield(struct crypto_tfm *tfm)
49 static inline void *crypto_tfm_ctx(struct crypto_tfm *tfm)
67 int crypto_alloc_hmac_block(struct crypto_tfm *tfm);
68 void crypto_free_hmac_block(struct crypto_tfm *tfm);
70 static inline int crypto_alloc_hmac_block(struct crypto_tfm *tfm)
75 static inline void crypto_free_hmac_block(struct crypto_tfm *tfm)
86 int crypto_init_digest_flags(struct crypto_tfm *tfm, u32 flags);
87 int crypto_init_cipher_flags(struct crypto_tfm *tfm, u32 flags);
88 int crypto_init_compress_flags(struct crypto_tfm *tfm, u32 flags);
90 int crypto_init_digest_ops(struct crypto_tfm *tf
[all...]
H A Dcrypto_compat.h14 static inline int crypto_cipher_encrypt(struct crypto_tfm *tfm,
24 static inline int crypto_cipher_decrypt(struct crypto_tfm *tfm,
33 struct crypto_tfm *crypto_alloc_tfm(const char *name, u32 flags)
35 struct crypto_tfm *tfm = NULL;
H A Drtl_crypto.h135 struct crypto_tfm;
141 int (*cit_setkey)(struct crypto_tfm *tfm,
143 int (*cit_encrypt)(struct crypto_tfm *tfm,
147 int (*cit_encrypt_iv)(struct crypto_tfm *tfm,
151 int (*cit_decrypt)(struct crypto_tfm *tfm,
155 int (*cit_decrypt_iv)(struct crypto_tfm *tfm,
163 void (*dit_init)(struct crypto_tfm *tfm);
164 void (*dit_update)(struct crypto_tfm *tfm,
166 void (*dit_final)(struct crypto_tfm *tfm, u8 *out);
167 void (*dit_digest)(struct crypto_tfm *tf
189 struct crypto_tfm { struct
[all...]
H A Dcompress.c22 static int crypto_compress(struct crypto_tfm *tfm,
31 static int crypto_decompress(struct crypto_tfm *tfm,
40 int crypto_init_compress_flags(struct crypto_tfm *tfm, u32 flags)
45 int crypto_init_compress_ops(struct crypto_tfm *tfm)
61 void crypto_exit_compress_ops(struct crypto_tfm *tfm)
H A Ddigest.c22 static void init(struct crypto_tfm *tfm)
27 static void update(struct crypto_tfm *tfm,
56 static void final(struct crypto_tfm *tfm, u8 *out)
61 static int setkey(struct crypto_tfm *tfm, const u8 *key, unsigned int keylen)
70 static void digest(struct crypto_tfm *tfm,
87 int crypto_init_digest_flags(struct crypto_tfm *tfm, u32 flags)
92 int crypto_init_digest_ops(struct crypto_tfm *tfm)
105 void crypto_exit_digest_ops(struct crypto_tfm *tfm)
H A Dcipher.c25 typedef void (procfn_t)(struct crypto_tfm *, u8 *,
48 static int crypt(struct crypto_tfm *tfm,
99 static void cbc_process(struct crypto_tfm *tfm, u8 *dst, u8 *src,
124 static void ecb_process(struct crypto_tfm *tfm, u8 *dst, u8 *src,
130 static int setkey(struct crypto_tfm *tfm, const u8 *key, unsigned int keylen)
142 static int ecb_encrypt(struct crypto_tfm *tfm,
151 static int ecb_decrypt(struct crypto_tfm *tfm,
161 static int cbc_encrypt(struct crypto_tfm *tfm,
171 static int cbc_encrypt_iv(struct crypto_tfm *tfm,
181 static int cbc_decrypt(struct crypto_tfm *tf
[all...]
H A Dapi.c62 static int crypto_init_flags(struct crypto_tfm *tfm, u32 flags)
84 static int crypto_init_ops(struct crypto_tfm *tfm)
104 static void crypto_exit_ops(struct crypto_tfm *tfm)
125 struct crypto_tfm *crypto_alloc_tfm(const char *name, u32 flags)
127 struct crypto_tfm *tfm = NULL;
159 void crypto_free_tfm(struct crypto_tfm *tfm)
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/crypto/
H A Dtwofish.h10 struct crypto_tfm;
20 int twofish_setkey(struct crypto_tfm *tfm, const u8 *key, unsigned int key_len);
H A Daes.h35 int crypto_aes_set_key(struct crypto_tfm *tfm, const u8 *in_key,
H A Drng.h23 static inline struct crypto_rng *__crypto_rng_cast(struct crypto_tfm *tfm)
38 static inline struct crypto_tfm *crypto_rng_tfm(struct crypto_rng *tfm)
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/crypto/
H A Dcompress.c20 static int crypto_compress(struct crypto_tfm *tfm,
28 static int crypto_decompress(struct crypto_tfm *tfm,
36 int crypto_init_compress_ops(struct crypto_tfm *tfm)
46 void crypto_exit_compress_ops(struct crypto_tfm *tfm)
H A Dcipher.c23 static int setkey_unaligned(struct crypto_tfm *tfm, const u8 *key,
46 static int setkey(struct crypto_tfm *tfm, const u8 *key, unsigned int keylen)
63 static void cipher_crypt_unaligned(void (*fn)(struct crypto_tfm *, u8 *,
65 struct crypto_tfm *tfm,
78 static void cipher_encrypt_unaligned(struct crypto_tfm *tfm,
92 static void cipher_decrypt_unaligned(struct crypto_tfm *tfm,
106 int crypto_init_cipher_ops(struct crypto_tfm *tfm)
120 void crypto_exit_cipher_ops(struct crypto_tfm *tfm)
H A Dlzo.c29 static int lzo_init(struct crypto_tfm *tfm)
40 static void lzo_exit(struct crypto_tfm *tfm)
47 static int lzo_compress(struct crypto_tfm *tfm, const u8 *src,
63 static int lzo_decompress(struct crypto_tfm *tfm, const u8 *src,
H A Dinternal.h77 int crypto_init_cipher_ops(struct crypto_tfm *tfm);
78 int crypto_init_compress_ops(struct crypto_tfm *tfm);
80 void crypto_exit_cipher_ops(struct crypto_tfm *tfm);
81 void crypto_exit_compress_ops(struct crypto_tfm *tfm);
90 struct crypto_tfm *__crypto_alloc_tfm(struct crypto_alg *alg, u32 type,
H A Dpcompress.c34 static int crypto_pcomp_init(struct crypto_tfm *tfm, u32 type, u32 mask)
44 static int crypto_pcomp_init_tfm(struct crypto_tfm *tfm)
H A Dtea.c47 static int tea_setkey(struct crypto_tfm *tfm, const u8 *in_key,
62 static void tea_encrypt(struct crypto_tfm *tfm, u8 *dst, const u8 *src)
90 static void tea_decrypt(struct crypto_tfm *tfm, u8 *dst, const u8 *src)
120 static int xtea_setkey(struct crypto_tfm *tfm, const u8 *in_key,
135 static void xtea_encrypt(struct crypto_tfm *tfm, u8 *dst, const u8 *src)
156 static void xtea_decrypt(struct crypto_tfm *tfm, u8 *dst, const u8 *src)
179 static void xeta_encrypt(struct crypto_tfm *tfm, u8 *dst, const u8 *src)
200 static void xeta_decrypt(struct crypto_tfm *tfm, u8 *dst, const u8 *src)
H A Dcbc.c26 static int crypto_cbc_setkey(struct crypto_tfm *parent, const u8 *key,
46 void (*fn)(struct crypto_tfm *, u8 *, const u8 *) =
70 void (*fn)(struct crypto_tfm *, u8 *, const u8 *) =
118 void (*fn)(struct crypto_tfm *, u8 *, const u8 *) =
144 void (*fn)(struct crypto_tfm *, u8 *, const u8 *) =
193 static int crypto_cbc_init_tfm(struct crypto_tfm *tfm)
208 static void crypto_cbc_exit_tfm(struct crypto_tfm *tfm)
H A Dpcbc.c29 static int crypto_pcbc_setkey(struct crypto_tfm *parent, const u8 *key,
49 void (*fn)(struct crypto_tfm *, u8 *, const u8 *) =
74 void (*fn)(struct crypto_tfm *, u8 *, const u8 *) =
127 void (*fn)(struct crypto_tfm *, u8 *, const u8 *) =
154 void (*fn)(struct crypto_tfm *, u8 *, const u8 *) =
203 static int crypto_pcbc_init_tfm(struct crypto_tfm *tfm)
218 static void crypto_pcbc_exit_tfm(struct crypto_tfm *tfm)
H A Dxts.c32 static int setkey(struct crypto_tfm *parent, const u8 *key,
81 struct crypto_tfm *tfm;
82 void (*fn)(struct crypto_tfm *, u8 *, const u8 *);
94 void (*tw)(struct crypto_tfm *, u8 *, const u8 *),
95 void (*fn)(struct crypto_tfm *, u8 *, const u8 *))
168 static int init_tfm(struct crypto_tfm *tfm)
207 static void exit_tfm(struct crypto_tfm *tfm)
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/rtl8192e/ieee80211/
H A Drtl_crypto.h135 struct crypto_tfm;
141 int (*cit_setkey)(struct crypto_tfm *tfm,
143 int (*cit_encrypt)(struct crypto_tfm *tfm,
147 int (*cit_encrypt_iv)(struct crypto_tfm *tfm,
151 int (*cit_decrypt)(struct crypto_tfm *tfm,
155 int (*cit_decrypt_iv)(struct crypto_tfm *tfm,
163 void (*dit_init)(struct crypto_tfm *tfm);
164 void (*dit_update)(struct crypto_tfm *tfm,
166 void (*dit_final)(struct crypto_tfm *tfm, u8 *out);
167 void (*dit_digest)(struct crypto_tfm *tf
189 struct crypto_tfm { struct
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/x86/crypto/
H A Dtwofish_glue.c47 asmlinkage void twofish_enc_blk(struct crypto_tfm *tfm, u8 *dst, const u8 *src);
48 asmlinkage void twofish_dec_blk(struct crypto_tfm *tfm, u8 *dst, const u8 *src);
50 static void twofish_encrypt(struct crypto_tfm *tfm, u8 *dst, const u8 *src)
55 static void twofish_decrypt(struct crypto_tfm *tfm, u8 *dst, const u8 *src)
H A Daes_glue.c23 static void aes_encrypt(struct crypto_tfm *tfm, u8 *dst, const u8 *src)
28 static void aes_decrypt(struct crypto_tfm *tfm, u8 *dst, const u8 *src)
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/linux/
H A Dcrypto.h96 * declaration) is used to ensure that the crypto_tfm context structure is
113 struct crypto_tfm;
124 struct crypto_tfm *tfm;
175 struct crypto_tfm *tfm;
176 void (*crfn)(struct crypto_tfm *tfm, u8 *dst, const u8 *src);
222 int (*setkey)(struct crypto_tfm *tfm, const u8 *key,
241 int (*cia_setkey)(struct crypto_tfm *tfm, const u8 *key,
243 void (*cia_encrypt)(struct crypto_tfm *tfm, u8 *dst, const u8 *src);
244 void (*cia_decrypt)(struct crypto_tfm *tfm, u8 *dst, const u8 *src);
248 int (*coa_compress)(struct crypto_tfm *tf
401 struct crypto_tfm { struct
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/crypto/internal/
H A Daead.h60 int aead_geniv_init(struct crypto_tfm *tfm);
61 void aead_geniv_exit(struct crypto_tfm *tfm);
H A Dskcipher.h64 int skcipher_geniv_init(struct crypto_tfm *tfm);
65 void skcipher_geniv_exit(struct crypto_tfm *tfm);

Completed in 222 milliseconds

12345