System.Security.Cryptography.RSACryptoServiceProvider.RSACryptoServiceProvider.DecryptValue C# (CSharp) Méthode

DecryptValue() public méthode

public DecryptValue ( byte rgb ) : byte[]
rgb byte
Résultat byte[]
		public override byte[] DecryptValue (byte[] rgb) 
		{
			if (!rsa.IsCrtPossible)
				throw new CryptographicException ("Incomplete private key - missing CRT.");

			return rsa.DecryptValue (rgb);
		}