-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
42 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,33 @@ | ||
[package] | ||
name = "chrome_cookie_decryptor" | ||
version = "0.1.0" | ||
name = "cdd" | ||
version = "0.1.2" | ||
edition = "2021" | ||
|
||
authors = ["Kirill Melkozerov <[email protected]>"] | ||
license = "MIT" | ||
repository = "https://github.com/1101-1/chrome_cookie_decryptor" | ||
|
||
description = """ | ||
A windows simple, fast chrome_cookie_decryptor | ||
""" | ||
|
||
readme = "README.md" | ||
categories = ["concurrency", "asynchronous"] | ||
keywords = ["chrome", "cookie", "description", "decryptor"] | ||
|
||
|
||
[profile.release] | ||
opt-level = 'z' | ||
lto = true | ||
codegen-units = 1 | ||
panic = 'abort' | ||
|
||
|
||
[[bin]] | ||
name = "cdd" | ||
path = "src/lib.rs" | ||
|
||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
|
@@ -18,4 +37,4 @@ serde_json = "1.0.96" | |
base64 = "0.21.2" | ||
winapi = { version = "0.3.6", features = ["wingdi", "winnt", "winuser", "dpapi", "winbase"] } | ||
aes-gcm = "0.10.2" | ||
tokio = { version = "1.28.2", features = ["rt", "io-util", "io-std", "macros", "fs", "sync", "rt-multi-thread"] } | ||
tokio = { version = "1.28.2", features = ["rt", "io-util", "io-std", "macros", "fs", "sync", "rt-multi-thread"] } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,18 @@ | ||
# Chrome Cookie Decryptor | ||
# Chrome Cookie Decryptor(CDD) | ||
## Features | ||
1. Very fast | ||
2. Easy to work | ||
3. Free | ||
4. Only on Windows | ||
4. Only on Windows!!! | ||
|
||
## Where to install? | ||
Check [RELEASES](https://github.com/1101-1/chrome_cookie_decryptor/releases/) | ||
## How to install? | ||
In your cmd write `cargo install cdd` | ||
|
||
## How to use? | ||
|
||
```bash | ||
cdd <path>[OPTIONAL] | ||
``` | ||
|
||
### `IMPORTANT` | ||
if path is empty, it saved in folder where you run program. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.