Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

71 lines
1.3 KiB
C#

//
// Mono.Security.Cryptography.SHA1CryptoServiceProvider
//
// Authors:
// Sebastien Pouliot (spouliot@motus.com)
//
// Copyright (C) 2003 Motus Technologies Inc. (http://www.motus.com)
//
using System;
using System.Security.Cryptography;
namespace Mono.Security.Cryptography {
public class SHA1CryptoServiceProvider : SHA1 {
private CapiHash hash;
public SHA1CryptoServiceProvider ()
{
hash = null;
}
~SHA1CryptoServiceProvider ()
{
Dispose (true);
}
// 2 cases:
// a. we were calculing a hash and want to abort
// b. we haven't started yet
public override void Initialize ()
{
State = 0;
if (hash == null) {
hash = new CapiHash (CryptoAPI.CALG_SHA1);
}
}
protected override void Dispose (bool disposing)
{
if (hash != null) {
hash.Dispose ();
hash = null;
// there's no unmanaged resources (so disposing isn't used)
}
}
protected override void HashCore (byte[] rgb, int ibStart, int cbSize)
{
if (State == 0)
Initialize ();
if (hash == null)
throw new ObjectDisposedException ("SHA1CryptoServiceProvider");
State = 1;
hash.HashCore (rgb, ibStart, cbSize);
}
protected override byte[] HashFinal ()
{
if (hash == null)
throw new ObjectDisposedException ("SHA1CryptoServiceProvider");
State = 0;
byte[] result = hash.HashFinal ();
Dispose (false);
return result;
}
}
}