Lines Matching refs:load_u32_be
228 static ossl_inline uint32_t load_u32_be(const uint8_t *b, uint32_t n) in load_u32_be() function
307 K[0] = load_u32_be(key, 0) ^ FK[0]; in ossl_sm4_set_key()
308 K[1] = load_u32_be(key, 1) ^ FK[1]; in ossl_sm4_set_key()
309 K[2] = load_u32_be(key, 2) ^ FK[2]; in ossl_sm4_set_key()
310 K[3] = load_u32_be(key, 3) ^ FK[3]; in ossl_sm4_set_key()
336 uint32_t B0 = load_u32_be(in, 0); in ossl_sm4_encrypt()
337 uint32_t B1 = load_u32_be(in, 1); in ossl_sm4_encrypt()
338 uint32_t B2 = load_u32_be(in, 2); in ossl_sm4_encrypt()
339 uint32_t B3 = load_u32_be(in, 3); in ossl_sm4_encrypt()
362 uint32_t B0 = load_u32_be(in, 0); in ossl_sm4_decrypt()
363 uint32_t B1 = load_u32_be(in, 1); in ossl_sm4_decrypt()
364 uint32_t B2 = load_u32_be(in, 2); in ossl_sm4_decrypt()
365 uint32_t B3 = load_u32_be(in, 3); in ossl_sm4_decrypt()