Symbol: CHACHA_U8TOU32
crypto/openssl/crypto/evp/e_chacha20_poly1305.c
45
key->key.d[i / 4] = CHACHA_U8TOU32(user_key + i);
crypto/openssl/crypto/evp/e_chacha20_poly1305.c
50
key->counter[i / 4] = CHACHA_U8TOU32(iv + i);
crypto/openssl/crypto/evp/e_chacha20_poly1305.c
547
= CHACHA_U8TOU32((unsigned char *)ptr);
crypto/openssl/crypto/evp/e_chacha20_poly1305.c
549
= CHACHA_U8TOU32((unsigned char *)ptr + 4);
crypto/openssl/crypto/evp/e_chacha20_poly1305.c
551
= CHACHA_U8TOU32((unsigned char *)ptr + 8);
crypto/openssl/crypto/evp/e_chacha20_poly1305.c
592
actx->key.counter[2] = actx->nonce[1] ^ CHACHA_U8TOU32(aad);
crypto/openssl/crypto/evp/e_chacha20_poly1305.c
593
actx->key.counter[3] = actx->nonce[2] ^ CHACHA_U8TOU32(aad + 4);
crypto/openssl/providers/implementations/ciphers/cipher_chacha20_hw.c
22
ctx->key.d[i / 4] = CHACHA_U8TOU32(key + i);
crypto/openssl/providers/implementations/ciphers/cipher_chacha20_hw.c
35
ctx->counter[i / 4] = CHACHA_U8TOU32(bctx->oiv + i);
crypto/openssl/providers/implementations/ciphers/cipher_chacha20_poly1305_hw.c
38
ctx->chacha.counter[2] = ctx->nonce[1] ^ CHACHA_U8TOU32(aad);
crypto/openssl/providers/implementations/ciphers/cipher_chacha20_poly1305_hw.c
39
ctx->chacha.counter[3] = ctx->nonce[2] ^ CHACHA_U8TOU32(aad + 4);
crypto/openssl/providers/implementations/ciphers/cipher_chacha20_poly1305_hw.c
52
ctx->nonce[0] = ctx->chacha.counter[1] = CHACHA_U8TOU32(fixed);
crypto/openssl/providers/implementations/ciphers/cipher_chacha20_poly1305_hw.c
53
ctx->nonce[1] = ctx->chacha.counter[2] = CHACHA_U8TOU32(fixed + 4);
crypto/openssl/providers/implementations/ciphers/cipher_chacha20_poly1305_hw.c
54
ctx->nonce[2] = ctx->chacha.counter[3] = CHACHA_U8TOU32(fixed + 8);
sys/crypto/openssl/ossl_chacha20.c
176
key[i] = CHACHA_U8TOU32(cipher_key + i * 4);
sys/crypto/openssl/ossl_chacha20.c
323
key[i] = CHACHA_U8TOU32(cipher_key + i * 4);
sys/crypto/openssl/ossl_chacha20.c
74
key[i] = CHACHA_U8TOU32(cipher_key + i * 4);