SyntaxFix
Write A Post
Hire A Developer
Questions
For those interested, this is code for creating SHA-256 hash using sjcl:
sjcl
import sjcl from 'sjcl' const myString = 'Hello' const myBitArray = sjcl.hash.sha256.hash(myString) const myHash = sjcl.codec.hex.fromBits(myBitArray)