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 その2

Last updated at Posted at 2021-05-14

概要

plunkerでsha256やってみた。

参考にしたページ

写真

無題.jpg

サンプルコード

function run() {
  var src = document.getElementById("src0").value;
  let msg = [];
  for (let j = 0; j < src.length; j += 2) 
  {
    msg[j / 2] = parseInt(src.substr(j, 2), 16);
  }
  let hash = compute(padding(msg));
  let hs = hash2str(hash);
  document.getElementById("code0").value = hs;
  var src = document.getElementById("src1").value;
  msg = [];
  for (j = 0; j < src.length; j += 2) 
  {
    msg[j / 2] = parseInt(src.substr(j, 2), 16);
  }
  hash = compute(padding(msg));
  hs = hash2str(hash);
  document.getElementById("code1").value = hs;
  var src = document.getElementById("src2").value;
  msg = [];
  for (j = 0; j < src.length; j += 2) 
  {
    msg[j / 2] = parseInt(src.substr(j, 2), 16);
  }
  hash = compute(padding(msg));
  hs = hash2str(hash);
  document.getElementById("code2").value = hs;
}


成果物

以上。

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?