SHA-256: Difference between revisions

m
(New post without external libraries, in addition to an existing post which uses the external library from www.cryptopp.com)
m (→‎{{header|Wren}}: Minor tidy)
(One intermediate revision by one other user not shown)
Line 3,488:
let output: String = hash_values
.iter()
.map(|val| format!("{:x08x}", val))
.collect::<Vec<String>>()
.join("");
Line 3,581:
{{libheader|Wren-crypto}}
{{libheader|Wren-fmt}}
<syntaxhighlight lang="ecmascriptwren">import "./crypto" for Sha256
import "./fmt" for Fmt
var strings = [
9,485

edits