compute-binary
($message as xs:base64Binary, $secret-key as xs:string, $hash-algo as xs:string) as xs:base64Binary external
Calculate the HMAC for the given message and secret-key involving an custom hash function. |
compute
($message as xs:string, $secret-key as xs:string, $alg as xs:string) as xs:base64Binary external
Calculate the HMAC for the given message and secret-key involving an custom hash function. |
md5-binary
($message as xs:base64Binary, $secret-key as xs:string) as xs:base64Binary
Calculate the HMAC for the given message and secret-key involving the MD5 hash function. |
md5
($message as xs:string, $secret-key as xs:string) as xs:base64Binary
Calculate the HMAC for the given message and secret-key involving the MD5 hash function. |
sha1-binary
($message as xs:base64Binary, $secret-key as xs:string) as xs:base64Binary
Calculate the HMAC for the given message and secret-key involving the SHA1 hash function. |
sha1
($message as xs:string, $secret-key as xs:string) as xs:base64Binary
Calculate the HMAC for the given message and secret-key involving the SHA1 hash function. |
declare function hmac:compute-binary($message as xs:base64Binary, $secret-key as xs:string, $hash-algo as xs:string) as xs:base64Binary external
declare function hmac:compute($message as xs:string, $secret-key as xs:string, $alg as xs:string) as xs:base64Binary external
declare function hmac:md5-binary($message as xs:base64Binary, $secret-key as xs:string) as xs:base64Binary
declare function hmac:md5($message as xs:string, $secret-key as xs:string) as xs:base64Binary
declare function hmac:sha1-binary($message as xs:base64Binary, $secret-key as xs:string) as xs:base64Binary
declare function hmac:sha1($message as xs:string, $secret-key as xs:string) as xs:base64Binary