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

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
120
pub points
70%
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

Documentation

API reference

License

MIT (LICENSE)

Dependencies

pedantic, unorm_dart

More

Packages that depend on saslprep