Skip to content

encrypted sqlite3 with xchacha20poly1305 example

License

Notifications You must be signed in to change notification settings

slowtacos/xsqlite3

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

example

  • create encrypted database and fill with some data
$ xsqlite3 -f mydb.xdb
  password: abc
  confirm password: abc
  > create table secret(a text);
  > insert into secret(a) values('123');
  > close;
  • open database and query
$ xsqlite3 -f mydb.xdb
  password: abc
  > select * from secret;
  a = 123
  > close;

Releases

No releases published

Packages

No packages published