Fix/Update #1

Merged
hugo merged 39 commits from Fix/Update into master 2022-06-01 11:51:16 +00:00
Showing only changes of commit 39a0a44730 - Show all commits

View File

@ -3,7 +3,7 @@
// ----- // -----
// File: aes.dart // File: aes.dart
// Created Date: 16/12/2021 16:28:00 // Created Date: 16/12/2021 16:28:00
// Last Modified: 25/05/2022 15:40:07 // Last Modified: 25/05/2022 21:17:10
// ----- // -----
// Copyright (c) 2022 // Copyright (c) 2022
@ -67,7 +67,8 @@ class AES implements Cipher {
List.empty(); List.empty();
return CipherText.fromPairIvAndBytes( return CipherText.fromPairIvAndBytes(
cipherText, cipherText,
dataLength: cipherText.last.length, dataLength: cipherText.last.length - 16,
tagLength: 16,
); );
} }