oops - fix failed text message rx

This commit is contained in:
Kevin Hester
2021-03-06 14:21:20 +08:00
parent fbe56531d2
commit 49b1f4c5af
5 changed files with 38 additions and 17 deletions

View File

@@ -4,6 +4,10 @@
void CryptoEngine::setKey(const CryptoKey &k)
{
DEBUG_MSG("Installing AES%d key!\n", k.length * 8);
/* for(uint8_t i = 0; i < k.length; i++)
DEBUG_MSG("%02x ", k.bytes[i]);
DEBUG_MSG("\n"); */
key = k;
}