feat: add obfstr
This commit is contained in:
@@ -109,6 +109,7 @@ Project or files:
|
|||||||
│ ├── lazy_static
|
│ ├── lazy_static
|
||||||
│ ├── libmacchina
|
│ ├── libmacchina
|
||||||
│ ├── num_cpus
|
│ ├── num_cpus
|
||||||
|
│ ├── obfstr
|
||||||
│ ├── reed-solomon
|
│ ├── reed-solomon
|
||||||
│ ├── regex
|
│ ├── regex
|
||||||
│ ├── shadowrs
|
│ ├── shadowrs
|
||||||
@@ -182,6 +183,8 @@ Project or files:
|
|||||||
├── __translate
|
├── __translate
|
||||||
│ └── retranslate
|
│ └── retranslate
|
||||||
├── __wasm
|
├── __wasm
|
||||||
|
│ ├── deno_rust_wasm_import_functions
|
||||||
|
│ ├── deno_rust_wasm_js_sandbox
|
||||||
│ ├── deno_rust_wasm_qr_decode
|
│ ├── deno_rust_wasm_qr_decode
|
||||||
│ ├── wasi
|
│ ├── wasi
|
||||||
│ ├── wasm
|
│ ├── wasm
|
||||||
@@ -227,7 +230,7 @@ Project or files:
|
|||||||
├── vec.rs
|
├── vec.rs
|
||||||
└── while.rs
|
└── while.rs
|
||||||
|
|
||||||
197 directories, 33 files
|
200 directories, 33 files
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|||||||
16
__misc/obfstr/Cargo.lock
generated
Normal file
16
__misc/obfstr/Cargo.lock
generated
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
# This file is automatically @generated by Cargo.
|
||||||
|
# It is not intended for manual editing.
|
||||||
|
version = 3
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "obfstr"
|
||||||
|
version = "0.1.0"
|
||||||
|
dependencies = [
|
||||||
|
"obfstr 0.3.0",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "obfstr"
|
||||||
|
version = "0.3.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "7b2b2cbbfd8defa51ff24450a61d73b3ff3e158484ddd274a883e886e6fbaa78"
|
||||||
10
__misc/obfstr/Cargo.toml
Normal file
10
__misc/obfstr/Cargo.toml
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
[package]
|
||||||
|
name = "obfstr"
|
||||||
|
version = "0.1.0"
|
||||||
|
edition = "2021"
|
||||||
|
|
||||||
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
|
[dependencies]
|
||||||
|
obfstr = "0.3.0"
|
||||||
|
|
||||||
9
__misc/obfstr/src/main.rs
Normal file
9
__misc/obfstr/src/main.rs
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
use obfstr::obfstr;
|
||||||
|
|
||||||
|
fn main() {
|
||||||
|
obfstr!(
|
||||||
|
let secret = "Secret!!";
|
||||||
|
);
|
||||||
|
|
||||||
|
println!("{}", secret);
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user