Has160
Extends:
src/hasher/hasher32le.js~Hasher32le → Has160
Calculates HAS-160 hash
Example:
import Has160 from "crypto-api/src/hasher/has160";
import {toHex} from "crypto-api/src/encoder/hex";
let hasher = new Has160();
hasher.update('message');
console.log(toHex(hasher.finalize()));
import Has160 from "crypto-api/src/hasher/has160";
import {toHex} from "crypto-api/src/encoder/hex";
import {fromUtf} from "crypto-api/src/encoder/utf";
let hasher = new Has160();
hasher.update(fromUtf('message'));
console.log(toHex(hasher.finalize()));
<script src="https://nf404.github.io/crypto-api/crypto-api.min.js"></script>
<script>
var hasher = CryptoApi.getHasher('has160');
hasher.update('message');
console.log(CryptoApi.encoder.toHex(hasher.finalize()));
</script>
<script src="https://nf404.github.io/crypto-api/crypto-api.min.js"></script>
<script>
console.log(CryptoApi.hash('has160', 'message'));
</script>
Constructor Summary
Public Constructor | ||
public |
constructor(options: Object) |
Method Summary
Public Methods | ||
public |
finalize(): string Finalize hash and return result |
|
public |
reset() Reset hasher to initial state |
Public Constructors
public constructor(options: Object) source
Params:
Name | Type | Attribute | Description |
options | Object |
|
|
options.rounds | number |
|
Number of rounds (Can be from 1 to 80) |