System\Security\Cryptography\RsaCng.cs (5)
412SafeNCryptKeyHandle keyHandle = KeyHandle;
443return NCryptNative.EncryptDataPkcs1(KeyHandle, data);
447return NCryptNative.EncryptDataOaep(KeyHandle, data, padding.OaepHashAlgorithm.Name);
520return NCryptNative.VerifySignaturePkcs1(KeyHandle, hash, hashAlgorithm.Name, signature);
524return NCryptNative.VerifySignaturePss(KeyHandle, hash, hashAlgorithm.Name, hash.Length, signature);