0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

plunkerでsha256

Posted at

概要

plunkerでsha256やってみた。
crypto.js使ってみた。

写真

無題.jpg

サンプルコード

function run() {
  var src = document.getElementById("src0").value;
  src = CryptoJS.enc.Hex.parse(src);
  var sha256 = CryptoJS.SHA256(src, { 
		asBytes : true
	});
  document.getElementById("code0").value = sha256;
  var src = document.getElementById("src1").value;
  src = CryptoJS.enc.Hex.parse(src);
  var sha256 = CryptoJS.SHA256(src, { 
		asBytes : true
	});
  document.getElementById("code1").value = sha256;
  var src = document.getElementById("src2").value;
  src = CryptoJS.enc.Hex.parse(src);
  var sha256 = CryptoJS.SHA256(src, { 
		asBytes : true
	});
  document.getElementById("code2").value = sha256;
}


成果物

以上。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?