Lines Matching defs:void

51 	void (*init)(void);
55 int (*verify_signature)(void *data_ptr, unsigned int data_len,
56 void *sig_ptr, unsigned int sig_len,
57 void *sig_alg, unsigned int sig_alg_len,
58 void *pk_ptr, unsigned int pk_len);
61 int (*verify_hash)(void *data_ptr, unsigned int data_len,
62 void *digest_info_ptr, unsigned int digest_info_len);
65 int (*calc_hash)(enum crypto_md_algo md_alg, void *data_ptr,
70 int (*convert_pk)(void *full_pk_ptr, unsigned int full_pk_len,
71 void **hashed_pk_ptr, unsigned int *hashed_pk_len);
77 int (*auth_decrypt)(enum crypto_dec_algo dec_algo, void *data_ptr,
78 size_t len, const void *key, unsigned int key_len,
79 unsigned int key_flags, const void *iv,
80 unsigned int iv_len, const void *tag,
86 void crypto_mod_init(void);
88 static inline void crypto_mod_init(void)
95 int crypto_mod_verify_signature(void *data_ptr, unsigned int data_len,
96 void *sig_ptr, unsigned int sig_len,
97 void *sig_alg_ptr, unsigned int sig_alg_len,
98 void *pk_ptr, unsigned int pk_len);
99 int crypto_mod_verify_hash(void *data_ptr, unsigned int data_len,
100 void *digest_info_ptr, unsigned int digest_info_len);
104 int crypto_mod_auth_decrypt(enum crypto_dec_algo dec_algo, void *data_ptr,
105 size_t len, const void *key, unsigned int key_len,
106 unsigned int key_flags, const void *iv,
107 unsigned int iv_len, const void *tag,
112 int crypto_mod_calc_hash(enum crypto_md_algo alg, void *data_ptr,
118 int crypto_mod_convert_pk(void *full_pk_ptr, unsigned int full_pk_len,
119 void **hashed_pk_ptr, unsigned int *hashed_pk_len);