暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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