You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+10-13Lines changed: 10 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ Inspired by [twenty3/Obfuscator](https://github.com/twenty3/Obfuscator), and the
13
13
14
14
This package contains both a library and command line tool.
15
15
16
-
Use the `obfuscate` command line tool to encrypt your secret token. It generates both a cipher and a key (A.K.A. salt) you can use to reveal the original value.
16
+
Use the `obfuscate` command line tool to encrypt your secret token. It generates both a token and a key (A.K.A. salt) you can use to reveal the original value.
17
17
18
18
Include the library in your application to decode the value at runtime.
19
19
@@ -72,7 +72,7 @@ the original value using the obfuscates string and the salt.
72
72
You can include the obfuscated string in your applications source code and provide the key
73
73
through some type of configuration method (ENV, XCConfig file, etc).
74
74
75
-
Then use the `Obfuscator` library to decrypt the cipher at runtime when needed.
75
+
Then use the `Obfuscator` library to decrypt the token at runtime when needed.
76
76
77
77
The important bit is that your original secret should not be present in your source code,
78
78
config files, or your SCM system.
@@ -100,8 +100,8 @@ SUBCOMMANDS:
100
100
```
101
101
OVERVIEW: Obfuscates a string.
102
102
103
-
Generates a cipher from the provided string, along with a key that can
104
-
be used to decrypt the cipher, and reveal the original value.
103
+
Generates a token from the provided string, along with a key that can
104
+
be used to decrypt the token, and reveal the original value.
105
105
106
106
USAGE: obfuscate encrypt <string>
107
107
@@ -117,12 +117,12 @@ OPTIONS:
117
117
```
118
118
OVERVIEW: Reveals an obfuscated string.
119
119
120
-
Decrypts the provided cipher using the key to reveal the original value.
120
+
Decrypts the provided token using the key to reveal the original value.
0 commit comments