Base64Format

{@code HashFormat} that outputs <em>only</em> the hash's digest bytes in Base64 format. It does not print out anything else (salt, iterations, etc). This implementation is mostly provided as a convenience for command-line hashing.

class Base64Format : HashFormat {}

Members

Functions

format
string format(Hash hash)

Returns {@code hash !is null ? hash.toBase64() : null}.

Inherited Members

From HashFormat

format
string format(Hash hash)

Returns a formatted string representing the specified Hash instance.

Meta