ldap_passwd

Logo

Simple password utility for ldap userPassword writing using dart, you can find some alternatives in other language world.

View the Project on GitHub liudonghua123/ldap_passwd

ldap_passwd

ldap_passwd v0.1.0 Build

Simple password utility for ldap userPassword writing using dart, you can find some alternatives in other language world.

What is it

This is a simple lib and cli tool for generating or verifying the ldap userPassword.

It supports salted:

How to use it

cli usage

  1. download the prebuild binary from the release page.
  2. pub global activate ldap_passwd

lib usage

First add this dependence in your pubspec.yaml file, then import it in your app.

dependencies:
  ldap_passwd: ^0.1.0

or

dependencies:
  ldap_passwd:
    git: git://github.com/liudonghua123/ldap_passwd.git
import 'package:ldap_passwd/ldap_passwd.dart';
// ......
var ldapPasswd = LdapPasswd('<plain_password_here>');
var generated_hashed_password = generatePassword();
var isMatch = LdapPasswd.checkPassword(generated_hashed_password);

License

MIT License

Copyright (c) 2020 liudonghua