Fix panic logic

This commit is contained in:
Simon 2022-02-07 00:17:28 +00:00
parent 7ee8da5d3e
commit 4a2f074a3f
1 changed files with 4 additions and 3 deletions

View File

@ -44,9 +44,10 @@ func Decrypt(key []byte, ciphertext []byte, additionalData []byte) (plaintext []
}
defer func() {
recover()
err = errors.New("Recoverd from panic in decrypt")
auth = false
if r := recover(); r != nil {
err = errors.New("Recovered from panic in decrypt")
auth = false
}
}()
plaintext = make([]byte, len(ciphertext))