Home
last modified time | relevance | path

Searched refs:IPMI_CRYPT_AES_CBC_128_BLOCK_SIZE (Results 1 – 3 of 3) sorted by relevance

/openbmc/ipmitool/src/plugins/lanplus/
H A Dlanplus_crypt.c724 mod = (input_length + 1) % IPMI_CRYPT_AES_CBC_128_BLOCK_SIZE; in lanplus_encrypt_payload()
726 pad_length = IPMI_CRYPT_AES_CBC_128_BLOCK_SIZE - mod; in lanplus_encrypt_payload()
743 if (lanplus_rand(output, IPMI_CRYPT_AES_CBC_128_BLOCK_SIZE)) in lanplus_encrypt_payload()
754 printbuf(output, IPMI_CRYPT_AES_CBC_128_BLOCK_SIZE, ">> Initialization vector"); in lanplus_encrypt_payload()
762 output + IPMI_CRYPT_AES_CBC_128_BLOCK_SIZE, /* output */ in lanplus_encrypt_payload()
766 IPMI_CRYPT_AES_CBC_128_BLOCK_SIZE + /* IV */ in lanplus_encrypt_payload()
889 IPMI_CRYPT_AES_CBC_128_BLOCK_SIZE, /* Data to decrypt */ in lanplus_decrypt_payload()
891 IPMI_CRYPT_AES_CBC_128_BLOCK_SIZE, /* Input length */ in lanplus_decrypt_payload()
H A Dlanplus_crypt_impl.c182 assert((input_length % IPMI_CRYPT_AES_CBC_128_BLOCK_SIZE) == 0); in lanplus_encrypt_aes_cbc_128()
257 assert((input_length % IPMI_CRYPT_AES_CBC_128_BLOCK_SIZE) == 0); in lanplus_decrypt_aes_cbc_128()
H A Dlanplus.h79 #define IPMI_CRYPT_AES_CBC_128_BLOCK_SIZE 0x10 macro