hiddencoder
Advanced tools
Comparing version 1.0.3 to 1.0.4
{ | ||
"name": "hiddencoder", | ||
"version": "1.0.3", | ||
"version": "1.0.4", | ||
"description": "Encode ASCII strings into zero-width unicode characters, and decode back into ASCII", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
@@ -24,14 +24,14 @@ # Hiddencoder | ||
### Example usage: | ||
Use the [example files](examples/) to encode a file in order to hide its content: | ||
Use the [example files](example/) to encode a file in order to hide its content: | ||
Encode the code in [`encode.js`](examples/encode.js) file by using it on itself | ||
Encode the code in [`encode.js`](example/encode.js) file by using it on itself | ||
```Bash | ||
node encode.js encode.js | ||
``` | ||
This will save the encoded output into [`encode.js.enc`](examples/encode.js.enc), and will seem empty | ||
This will save the encoded output into [`encode.js.enc`](example/encode.js.enc), and will seem empty | ||
Decode the content back into readable form by using [`decoder.js`](examples/decoder.js) | ||
Decode the content back into readable form by using [`decode.js`](example/decode.js) | ||
```Bash | ||
node decode.js encode.js.enc | ||
``` | ||
This will save the decoded output into [`encode.js.enc.dec`](examples/encode.js.enc.dec) | ||
This will save the decoded output into [`encode.js.enc.dec`](example/encode.js.enc.dec) |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
6259