KeepassX format implementation in pure dart.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
/// dart library for reading keepass file format (kdbx).
|
|
|
|
library kdbx;
|
|
|
|
|
|
|
|
export 'src/crypto/protected_value.dart' show ProtectedValue, StringValue, PlainValue;
|
|
|
|
export 'src/kdbx_consts.dart';
|
|
|
|
export 'src/kdbx_entry.dart';
|
|
|
|
export 'src/kdbx_format.dart';
|
|
|
|
export 'src/kdbx_header.dart'
|
|
|
|
show
|
|
|
|
KdbxException,
|
|
|
|
KdbxInvalidKeyException,
|
|
|
|
KdbxCorruptedFileException,
|
|
|
|
KdbxUnsupportedException;
|
|
|
|
export 'src/kdbx_object.dart';
|