123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
- using System;
- using Org.BouncyCastle.Crypto.Utilities;
- using Org.BouncyCastle.Utilities;
- namespace Org.BouncyCastle.Crypto.Digests
- {
-
- public class Sha384Digest
- : LongDigest
- {
- private const int DigestLength = 48;
- public Sha384Digest()
- {
- }
-
- public Sha384Digest(
- Sha384Digest t)
- : base(t)
- {
- }
- public override string AlgorithmName
- {
- get { return "SHA-384"; }
- }
- public override int GetDigestSize()
- {
- return DigestLength;
- }
- public override int DoFinal(
- byte[] output,
- int outOff)
- {
- Finish();
- Pack.UInt64_To_BE(H1, output, outOff);
- Pack.UInt64_To_BE(H2, output, outOff + 8);
- Pack.UInt64_To_BE(H3, output, outOff + 16);
- Pack.UInt64_To_BE(H4, output, outOff + 24);
- Pack.UInt64_To_BE(H5, output, outOff + 32);
- Pack.UInt64_To_BE(H6, output, outOff + 40);
- Reset();
- return DigestLength;
- }
-
- public override void Reset()
- {
- base.Reset();
-
- H1 = 0xcbbb9d5dc1059ed8;
- H2 = 0x629a292a367cd507;
- H3 = 0x9159015a3070dd17;
- H4 = 0x152fecd8f70e5939;
- H5 = 0x67332667ffc00b31;
- H6 = 0x8eb44a8768581511;
- H7 = 0xdb0c2e0d64f98fa7;
- H8 = 0x47b5481dbefa4fa4;
- }
-
- public override IMemoable Copy()
- {
- return new Sha384Digest(this);
- }
- public override void Reset(IMemoable other)
- {
- Sha384Digest d = (Sha384Digest)other;
- CopyIn(d);
- }
- }
- }
- #endif
|