ECC token decoding and encoding passed

This commit is contained in:
heromyth 2021-03-04 20:38:00 +08:00
parent 0b75b521b3
commit d2a3c19d1d
10 changed files with 782 additions and 233 deletions

27
examples/simple/.vscode/launch.json vendored Normal file
View 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
}
]
}
]
}

View file

@ -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"
}
}