mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-14 20:37:55 -05:00
6aa5c9117f
cfd74b57d Add a config file update step. 5957d8815 Wrap cache configuration in code-toggle 914405c0e capitalization and indentation fix for taxonomies page (#1159) 223b80f42 Fix page kinds shortcode not rendering on Taxonomies page (#1158) a9b6fa984 Clarify weight description. 29e121681 Warn about zero weights in front matter. 27ce7ba8c Release 0.73.0 e9596b2ee Merge branch 'temp73' 074a270cd releaser: Add release notes to /docs for release of 0.73.0 4f56a9fc0 width fix of expanding code box in documentation (#1156) f27254d60 css fix of expanding code box in documentation (#1155) 43b576178 Fix incorrect directory name in quick-start (#1154) 16726eacf Add GroupByLastmod 73c31758e Fix for broken link again (#1151) d07067295 Fix broken link (#1144) bc0b484d1 Rename taxonomy kinds from taxonomy to term, taxonomyTerm to taxonomy 674d71842 Fix Typo on Docker section of installation page b87778165 Merge commit 'efa74c5c6e6ff1daddeb5834ea7c69bed2acf171' c7cdebed3 tpl/crypto: Add hmac 260130cc0 Allow hook template per section/type 1f70519d8 releaser: Add release notes to /docs for release of 0.72.0 8516d540c Merge commit '9e1dcefc5f559944b70d2fa520f6acd5c56a69f2' c49195c69 common/maps: Add Scratch.Values 78072df81 Add redirect support to the server 90ca0af6b Fix typo in install instructions git-subtree-dir: docs git-subtree-split: cfd74b57d968d98f88d3ddaee651d9cbe79b7ce1
34 lines
667 B
Markdown
34 lines
667 B
Markdown
---
|
|
title: hmac
|
|
linktitle: hmac
|
|
description: Compute the cryptographic checksum of a message.
|
|
godocref:
|
|
date: 2020-05-29
|
|
publishdate: 2020-05-29
|
|
lastmod: 2020-05-29
|
|
categories: [functions]
|
|
menu:
|
|
docs:
|
|
parent: "functions"
|
|
keywords: [hmac,checksum]
|
|
signature: ["hmac HASH_TYPE KEY MESSAGE"]
|
|
workson: []
|
|
hugoversion:
|
|
relatedfuncs: [hmac]
|
|
deprecated: false
|
|
aliases: [hmac]
|
|
---
|
|
|
|
`hmac` returns a cryptographic hash that uses a key to sign a message.
|
|
|
|
```
|
|
{{ hmac "sha256" "Secret key" "Hello world, gophers!"}},
|
|
<!-- returns the string "b6d11b6c53830b9d87036272ca9fe9d19306b8f9d8aa07b15da27d89e6e34f40"
|
|
```
|
|
|
|
Supported hash functions:
|
|
|
|
* md5
|
|
* sha1
|
|
* sha256
|
|
* sha512
|