X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/Cipher_code.git/blobdiff_plain/3935cf9ac06b7bc328ee3d942edb5f60130d5b74..54769a8ee0ec8e6038b44fdbf9656585e7d3e31c:/Arduino/libraries/Arduino-crypto-master/Crypto.h?ds=inline diff --git a/Arduino/libraries/Arduino-crypto-master/Crypto.h b/Arduino/libraries/Arduino-crypto-master/Crypto.h index 651d9f8..8959817 100644 --- a/Arduino/libraries/Arduino-crypto-master/Crypto.h +++ b/Arduino/libraries/Arduino-crypto-master/Crypto.h @@ -124,6 +124,7 @@ class AES * Note: the length must be a multiple of 16 bytes */ void process(const uint8_t *in, uint8_t *out, int length); + void encryptCTR(const uint8_t *in, uint8_t *out, int length); void encryptCBC(const uint8_t *in, uint8_t *out, int length); void decryptCBC(const uint8_t *in, uint8_t *out, int length); void convertKey();