1.0.0 • Published 3 years ago

@totenpass/tescli v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

@totenpass/cli

Cli for encoding and decoding using the Total Encryption Standard

oclif Version Downloads/week License

Usage

$ npm install -g @totenpass/tescli
$ tptes COMMAND
running command...
$ tptes (-v|--version|version)
@totenpass/tescli/1.0.0 darwin-arm64 node-v14.17.0
$ tptes --help [COMMAND]
USAGE
  $ tptes COMMAND
...

Commands

tptes $ tescli decrypt <file>

Uses a passphrase to decrypt a base64 encrypted with the Total Encryption Standard

USAGE
  $ tptes $ tescli decrypt <file>

OPTIONS
  -d, --dest=dest  Decryption destination file
  -h, --help       Shows help

See code: src/commands/decrypt.ts

tptes $ tescli encrypt <file>

Uses a passphrase to encrypt a file to base64 using the Total Encryption Standard

USAGE
  $ tptes $ tescli encrypt <file>

OPTIONS
  -d, --dest=dest              Encryption destination file
  -h, --help                   Shows help
  -m, --memory=memory          Memory multiplier
  -o, --operations=operations  Number of operations

EXAMPLES
  $ tescli encrypt ./test.txt -m 2
  $ tescli encrypt ./test.txt -o 4
  $ tescli encrypt ./test.txt -d ./encrypted-test.tsx
  $ tescli encrypt ./test.txt -d ./encrypted-test.tsx -m 2 -o 4

See code: src/commands/encrypt.ts

tptes help [COMMAND]

display help for tptes

USAGE
  $ tptes help [COMMAND]

ARGUMENTS
  COMMAND  command to show help for

OPTIONS
  --all  see all commands in CLI

See code: @oclif/plugin-help