ECC token decoding and encoding passed
This commit is contained in:
parent
0b75b521b3
commit
d2a3c19d1d
10 changed files with 782 additions and 233 deletions
27
examples/simple/.vscode/launch.json
vendored
Normal file
27
examples/simple/.vscode/launch.json
vendored
Normal file
|
@ -0,0 +1,27 @@
|
|||
{
|
||||
// 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": "(gdb) Launch",
|
||||
"type": "cppdbg",
|
||||
"request": "launch",
|
||||
"program": "${workspaceFolder}/simple",
|
||||
"args": [],
|
||||
"stopAtEntry": false,
|
||||
"cwd": "${workspaceFolder}",
|
||||
"environment": [],
|
||||
"externalConsole": false,
|
||||
"MIMode": "gdb",
|
||||
"setupCommands": [
|
||||
{
|
||||
"description": "Enable pretty-printing for gdb",
|
||||
"text": "-enable-pretty-printing",
|
||||
"ignoreFailures": true
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
|
@ -1,11 +1,15 @@
|
|||
{
|
||||
"authors": [
|
||||
"Zhang"
|
||||
"HuntLabs"
|
||||
],
|
||||
"description": "A minimal D application.",
|
||||
"license": "proprietary",
|
||||
"name": "simple",
|
||||
"versions" : [
|
||||
"HUNT_JWT_DEBUG"
|
||||
],
|
||||
"dependencies": {
|
||||
"hunt-jwt" : {"path": "../../"}
|
||||
"hunt-jwt" : {"path": "../../"},
|
||||
"hunt" : "~>1.6.6"
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue