feat: hmac-sm3 v0.1.0

This commit is contained in:
2023-09-02 19:37:48 +08:00
commit ba3d0fea56
5 changed files with 211 additions and 0 deletions

19
Cargo.toml Normal file
View File

@@ -0,0 +1,19 @@
[package]
name = "hmac-sm3"
version = "0.1.0"
edition = "2021"
authors = ["Hatter Jiang"]
repository = "https://git.hatter.ink/hatter/hmac-sm3"
description = "HMAC-SM3 Library"
license = "MIT OR Apache-2.0"
keywords = ["crypto", "hmac", "sm3", "hmac-sm3", "stream"]
categories = ["cryptography"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
sm3 = "0.4.2"
[dev-dependencies]
hex = "0.4.3"