CRYPTO-JS calculating the sha256 value of a file

Source: Internet
Author: User
Tags hmac

1. To calculate the SHA256 or MD5 value of the file in the browser, the basic idea is to use the HTML5 FileReader interface to read the file into memory (Readasarraybuffer), and then get the binary contents of the file. Then get the shaa256 or MD5 value of the file.

2. Arraybuffer is a piece of memory, and the Arraybuffer object is used to represent a generic, fixed-length binary data buffer.

3. CRYPTOJS (Crypto.js) provides a variety of cryptographic algorithms for JavaScript. Currently supported algorithms include: MD5 SHA-1 SHA-256 AES Rabbit MARC4 HMAC hmac-md5 hmac-sha1 ...

New FileReader (); Reader.readasarraybuffer (file.files[0function  () {    var Wordarray = CryptoJS.lib.WordArray.create (reader.result);     var hash = cryptojs.sha256 (wordarray). toString ();};

Reference:

Https://stackoverflow.com/questions/27060248/calculate-sha-256-hash-and-b64-of-a-file-in-javascript

CRYPTO-JS calculating the sha256 value of a file

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.