-
Notifications
You must be signed in to change notification settings - Fork 0
/
launch.json
63 lines (63 loc) · 2.66 KB
/
launch.json
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "C++ Launch",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceRoot}/ft_ssl",
// "args": ["base64", "-i", "test/in_test"],
// "args": ["base64", "-d", "-i", "test/in_test"],
// "args": ["des-ecb", "-i", "test/in_test", "-k", "0011223344556677", "-a"],
// "args": ["des-cbc", "-i", "test/in_test", "-k", "0011223344556677", "-a", "-v", "0011223344556677"],
// "args": ["des-ecb", "-d", "-a", "-k", "0101010101010101", "-i", "dec_des.txt"],
// "args": ["des-ecb", "-p", "password", "-s", "NaCl"],
// "args": ["des-ecb" "-e", "-k", "0101010101010101", "-a", "-i", "enc_des.txt", "-o", "dec_des.txt"],
// "args": ["des-cbc", "-e", "-p", "foo", "-a", "-i", "enc_des.txt", "-o", "dec_des.txt"],
// "args": ["des-ecb", "-p", "foo", "-i", "in.txt", "-s", "cec85116007e0a23"],
// "args": ["des3-cbc", "-k", "C0FFEE69DEADBEEF", "-v", "0123456789abcdef", "-i", "s.txt", "-a"],
// "args": ["des3", "-p", "foo", "-i", "s.txt", "-a", "-v", "0000000000000000"/*"-s", "24ea3d2f7d6d554f"*/],
// "args": ["des-ecb", "-k", "0123456789abcdef", "-i", "test_1", "-d"],
// "args": ["des-ecb", "-k", "0123456789abcdef", "-i", "test_1", "-d"],
// "args": ["des3", "-p", "hi", "-i", "test.txt", "-v", "77696E6B66616365", "-d"],
// "args": ["des3", "-v", "0123456789abcdef", "-k", "16f819e6d66392809c32ef39e57a6ac0432b010d06479d51", "-a", "-d", "-i", "out"],
"args": ["des3", "-k", "9e3f39d64801f759", "-v", "0123456789abcdef", "-a", "-i", "foo"],
"stopAtEntry": false,
"cwd": "${workspaceRoot}",
"preLaunchTask": "build",
"externalConsole": false,
"setupCommands": [
// {
// used to pipe in.txt file through STDIN
// "text": "settings set target.input-path test_in.txt"
// }
],
"linux": {
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
},
"osx": {
"MIMode": "lldb"
},
"windows": {
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
}
}
]
}