sqlcipher-cli

1.0.2 • Public • Published

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

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.0.2
    0
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 1.0.2
    0
  • 1.0.1
    1
  • 1.0.0
    1

Package Sidebar

Install

npm i sqlcipher-cli

Weekly Downloads

2

Version

1.0.2

License

BSD-3-Clause

Unpacked Size

4.59 kB

Total Files

4

Last publish

Collaborators

  • lovelykd