Fixed a typo that it wasn't able to encrypt

This commit is contained in:
mohammed jasem alaajel 2021-06-14 09:22:50 +04:00 committed by Govindas
parent b6b8a27a39
commit b86ae9eb6d
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ public class Encryption {
if (this.encryptionEnabled) { if (this.encryptionEnabled) {
// AES encryption // AES encryption
this.encryptionKey = encryptionKey; this.encryptionKey = encryptionKey;
this.macKey = encryptionKey; this.macKey = macKey;
} }
} }