Class: Encoded

Encoded


new Encoded(key, salt, iter)

Stores hashed pass-phrase as Buffers.

Parameters:
Name Type Description
key Buffer

The hashed key

salt Buffer

The hashed salt

iter Number

The Number of PBKDF2 iterations

Source:

Methods


<static> parse(pass, enc)

Parses a hash string into an Encoded object.

Parameters:
Name Type Description
pass String

The hash string

enc String

Encoding scheme to be used

Source:
Returns:

The Encoded object

Type
Encoded

decode(enc)

Decodes the Encoded object into a Decoded object.

Parameters:
Name Type Description
enc String

Encoding scheme to be used

Source:
See:
Returns:

The Decoded object

Type
Decoded

getIteration()

Source:
Returns:
Type
Number

getKey()

Source:
Returns:
Type
Buffer

getSalt()

Source:
Returns:
Type
Buffer

setIteration(iter)

Parameters:
Name Type Description
iter Number
Source:

setKey(key)

Parameters:
Name Type Description
key Buffer
Source:

setSalt(salt)

Parameters:
Name Type Description
salt Buffer
Source:

toString(enc)

The hash string has the format iter:salt:key.

Parameters:
Name Type Description
enc String

Encoding scheme to be used

Source:
See: