Home Reference Source Test
public class | source

Md4

Extends:

src/hasher/hasher32le.js~Hasher32le → Md4

Calculates MD4 hash

Example:

Calculates MD4 hash from string "message" - ES6 style
import Md4 from "crypto-api/src/hasher/md4";
import {toHex} from "crypto-api/src/encoder/hex";

let hasher = new Md4();
hasher.update('message');
console.log(toHex(hasher.finalize()));
Calculates MD4 hash from UTF string "message" - ES6 style
import Md4 from "crypto-api/src/hasher/md4";
import {toHex} from "crypto-api/src/encoder/hex";
import {fromUtf} from "crypto-api/src/encoder/utf";

let hasher = new Md4();
hasher.update(fromUtf('message'));
console.log(toHex(hasher.finalize()));
Calculates MD4 hash from string "message" - ES5 style
<script src="https://nf404.github.io/crypto-api/crypto-api.min.js"></script>
<script>
  var hasher = CryptoApi.getHasher('md4');
  hasher.update('message');
  console.log(CryptoApi.encoder.toHex(hasher.finalize()));
</script>
Calculates MD4 hash from UTF string "message" - ES5 style
<script src="https://nf404.github.io/crypto-api/crypto-api.min.js"></script>
<script>
  console.log(CryptoApi.hash('md4', 'message'));
</script>

Test:

Method Summary

Public Methods
public

finalize(): string

Finalize hash and return result

public

reset()

Reset hasher to initial state

Public Methods

public finalize(): string source

Finalize hash and return result

Return:

string

public reset() source

Reset hasher to initial state