Lines Matching defs:dev
82 struct udevice *dev; in crypto_get_device() local
106 int crypto_sha_init(struct udevice *dev, sha_context *ctx) in crypto_sha_init()
119 int crypto_sha_update(struct udevice *dev, u32 *input, u32 len) in crypto_sha_update()
132 int crypto_sha_final(struct udevice *dev, sha_context *ctx, u8 *output) in crypto_sha_final()
175 int crypto_hmac_init(struct udevice *dev, sha_context *ctx, in crypto_hmac_init()
189 int crypto_hmac_update(struct udevice *dev, u32 *input, u32 len) in crypto_hmac_update()
202 int crypto_hmac_final(struct udevice *dev, sha_context *ctx, u8 *output) in crypto_hmac_final()
212 int crypto_sha_csum(struct udevice *dev, sha_context *ctx, in crypto_sha_csum()
230 int crypto_sha_regions_csum(struct udevice *dev, sha_context *ctx, in crypto_sha_regions_csum()
254 int crypto_rsa_verify(struct udevice *dev, rsa_key *ctx, u8 *sign, u8 *output) in crypto_rsa_verify()
267 int crypto_cipher(struct udevice *dev, cipher_context *ctx, in crypto_cipher()
278 int crypto_mac(struct udevice *dev, cipher_context *ctx, in crypto_mac()
289 int crypto_ae(struct udevice *dev, cipher_context *ctx, in crypto_ae()