Próbuję wygenerować skrót SHA-256 dla plików.W Angular2 skrót SHA256 wygenerowanego pliku nie pasuje do SHA256 z innych witryn.
Użyłem do tego biblioteki https://www.npmjs.com/package/crypto-js. zobacz poniższy kod na ten temat.
import { Component, OnInit } from '@angular/core';
var SHA256 = require("crypto-js/sha256");
@Component({
moduleId: module.id,
selector: 'dashboard',
templateUrl: './dashboard.component.html',
styleUrls: ['./dashboard.component.css']
})
export class DashboardComponent implements OnInit {
hash: string;
constructor() { }
ngOnInit() {}
onFilesChange(fileList : Array<File>){
this.fileList = fileList;
console.log(fileList);
for(var file in fileList){
this.hash = SHA256(file);
console.log(this.hash.toString());
}
}
}
Plik: file for sha-256 z powyższym kodzie mam poniżej sh256 hash: 5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9
ale odnoszę wiele witryn internetowych, jak http://onlinemd5.com/,http://www.online-convert.com/,https://md5file.com/calculator
formy serwisie internetowym Mam poniżej sha256 hash: 27bb4358e847d559bed9f34eeee51ca71f51542afb0de4017b80dd66a0656eca
Czy ktoś może mi powiedzieć, dlaczego dostaję d inny hash?