Skip to content

Latest commit

 

History

History
57 lines (45 loc) · 1.51 KB

javascript_string_hash_crypto.md

File metadata and controls

57 lines (45 loc) · 1.51 KB
title keywords summary permalink folder references authors current_reviews last_updated tags
JavaScript String Hashing using Nodes native "Crypto" Library
sample
JavaScript based string hashing
javascript_string_hash.html
JavaScript Crypto
url description
Winston
name url
Tobias Hirzel
2018-11-27
JavaScript
Node.js
node-crypto hash
SHA
SHA-512

Use cases

  • Usable on server side, not intended for use, on client side, in Browsers
  • Verifying, if a string has been changed

node version

  • 10.13.0

JavaScript Version

  • ECMAScript 6 and higher

Installation

  • crypto is is a native node module, no installation is required
  • Winston logger

Example Code for JavaScript String Hashing using SHA-512, BASE64 and UTF-8 encoding

{% include_relative src/allinone/ExampleHash.js %}

{% include links.html %}