aboutsummaryrefslogtreecommitdiff
path: root/std/crypto/hmac.zig
AgeCommit message (Collapse)Author
2019-09-25mv std/ lib/Andrew Kelley
that's all this commit does. further commits will fix cli flags and such. see #2221
2019-03-02rename std lib files to new conventionAndrew Kelley
2018-11-13New Zig formal grammar (#1685)Jimmi Holst Christensen
Reverted #1628 and changed the grammar+parser of the language to not allow certain expr where types are expected
2018-11-03os.crypto: support for HmacBlake2s256 variety;kristopher tate
2018-10-15Solve the return type ambiguity (#1628)Jimmi Holst Christensen
Changed container and initializer syntax * <container> { ... } -> <container> . { ... } * <exrp> { ... } -> <expr> . { ...}
2018-09-13remove `this`. add `@This()`.Andrew Kelley
closes #1283
2018-08-31Make poly1305 and x25519 more idiomatic zigMarc Tiehuis
This also adjusts the current hash/hmac functions to have a consistent interface allowing easier switching/testing.
2018-05-10partial conversion to post-fix pointer deref using zig fmtAndrew Kelley
2018-04-04Add Hmac function (#890)Marc Tiehuis