キーが間違っているために復号化が失敗すると、System.Security.Cryptography.CryptographicException を受け取ります。
どうすればそれを回避できますか?できればこのように見える組み込みのソリューションはありますか?
if (someClass.TryDecrypt(encrypted key, out var result)) {
//use result
}
else {
//fail like the world hasn't ended yet.
}