mirror of
https://github.com/lune-org/lune.git
synced 2025-04-04 10:30:54 +01:00
Streamline hmac function a bit
This commit is contained in:
parent
712f65c3b1
commit
3eac0acf1e
1 changed files with 1 additions and 2 deletions
|
@ -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()?)
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue