public enum HashAlgorithm
{
/// <summary>
/// Secure Hash Algorithm (SHA-1)
/// </summary>
SHA1 = HashAlgorithmTag.Sha1,
/// <summary>
/// Secure Hash Algorithm 256 bit (SHA-2 256)
/// </summary>
SHA256 = HashAlgorithmTag.Sha256,
/// <summary>
/// Secure Hash Algorithm 384 bit (SHA-2 384)
/// </summary>
SHA384 = HashAlgorithmTag.Sha384,
/// <summary>
/// Secure Hash Algorithm 512 bit (SHA-2 512)
/// </summary>
SHA512 = HashAlgorithmTag.Sha512,
/// <summary>
/// Secure Hash Algorithm 224 bit (SHA-2 224)
/// </summary>
SHA224 = HashAlgorithmTag.Sha224,
/// <summary>
/// Message Digest 5
/// </summary>
MD5 = HashAlgorithmTag.MD5,
/// <summary>
/// RIPEMD-160, 160-bit message digest algorithm (RACE Integrity Primitives Evaluation Message Digest)
/// </summary>
RIPEMD160 = HashAlgorithmTag.RipeMD160,
/// <summary>
/// Message Digest 2
/// </summary>
MD2 = HashAlgorithmTag.MD2
}Hi Matt,
Thank you for the suggested code.
Indeed this was the core reason for this unintended behavior.
Please download the
updated version 1.8.3.5 released a few minutes ago (either from
our customers' section or from our private NuGet repo)
--
You received this message because you are subscribed to the Google Groups "DidiSoft Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email to didisoft_foru...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Hi Matt,
This was really a pitfall in our build script version numbering.
This has been changed and as of today the current trial version will always be one revision earlier than the production version.
The current trial published today is 1.8.3.6000 and the production version is 1.8.3.6001.