Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add RandomGenerator to Sui Framework #15019

Merged
merged 17 commits into from
Mar 21, 2024
4 changes: 2 additions & 2 deletions crates/sui-framework/docs/sui-framework/hmac.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ title: Module `0x2::hmac`
Returns the 32 bytes digest of HMAC-SHA3-256(key, msg).


<pre><code><b>public</b> <b>fun</b> <a href="hmac.md#0x2_hmac_hmac_sha3_256">hmac_sha3_256</a>(key: &<a href="../move-stdlib/vector.md#0x1_vector">vector</a>&lt;u8&gt;, msg: &<a href="../move-stdlib/vector.md#0x1_vector">vector</a>&lt;u8&gt;): <a href="../move-stdlib/vector.md#0x1_vector">vector</a>&lt;u8&gt;
<pre><code><b>public</b> <b>fun</b> <a href="../sui-framework/hmac.md#0x2_hmac_hmac_sha3_256">hmac_sha3_256</a>(key: &<a href="../move-stdlib/vector.md#0x1_vector">vector</a>&lt;u8&gt;, msg: &<a href="../move-stdlib/vector.md#0x1_vector">vector</a>&lt;u8&gt;): <a href="../move-stdlib/vector.md#0x1_vector">vector</a>&lt;u8&gt;
</code></pre>


Expand All @@ -30,7 +30,7 @@ Returns the 32 bytes digest of HMAC-SHA3-256(key, msg).
<summary>Implementation</summary>


<pre><code><b>public</b> <b>native</b> <b>fun</b> <a href="hmac.md#0x2_hmac_hmac_sha3_256">hmac_sha3_256</a>(key: &<a href="../move-stdlib/vector.md#0x1_vector">vector</a>&lt;u8&gt;, msg: &<a href="../move-stdlib/vector.md#0x1_vector">vector</a>&lt;u8&gt;): <a href="../move-stdlib/vector.md#0x1_vector">vector</a>&lt;u8&gt;;
<pre><code><b>public</b> <b>native</b> <b>fun</b> <a href="../sui-framework/hmac.md#0x2_hmac_hmac_sha3_256">hmac_sha3_256</a>(key: &<a href="../move-stdlib/vector.md#0x1_vector">vector</a>&lt;u8&gt;, msg: &<a href="../move-stdlib/vector.md#0x1_vector">vector</a>&lt;u8&gt;): <a href="../move-stdlib/vector.md#0x1_vector">vector</a>&lt;u8&gt;;
</code></pre>


Expand Down
Loading
Loading