<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Crypto functions on Hugo</title><link>https://v0-122-0--gohugoio.netlify.app/functions/crypto/</link><description>Recent content in Crypto functions on Hugo</description><generator>Hugo -- gohugo.io</generator><language>en</language><atom:link href="https://v0-122-0--gohugoio.netlify.app/functions/crypto/index.xml" rel="self" type="application/rss+xml"/><item><title>crypto.FNV32a</title><link>https://v0-122-0--gohugoio.netlify.app/functions/crypto/fnv32a/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://v0-122-0--gohugoio.netlify.app/functions/crypto/fnv32a/</guid><description>This function calculates the 32-bit FNV1a hash of a given string according to the specification:
{{ crypto.FNV32a &amp;#34;Hello world&amp;#34; }} → 1498229191</description></item><item><title>crypto.HMAC</title><link>https://v0-122-0--gohugoio.netlify.app/functions/crypto/hmac/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://v0-122-0--gohugoio.netlify.app/functions/crypto/hmac/</guid><description>Set the HASH_TYPE argument to md5, sha1, sha256, or sha512.
Set the optional ENCODING argument to either hex (default) or binary.
{{ hmac &amp;#34;sha256&amp;#34; &amp;#34;Secret key&amp;#34; &amp;#34;Secret message&amp;#34; }} 5cceb491f45f8b154e20f3b0a30ed3a6ff3027d373f85c78ffe8983180b03c84 {{ hmac &amp;#34;sha256&amp;#34; &amp;#34;Secret key&amp;#34; &amp;#34;Secret message&amp;#34; &amp;#34;hex&amp;#34; }} 5cceb491f45f8b154e20f3b0a30ed3a6ff3027d373f85c78ffe8983180b03c84 {{ hmac &amp;#34;sha256&amp;#34; &amp;#34;Secret key&amp;#34; &amp;#34;Secret message&amp;#34; &amp;#34;binary&amp;#34; | base64Encode }} XM60kfRfixVOIPOwow7Tpv8wJ9Nz+Fx4/+iYMYCwPIQ=</description></item><item><title>crypto.MD5</title><link>https://v0-122-0--gohugoio.netlify.app/functions/crypto/md5/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://v0-122-0--gohugoio.netlify.app/functions/crypto/md5/</guid><description>{{ md5 &amp;#34;Hello world&amp;#34; }} → 3e25960a79dbc69b674cd4ec67a72c62 This can be useful if you want to use Gravatar for generating a unique avatar:
&amp;lt;img src=&amp;#34;https://www.gravatar.com/avatar/{{ md5 &amp;#34;your@email.com&amp;#34; }}?s=100&amp;amp;d=identicon&amp;#34;&amp;gt;</description></item><item><title>crypto.SHA1</title><link>https://v0-122-0--gohugoio.netlify.app/functions/crypto/sha1/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://v0-122-0--gohugoio.netlify.app/functions/crypto/sha1/</guid><description>{{ sha1 &amp;#34;Hello world&amp;#34; }} → 7b502c3a1f48c8609ae212cdfb639dee39673f5e</description></item><item><title>crypto.SHA256</title><link>https://v0-122-0--gohugoio.netlify.app/functions/crypto/sha256/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://v0-122-0--gohugoio.netlify.app/functions/crypto/sha256/</guid><description>{{ sha256 &amp;#34;Hello world&amp;#34; }} → 64ec88ca00b268e5ba1a35678a1b5316d212f4f366b2477232534a8aeca37f3c</description></item></channel></rss>