saslprep 1.0.1 copy "saslprep: ^1.0.1" to clipboard
saslprep: ^1.0.1 copied to clipboard

outdated

This package provides the Stringprep (rfc4013) Profile for User Names and Passwords for dart. A port of https://github.com/reklatsmasters/saslprep to the dart lang

example/main.dart

import 'package:saslprep/saslprep.dart';

void main() {
  // password
  print(Saslprep.saslprep('password\u00AD'));
  // No error due to unassigned character
  print(Saslprep.saslprep('password\u0487', options: SaslprepOptions(true)));
  // Error due to unassigned character
  print(Saslprep.saslprep('password\u0487'));
}
1
likes
30
pub points
74%
popularity

Publisher

verified publisherdart.konsultaner.de

This package provides the Stringprep (rfc4013) Profile for User Names and Passwords for dart. A port of https://github.com/reklatsmasters/saslprep to the dart lang

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

pedantic, unorm_dart

More

Packages that depend on saslprep