Lines Matching refs:key
66 NX_CRYPTO_KEEP static VOID _nx_crypto_ctr_xor(UCHAR *plaintext, UCHAR *key, UCHAR *ciphertext) in _nx_crypto_ctr_xor() argument
71 UINT *k = (UINT *)key; in _nx_crypto_ctr_xor()
78 ciphertext[0] = plaintext[0] ^ key[0]; in _nx_crypto_ctr_xor()
79 ciphertext[1] = plaintext[1] ^ key[1]; in _nx_crypto_ctr_xor()
80 ciphertext[2] = plaintext[2] ^ key[2]; in _nx_crypto_ctr_xor()
81 ciphertext[3] = plaintext[3] ^ key[3]; in _nx_crypto_ctr_xor()
82 ciphertext[4] = plaintext[4] ^ key[4]; in _nx_crypto_ctr_xor()
83 ciphertext[5] = plaintext[5] ^ key[5]; in _nx_crypto_ctr_xor()
84 ciphertext[6] = plaintext[6] ^ key[6]; in _nx_crypto_ctr_xor()
85 ciphertext[7] = plaintext[7] ^ key[7]; in _nx_crypto_ctr_xor()
86 ciphertext[8] = plaintext[8] ^ key[8]; in _nx_crypto_ctr_xor()
87 ciphertext[9] = plaintext[9] ^ key[9]; in _nx_crypto_ctr_xor()
88 ciphertext[10] = plaintext[10] ^ key[10]; in _nx_crypto_ctr_xor()
89 ciphertext[11] = plaintext[11] ^ key[11]; in _nx_crypto_ctr_xor()
90 ciphertext[12] = plaintext[12] ^ key[12]; in _nx_crypto_ctr_xor()
91 ciphertext[13] = plaintext[13] ^ key[13]; in _nx_crypto_ctr_xor()
92 ciphertext[14] = plaintext[14] ^ key[14]; in _nx_crypto_ctr_xor()
93 ciphertext[15] = plaintext[15] ^ key[15]; in _nx_crypto_ctr_xor()