System.Security.Cryptography.RSACryptoServiceProvider.RSACryptoServiceProvider.DecryptValue C# (CSharp) Метод

DecryptValue() публичный Метод

public DecryptValue ( byte rgb ) : byte[]
rgb byte
Результат byte[]
		public override byte[] DecryptValue (byte[] rgb) 
		{
			if (!rsa.IsCrtPossible)
				throw new CryptographicException ("Incomplete private key - missing CRT.");

			return rsa.DecryptValue (rgb);
		}