Skip to content

lovelykd/sqlcipher-cli

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Command line SQLCipher client for Windows

SQLCipher is a sqlite extension which supports data encryption. It provides source code in the community edition, but compiling that for Windows seems not easy. Fortunately, there is a nodejs package named node-sqlcipher. This command line SQLCipher client is developed based on it.

Have a try if you need to read SQLCipher database on Windows.

Installation

# assume that you already installed node
npm i -g sqlcipher-cli

Usage

Connect to the database with your secret key

sqlcipher-cli -d test.db -s secretkey

Type the query string (it should end with ';')

Database connected
> select * from user;
[ { id: 1, name: '123' } ]
>

Type quit to exit

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published