lmHash function

String lmHash(
  1. String password
)

Generates the base 64 lan manager hash corresponding to the password.

Implementation

String lmHash(String password) => _encode(createLMHashedPasswordV1(password));