PBKDF2 class

PBKDF2 (RFC 2898) is a cryptographic key derivation function, which is resistant to rainbow table- and dictionary attacks.

This is very simple implementation of the PBKDF2 that iteratively deriving hmac (currently only HMAC-SHA512) with a cryptographically secure salt.

Constructors

PBKDF2()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

hmac_sha256(Uint8List password, Uint8List salt, int count, int key_length) Uint8List
hmac_sha512(Uint8List password, Uint8List salt, int count, int key_length) Uint8List