Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 

14 rader
329 B

  1. #include "aes256ctr.h"
  2. void PQCLEAN_MCELIECE6960119_CLEAN_aes256ctr(
  3. uint8_t *out,
  4. size_t outlen,
  5. const uint8_t nonce[AESCTR_NONCEBYTES],
  6. const uint8_t key[AES256_KEYBYTES]) {
  7. aes256ctx state;
  8. aes256_ctr_keyexp(&state, key);
  9. aes256_ctr(out, outlen, nonce, &state);
  10. aes256_ctx_release(&state);
  11. }