Given a string of hex values, a PGP thumbprint or SHA hash for example, return an array of PGP words.
var words = parse('E582')
Will return:
[
'topmost',
'Istanbul'
]
Parses either a hex input string, or Buffer
, and returns an
array of PGP words.
A hex formatted string or a Buffer
.
// these are identical
var words = parse('E582')
var words = parse(new Buffer('E582', 'hex'))
var words = parse(new Buffer([ 229, 130 ]))