@@ -72,5 +72,5 @@ func (a *AesCBCWithPadding) Decrypt(ciphertext []byte) ([]byte, error) {
mode.CryptBlocks(decrypted, ciphertext)
plaintext := zeroUnPad(decrypted)
- return plaintext[aes.BlockSize:], nil
+ return plaintext, nil
}
@@ -1,4 +1,4 @@
-module git.familybaby.top/utils
+module git.familybaby.top/flight/utils
go 1.18