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);
		}