1 instantiation of SafeHashHandle
mscorlib (1)
system\security\cryptography\safecryptohandles.cs (1)
116get { return new SafeHashHandle(); }
10 references to SafeHashHandle
mscorlib (10)
system\security\cryptography\md5cryptoserviceprovider.cs (1)
18private SafeHashHandle _safeHashHandle = null;
system\security\cryptography\rsacryptoserviceprovider.cs (2)
527using (SafeHashHandle hashHandle = Utils.CreateHash(Utils.StaticProvHandle, GetAlgorithmId(hashAlgorithm))) { 539using (SafeHashHandle hashHandle = Utils.CreateHash(Utils.StaticProvHandle, GetAlgorithmId(hashAlgorithm))) {
system\security\cryptography\safecryptohandles.cs (1)
115internal static SafeHashHandle InvalidHandle {
system\security\cryptography\sha1cryptoserviceprovider.cs (1)
18private SafeHashHandle _safeHashHandle = null;
system\security\cryptography\utils.cs (5)
1073internal static extern SafeHashHandle CreateHash(SafeProvHandle hProv, int algid); 1078private static extern void EndHash(SafeHashHandle hHash, ObjectHandleOnStack retHash); 1081internal static byte[] EndHash(SafeHashHandle hHash) 1101private static extern void HashData(SafeHashHandle hHash, byte[] data, int cbData, int ibStart, int cbSize); 1104internal static void HashData(SafeHashHandle hHash, byte[] data, int ibStart, int cbSize)