Skip to content

Commit 4d24a5d

Browse files
committed
[RELEASE]:released v0.1.2
Signed-off-by: ashish <[email protected]>
1 parent 75fdbd2 commit 4d24a5d

File tree

1 file changed

+56
-0
lines changed

1 file changed

+56
-0
lines changed

README.md

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,47 @@ USAGE
3232
<!-- usagestop -->
3333
# Commands
3434
<!-- commands -->
35+
* [`cdt crypto [STRING]`](#cdt-crypto-string)
36+
* [`cdt hash [STRING]`](#cdt-hash-string)
3537
* [`cdt help [COMMAND]`](#cdt-help-command)
38+
* [`cdt minify [FILE]`](#cdt-minify-file)
39+
40+
## `cdt crypto [STRING]`
41+
42+
Encryption and Decryption functionality for File/String
43+
44+
```
45+
USAGE
46+
$ cdt crypto [STRING]
47+
48+
OPTIONS
49+
-d, --decryption=decryption decryption type, Supported [AES, DES, 3DES, Rabbit, RC4, RC4Drop]
50+
-e, --encryption=encryption encryption type, Supported [AES, DES, 3DES, Rabbit, RC4, RC4Drop]
51+
-f, --file=file file to be encrypted/decrypted
52+
-h, --help show CLI help
53+
-k, --key=key key for encryption/decryption
54+
-m, --mode=mode Block Mode, Supported [CBC, CFB, CTR, OFB, ECB]
55+
-s, --string=string string to be encrypted/decrypted
56+
```
57+
58+
_See code: [src/commands/crypto.ts](https://github.com/codingtools/cdt/blob/v0.1.2/src/commands/crypto.ts)_
59+
60+
## `cdt hash [STRING]`
61+
62+
Hashing functionality for a string/file
63+
64+
```
65+
USAGE
66+
$ cdt hash [STRING]
67+
68+
OPTIONS
69+
-f, --file=file file to be hashed
70+
-h, --help show CLI help
71+
-s, --string=string string to be hashed
72+
-t, --type=type type of hash [SHA1(default), MD5, SHA256, SHA512, RMD160 or RIPEMD160]
73+
```
74+
75+
_See code: [src/commands/hash.ts](https://github.com/codingtools/cdt/blob/v0.1.2/src/commands/hash.ts)_
3676

3777
## `cdt help [COMMAND]`
3878

@@ -50,4 +90,20 @@ OPTIONS
5090
```
5191

5292
_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v2.2.1/src/commands/help.ts)_
93+
94+
## `cdt minify [FILE]`
95+
96+
File Minifier
97+
98+
```
99+
USAGE
100+
$ cdt minify [FILE]
101+
102+
OPTIONS
103+
-f, --file=file file to be minified
104+
-h, --help show CLI help
105+
-t, --type=type type of file to be minified, it will try to find type with extension
106+
```
107+
108+
_See code: [src/commands/minify.ts](https://github.com/codingtools/cdt/blob/v0.1.2/src/commands/minify.ts)_
53109
<!-- commandsstop -->

0 commit comments

Comments
 (0)