Streamline hmac function a bit

This commit is contained in:
Micah 2024-06-02 15:49:48 -07:00
parent 712f65c3b1
commit 3eac0acf1e
No known key found for this signature in database

View file

@ -65,6 +65,5 @@ fn hash_message(lua: &Lua, options: HashOptions) -> LuaResult<LuaString> {
}
fn hmac_message(lua: &Lua, options: HashOptions) -> LuaResult<LuaString> {
let bytes = options.hmac()?;
lua.create_string(bytes)
lua.create_string(options.hmac()?)
}