System.Security.Cryptography.RSACryptoServiceProvider.RSACryptoServiceProvider.DecryptValue C# (CSharp) Method

DecryptValue() public method

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

			return rsa.DecryptValue (rgb);
		}