当由于密钥错误而导致解密失败时,您会收到 System.Security.Cryptography.CryptographicException。
如何避免它?是否有一个最好看起来像这样的内置解决方案?
if (someClass.TryDecrypt(encrypted key, out var result)) {
//use result
}
else {
//fail like the world hasn't ended yet.
}
当由于密钥错误而导致解密失败时,您会收到 System.Security.Cryptography.CryptographicException。
如何避免它?是否有一个最好看起来像这样的内置解决方案?
if (someClass.TryDecrypt(encrypted key, out var result)) {
//use result
}
else {
//fail like the world hasn't ended yet.
}