1 // © 2021 Qualcomm Innovation Center, Inc. All rights reserved. 2 // 3 // SPDX-License-Identifier: BSD-3-Clause 4 5 // Block function of the chacha20 cipher 6 void 7 chacha20_block(const uint32_t (*key)[8], uint32_t counter, 8 const uint32_t (*nonce)[3], uint32_t (*out)[16]); 9