Bez popisu
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

encryption.h 228B

123456789
  1. #ifndef ENCRYPTION_H
  2. #define ENCRYPTION_H
  3. void Set_Encryption_Key(uint8_t sensorId);
  4. void Encrypt(uint32_t * data, uint8_t dataLength , uint64_t salt);
  5. void Decrypt(uint32_t * data, uint8_t dataLength, uint64_t salt);
  6. #endif