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