Home
last modified time | relevance | path

Searched refs:DES_BLOCK_SIZE (Results 1 – 2 of 2) sorted by relevance

/rk3399_rockchip-uboot/drivers/crypto/rockchip/
H A Dcrypto_v2.c919 if (key_len > DES_BLOCK_SIZE) in hw_cipher_init()
1236 if (key_len == DES_BLOCK_SIZE || key_len == 3 * DES_BLOCK_SIZE) { in rk_crypto_des()
1238 } else if (key_len == 2 * DES_BLOCK_SIZE) { in rk_crypto_des()
1241 key_len = 3 * DES_BLOCK_SIZE; in rk_crypto_des()
1246 ret = hw_cipher_init(0, tmp_key, NULL, key_len, iv, DES_BLOCK_SIZE, in rk_crypto_des()
/rk3399_rockchip-uboot/include/rockchip/
H A Dcrypto_v2.h27 #define DES_BLOCK_SIZE 8 macro