H A D | crypto.h | 79 struct pgp_crypt_t { struct 83 void (*set_iv)(pgp_crypt_t *, const uint8_t *); argument 84 void (*set_crypt_key)(pgp_crypt_t *, const uint8_t *); argument 85 int (*base_init)(pgp_crypt_t *); argument 86 void (*decrypt_resync)(pgp_crypt_t *); argument 88 void (*block_encrypt)(pgp_crypt_t *, void *, const void *); argument 89 void (*block_decrypt)(pgp_crypt_t *, void *, const void *); argument 91 void (*cfb_encrypt)(pgp_crypt_t *, void *, const void *, size_t); argument 92 void (*cfb_decrypt)(pgp_crypt_t *, void *, const void *, size_t); argument 93 void (*decrypt_finish)(pgp_crypt_t *); argument [all …]
|