Returns the finished SHA hash. This also calls start to reset the internal state.
Use this to feed the digest with data. Also implements the std.range.OutputRange interface for ubyte and const(ubyte)[].
SHA initialization. Begins an SHA1/SHA2 operation.
Template API SHA1/SHA2 implementation. Supports: SHA-1, SHA-224, SHA-256, SHA-384, SHA-512, SHA-512/224 and SHA-512/256.
The blockSize and digestSize are in bits. However, it's likely easier to simply use the convenience aliases: SHA1, SHA224, SHA256, SHA384, SHA512, SHA512_224 and SHA512_256.
See std.digest.digest for differences between template and OOP API.