Skip to content
/ sha256 Public

JavaScript implementation of SHA256 extracted from Bitcoin Core and compiled to WebAssembly

Notifications You must be signed in to change notification settings

coins/sha256

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

SHA256 WASM

SHA256 implementation extracted from Bitcoin Core and compiled to WebAssembly.

Usage

import {sha256} from 'https://bitvm.github.io/sha256/sha256.js'

const preimage = new Uint8Array([97, 98, 99])    // Our preimage is "abc"
const digest = sha256(preimage)

console.log(digest)

Development

The following command compiles the sources to wasm:

clang src/sha256.cpp -O2 --no-standard-libraries --target=wasm32 -Wl,--no-entry -o sha256.wasm

About

JavaScript implementation of SHA256 extracted from Bitcoin Core and compiled to WebAssembly

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published