-
Notifications
You must be signed in to change notification settings - Fork 0
/
win_console.txt
28 lines (18 loc) · 980 Bytes
/
win_console.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Example without compilation file
## An example encrypt text
dart run dart_crypto_console.dart -t "Efraim" -o e ✔
## An example decrypt text
dart run dart_crypto_console.dart -t "Dcz7NXQ6VF8=" -o d
## An example encrypt text with personal key
dart run dart_crypto_console.dart -t "leaoJuda" -o e -k "Pr30:5CaPaDeusCoPura" ✔
## An example decrypt text with personal key
dart run dart_crypto_console.dart -t "JmYLptNNWj87Ws4JgAELaA==" -o d -k "Pr30:5CaPaDeusCoPura"
# Example with compiled file
## An example encrypt text
dart_crypto_console -t "Efraim" -o e
## An example decrypt text
dart_crypto_console -t "Dcz7NXQ6VF8=" -o d
## An example encrypt text with personal key
dart_crypto_console -t "leaoJuda" -o e -k "Pr30:5CaPaDeusCoPura" ✔
## An example decrypt text with personal key
dart_crypto_console -t "JmYLptNNWj87Ws4JgAELaA==" -o d -k "Pr30:5CaPaDeusCoPura"