Advertisement
FlyFar

libs/ChaCha20/chacha20.h

Mar 24th, 2024
560
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.19 KB | Cybersecurity | 0 0
  1. #ifndef __CHACHA20_H
  2. #define __CHACHA20_H
  3. #include <stdint.h>
  4.  
  5. void ChaCha20XOR(uint8_t key[32], uint32_t counter, uint8_t nonce[12], uint8_t *input, uint8_t *output, int inputlen);
  6.  
  7. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement