This website works better with JavaScript.
Explore
Help
Register
Sign In
aurora
/
kdbx.dart
Watch
1
Star
0
Fork
You've already forked kdbx.dart
0
Code
Issues
Pull Requests
Projects
Releases
Wiki
Activity
KeepassX format implementation in pure dart.
keepass
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.
154
Commits
4
Branches
0
Tags
660 KiB
Tree:
9a30bc7d3c
coverage
master
null-safety
remove-cryptography-dependency
Branches
Tags
${ item.name }
Create tag
${ searchTerm }
Create branch
${ searchTerm }
from '9a30bc7d3c'
${ noResults }
kdbx.dart
/
example
/
kdbx_example.dart
6 lines
83 B
Raw
Normal View
History
Unescape
Escape
initial commit. we can already decrypt the xml.
5 years ago
import
'
package:kdbx/kdbx.dart
'
;
void
main
(
)
{
first version implementing kdbx4 support.
5 years ago
KdbxFormat
(
)
.
read
(
null
,
null
)
;
initial commit. we can already decrypt the xml.
5 years ago
}