2022-04-06 14:11:13 +00:00
|
|
|
# Nimbus
|
2024-01-29 13:20:04 +00:00
|
|
|
# Copyright (c) 2022-2024 Status Research & Development GmbH
|
2022-04-06 14:11:13 +00:00
|
|
|
# Licensed under either of
|
|
|
|
# * Apache License, version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0)
|
|
|
|
# * MIT license ([LICENSE-MIT](LICENSE-MIT) or
|
|
|
|
# http://opensource.org/licenses/MIT)
|
|
|
|
# at your option. This file may not be copied, modified, or distributed except
|
|
|
|
# according to those terms.
|
|
|
|
|
|
|
|
## Test Jwt Authorisation Functionality
|
|
|
|
## ====================================
|
|
|
|
|
|
|
|
import
|
2023-01-31 01:32:17 +00:00
|
|
|
std/[base64, json, options, os, strutils, times],
|
2022-04-06 14:11:13 +00:00
|
|
|
../nimbus/config,
|
|
|
|
../nimbus/rpc/jwt_auth,
|
2024-01-29 13:20:04 +00:00
|
|
|
../nimbus/rpc {.all.},
|
2022-04-06 14:11:13 +00:00
|
|
|
./replay/pp,
|
|
|
|
chronicles,
|
2022-07-18 04:35:50 +00:00
|
|
|
chronos/apps/http/httpclient as chronoshttpclient,
|
|
|
|
chronos/apps/http/httptable,
|
2024-10-16 01:34:12 +00:00
|
|
|
eth/common/keys,
|
|
|
|
eth/p2p,
|
2024-09-29 12:37:09 +00:00
|
|
|
nimcrypto/[hmac, sha2, utils],
|
2024-05-30 12:54:03 +00:00
|
|
|
results,
|
2022-04-06 14:11:13 +00:00
|
|
|
stint,
|
2022-07-18 04:35:50 +00:00
|
|
|
unittest2,
|
|
|
|
graphql,
|
2024-01-29 13:20:04 +00:00
|
|
|
websock/websock,
|
|
|
|
graphql/[httpserver, httpclient],
|
|
|
|
json_rpc/[rpcserver, rpcclient]
|
2022-04-06 14:11:13 +00:00
|
|
|
|
|
|
|
type
|
|
|
|
UnGuardedKey =
|
|
|
|
array[jwtMinSecretLen,byte]
|
|
|
|
|
|
|
|
const
|
|
|
|
jwtKeyFile ="jwtsecret.txt" # external shared secret file
|
|
|
|
jwtKeyStripped ="jwtstripped.txt" # without leading 0x
|
|
|
|
jwtKeyCopy = jwtSecretFile # file containing effective data key
|
|
|
|
|
|
|
|
baseDir = [".", "..", ".."/"..", $DirSep]
|
|
|
|
repoDir = [".", "tests" / "test_jwt_auth"]
|
|
|
|
|
|
|
|
let
|
|
|
|
fakeKey = block:
|
|
|
|
var rc: JwtSharedKey
|
|
|
|
discard rc.fromHex((0..31).mapIt(15 - (it mod 16)).mapIt(it.byte).toHex)
|
|
|
|
rc
|
|
|
|
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# Helpers
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
proc findFilePath(file: string): Result[string,void] =
|
|
|
|
for dir in baseDir:
|
|
|
|
for repo in repoDir:
|
|
|
|
let path = dir / repo / file
|
|
|
|
if path.fileExists:
|
|
|
|
return ok(path)
|
|
|
|
err()
|
|
|
|
|
2024-06-07 02:01:45 +00:00
|
|
|
proc say(noisy = false; pfx = "***"; args: varargs[string, `$`]) =
|
2022-04-06 14:11:13 +00:00
|
|
|
if noisy:
|
|
|
|
if args.len == 0:
|
|
|
|
echo "*** ", pfx
|
|
|
|
elif 0 < pfx.len and pfx[^1] != ' ':
|
|
|
|
echo pfx, " ", args.toSeq.join
|
|
|
|
else:
|
|
|
|
echo pfx, args.toSeq.join
|
|
|
|
|
|
|
|
proc setTraceLevel =
|
|
|
|
discard
|
|
|
|
when defined(chronicles_runtime_filtering) and loggingEnabled:
|
|
|
|
setLogLevel(LogLevel.TRACE)
|
|
|
|
|
|
|
|
proc setErrorLevel =
|
|
|
|
discard
|
|
|
|
when defined(chronicles_runtime_filtering) and loggingEnabled:
|
|
|
|
setLogLevel(LogLevel.ERROR)
|
|
|
|
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# Private Functions
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
proc fakeGenSecret(fake: JwtSharedKey): JwtGenSecret =
|
|
|
|
## Key random generator, fake version
|
|
|
|
result = proc: JwtSharedKey =
|
|
|
|
fake
|
|
|
|
|
|
|
|
proc base64urlEncode(x: auto): string =
|
|
|
|
## from nimbus-eth2, engine_authentication.nim
|
|
|
|
base64.encode(x, safe = true).replace("=", "")
|
|
|
|
|
2024-06-07 02:01:45 +00:00
|
|
|
func getIatToken(time: uint64): JsonNode =
|
2022-04-06 14:11:13 +00:00
|
|
|
## from nimbus-eth2, engine_authentication.nim
|
|
|
|
%* {"iat": time}
|
|
|
|
|
2024-06-07 02:01:45 +00:00
|
|
|
proc getSignedToken(key: openArray[byte], payload: string): string =
|
2022-04-06 14:11:13 +00:00
|
|
|
## from nimbus-eth2, engine_authentication.nim
|
|
|
|
# Using hard coded string for """{"typ": "JWT", "alg": "HS256"}"""
|
|
|
|
let sData = "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9." & base64urlEncode(payload)
|
2022-04-08 04:54:11 +00:00
|
|
|
sData & "." & sha256.hmac(key, sData).data.base64urlEncode
|
2022-04-06 14:11:13 +00:00
|
|
|
|
2024-06-07 02:01:45 +00:00
|
|
|
proc getSignedToken2(key: openArray[byte], payload: string): string =
|
2022-04-06 14:11:13 +00:00
|
|
|
## Variant of `getSignedToken()`: different algorithm encoding
|
|
|
|
let
|
|
|
|
jNode = %* {"alg": "HS256", "typ": "JWT" }
|
|
|
|
sData = base64urlEncode($jNode) & "." & base64urlEncode(payload)
|
2022-04-08 04:54:11 +00:00
|
|
|
sData & "." & sha256.hmac(key, sData).data.base64urlEncode
|
2022-04-06 14:11:13 +00:00
|
|
|
|
|
|
|
proc getHttpAuthReqHeader(secret: JwtSharedKey; time: uint64): HttpTable =
|
|
|
|
let bearer = secret.UnGuardedKey.getSignedToken($getIatToken(time))
|
|
|
|
result.add("aUtHoRiZaTiOn", "Bearer " & bearer)
|
|
|
|
|
|
|
|
proc getHttpAuthReqHeader2(secret: JwtSharedKey; time: uint64): HttpTable =
|
|
|
|
let bearer = secret.UnGuardedKey.getSignedToken2($getIatToken(time))
|
|
|
|
result.add("aUtHoRiZaTiOn", "Bearer " & bearer)
|
|
|
|
|
2024-01-29 13:20:04 +00:00
|
|
|
proc createServer(serverAddress: TransportAddress, authHooks: seq[AuthHook] = @[]): GraphqlHttpServerRef =
|
2022-07-18 04:35:50 +00:00
|
|
|
let socketFlags = {ServerFlags.TcpNoDelay, ServerFlags.ReuseAddr}
|
|
|
|
var ctx = GraphqlRef.new()
|
|
|
|
|
|
|
|
const schema = """type Query {name: String}"""
|
|
|
|
let r = ctx.parseSchema(schema)
|
|
|
|
if r.isErr:
|
|
|
|
debugEcho r.error
|
|
|
|
return
|
|
|
|
|
|
|
|
let res = GraphqlHttpServerRef.new(
|
|
|
|
graphql = ctx,
|
|
|
|
address = serverAddress,
|
|
|
|
socketFlags = socketFlags,
|
|
|
|
authHooks = authHooks
|
|
|
|
)
|
|
|
|
|
|
|
|
if res.isErr():
|
|
|
|
debugEcho res.error
|
|
|
|
return
|
|
|
|
|
|
|
|
res.get()
|
|
|
|
|
|
|
|
proc setupClient(address: TransportAddress): GraphqlHttpClientRef =
|
|
|
|
GraphqlHttpClientRef.new(address, secure = false).get()
|
|
|
|
|
2024-01-29 13:20:04 +00:00
|
|
|
func localAddress(server: GraphqlHttpServerRef): TransportAddress =
|
|
|
|
server.server.instance.localAddress()
|
|
|
|
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# Http combo helpers
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
proc newGraphqlHandler(): GraphqlHttpHandlerRef =
|
|
|
|
const schema = """type Query {name: String}"""
|
|
|
|
|
|
|
|
let ctx = GraphqlRef.new()
|
|
|
|
let r = ctx.parseSchema(schema)
|
|
|
|
if r.isErr:
|
|
|
|
debugEcho r.error
|
|
|
|
# continue with empty schema
|
|
|
|
|
|
|
|
GraphqlHttpHandlerRef.new(ctx)
|
|
|
|
|
|
|
|
proc installRPC(server: RpcServer) =
|
|
|
|
server.rpc("rpc_echo") do(input: int) -> string:
|
|
|
|
result = "hello: " & $input
|
|
|
|
|
|
|
|
proc setupComboServer(hooks: sink seq[RpcAuthHook]): HttpResult[NimbusHttpServerRef] =
|
|
|
|
var handlers: seq[RpcHandlerProc]
|
|
|
|
|
|
|
|
let qlServer = newGraphqlHandler()
|
|
|
|
handlers.addHandler(qlServer)
|
|
|
|
|
|
|
|
let wsServer = newRpcWebsocketHandler()
|
|
|
|
wsServer.installRPC()
|
|
|
|
handlers.addHandler(wsServer)
|
|
|
|
|
|
|
|
let rpcServer = newRpcHttpHandler()
|
|
|
|
rpcServer.installRPC()
|
|
|
|
handlers.addHandler(rpcServer)
|
|
|
|
|
|
|
|
let address = initTAddress("127.0.0.1:0")
|
|
|
|
newHttpServerWithParams(address, hooks, handlers)
|
|
|
|
|
|
|
|
createRpcSigsFromNim(RpcClient):
|
|
|
|
proc rpc_echo(input: int): string
|
|
|
|
|
2022-04-06 14:11:13 +00:00
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# Test Runners
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
proc runKeyLoader(noisy = true;
|
|
|
|
keyFile = jwtKeyFile; strippedFile = jwtKeyStripped) =
|
|
|
|
let
|
|
|
|
filePath = keyFile.findFilePath.value
|
|
|
|
fileInfo = keyFile.splitFile.name.split(".")[0]
|
|
|
|
|
|
|
|
strippedPath = strippedFile.findFilePath.value
|
|
|
|
strippedInfo = strippedFile.splitFile.name.split(".")[0]
|
|
|
|
|
|
|
|
dataDir = filePath.splitPath.head
|
|
|
|
localKeyFile = dataDir / jwtKeyCopy
|
|
|
|
|
|
|
|
dataDirCmdOpt = &"--data-dir={dataDir}"
|
|
|
|
jwtSecretCmdOpt = &"--jwt-secret={filePath}"
|
|
|
|
jwtStrippedCmdOpt = &"--jwt-secret={strippedPath}"
|
|
|
|
|
|
|
|
suite "EngineAuth: Load or generate shared secrets":
|
|
|
|
|
|
|
|
test &"Load shared key file {fileInfo}":
|
|
|
|
let
|
|
|
|
config = @[dataDirCmdOpt,jwtSecretCmdOpt].makeConfig
|
|
|
|
secret = fakeKey.fakeGenSecret.jwtSharedSecret(config)
|
|
|
|
lines = config.jwtSecret.get.string.readLines(1)
|
|
|
|
|
|
|
|
check secret.isOk
|
|
|
|
check 0 < lines.len
|
|
|
|
|
|
|
|
let
|
|
|
|
hexKey = "0x" & secret.value.UnGuardedKey.toHex
|
|
|
|
hexFake = "0x" & fakeKey.UnGuardedKey.toSeq.toHex
|
|
|
|
hexLine = lines[0].strip
|
|
|
|
|
|
|
|
noisy.say "***", "key=", hexKey
|
|
|
|
noisy.say " ", "text=", hexLine
|
|
|
|
noisy.say " ", "fake=", hexFake
|
|
|
|
|
|
|
|
# Compare key against tcontents of shared key file
|
|
|
|
check hexKey.cmpIgnoreCase(hexLine) == 0
|
|
|
|
|
|
|
|
# Just to make sure that there was no random generator used
|
|
|
|
check hexKey.cmpIgnoreCase(hexFake) != 0
|
|
|
|
|
|
|
|
test &"Load shared key file {strippedInfo}, missing 0x prefix":
|
|
|
|
let
|
|
|
|
config = @[dataDirCmdOpt,jwtStrippedCmdOpt].makeConfig
|
|
|
|
secret = fakeKey.fakeGenSecret.jwtSharedSecret(config)
|
|
|
|
lines = config.jwtSecret.get.string.readLines(1)
|
|
|
|
|
|
|
|
check secret.isOk
|
|
|
|
check 0 < lines.len
|
|
|
|
|
|
|
|
let
|
|
|
|
hexKey = secret.value.UnGuardedKey.toHex
|
|
|
|
hexFake = fakeKey.UnGuardedKey.toSeq.toHex
|
|
|
|
hexLine = lines[0].strip
|
|
|
|
|
|
|
|
noisy.say "***", "key=", hexKey
|
|
|
|
noisy.say " ", "text=", hexLine
|
|
|
|
noisy.say " ", "fake=", hexFake
|
|
|
|
|
|
|
|
# Compare key against tcontents of shared key file
|
|
|
|
check hexKey.cmpIgnoreCase(hexLine) == 0
|
|
|
|
|
|
|
|
# Just to make sure that there was no random generator used
|
|
|
|
check hexKey.cmpIgnoreCase(hexFake) != 0
|
|
|
|
|
|
|
|
test &"Generate shared key file, store it in {jwtKeyCopy}":
|
|
|
|
|
|
|
|
# Clean up after file generation
|
|
|
|
defer: localKeyFile.removeFile
|
|
|
|
|
|
|
|
# Maybe a stale left over
|
|
|
|
localKeyFile.removeFile
|
|
|
|
|
|
|
|
let
|
|
|
|
config = @[dataDirCmdOpt].makeConfig
|
|
|
|
secret = fakeKey.fakeGenSecret.jwtSharedSecret(config)
|
|
|
|
lines = localKeyFile.readLines(1)
|
|
|
|
|
|
|
|
check secret.isOk
|
|
|
|
|
|
|
|
let
|
|
|
|
hexKey = "0x" & secret.value.UnGuardedKey.toHex
|
|
|
|
hexLine = lines[0].strip
|
|
|
|
|
|
|
|
noisy.say "***", "key=", hexKey
|
|
|
|
noisy.say " ", "text=", hexLine
|
|
|
|
|
|
|
|
# Compare key against tcontents of shared key file
|
|
|
|
check hexKey.cmpIgnoreCase(hexLine) == 0
|
|
|
|
|
|
|
|
proc runJwtAuth(noisy = true; keyFile = jwtKeyFile) =
|
|
|
|
let
|
|
|
|
filePath = keyFile.findFilePath.value
|
|
|
|
fileInfo = keyFile.splitFile.name.split(".")[0]
|
|
|
|
|
|
|
|
dataDir = filePath.splitPath.head
|
|
|
|
|
|
|
|
dataDirCmdOpt = &"--data-dir={dataDir}"
|
|
|
|
jwtSecretCmdOpt = &"--jwt-secret={filePath}"
|
|
|
|
config = @[dataDirCmdOpt,jwtSecretCmdOpt].makeConfig
|
|
|
|
|
|
|
|
# The secret is just used for extracting the key, it would otherwise
|
|
|
|
# be hidden in the closure of the handler function
|
|
|
|
secret = fakeKey.fakeGenSecret.jwtSharedSecret(config)
|
|
|
|
|
|
|
|
# The wrapper contains the handler function with the captured shared key
|
2022-07-18 04:35:50 +00:00
|
|
|
authHook = secret.value.httpJwtAuth
|
|
|
|
|
|
|
|
const
|
2024-01-29 13:20:04 +00:00
|
|
|
serverAddress = initTAddress("127.0.0.1:0")
|
2022-07-18 04:35:50 +00:00
|
|
|
query = """{ __type(name: "ID") { kind }}"""
|
2022-04-06 14:11:13 +00:00
|
|
|
|
|
|
|
suite "EngineAuth: Http/rpc authentication mechanics":
|
2022-07-18 04:35:50 +00:00
|
|
|
let server = createServer(serverAddress, @[authHook])
|
|
|
|
server.start()
|
2022-04-06 14:11:13 +00:00
|
|
|
|
|
|
|
test &"JSW/HS256 authentication using shared secret file {fileInfo}":
|
|
|
|
# Just to make sure that we made a proper choice. Typically, all
|
|
|
|
# ingredients shoud have been tested, already in the preceeding test
|
|
|
|
# suite.
|
|
|
|
let
|
|
|
|
lines = config.jwtSecret.get.string.readLines(1)
|
|
|
|
hexKey = "0x" & secret.value.UnGuardedKey.toHex
|
|
|
|
hexLine = lines[0].strip
|
|
|
|
noisy.say "***", "key=", hexKey
|
|
|
|
noisy.say " ", "text=", hexLine
|
|
|
|
check hexKey.cmpIgnoreCase(hexLine) == 0
|
|
|
|
|
|
|
|
let
|
|
|
|
time = getTime().toUnix.uint64
|
|
|
|
req = secret.value.getHttpAuthReqHeader(time)
|
|
|
|
noisy.say "***", "request",
|
|
|
|
" Authorization=", req.getString("Authorization")
|
|
|
|
|
|
|
|
setTraceLevel()
|
|
|
|
|
|
|
|
# Run http authorisation request
|
2024-01-29 13:20:04 +00:00
|
|
|
let client = setupClient(server.localAddress)
|
2022-07-18 04:35:50 +00:00
|
|
|
let res = waitFor client.sendRequest(query, req.toList)
|
|
|
|
check res.isOk
|
|
|
|
if res.isErr:
|
|
|
|
noisy.say "***", res.error
|
|
|
|
return
|
|
|
|
|
|
|
|
let resp = res.get()
|
|
|
|
check resp.status == 200
|
|
|
|
check resp.reason == "OK"
|
|
|
|
check resp.response == """{"data":{"__type":{"kind":"SCALAR"}}}"""
|
2022-04-06 14:11:13 +00:00
|
|
|
|
|
|
|
setErrorLevel()
|
|
|
|
|
|
|
|
test &"JSW/HS256, ditto with protected header variant":
|
|
|
|
let
|
|
|
|
time = getTime().toUnix.uint64
|
|
|
|
req = secret.value.getHttpAuthReqHeader2(time)
|
|
|
|
|
|
|
|
# Assemble request header
|
|
|
|
noisy.say "***", "request",
|
|
|
|
" Authorization=", req.getString("Authorization")
|
|
|
|
|
|
|
|
setTraceLevel()
|
|
|
|
|
|
|
|
# Run http authorisation request
|
2024-01-29 13:20:04 +00:00
|
|
|
let client = setupClient(server.localAddress)
|
2022-07-18 04:35:50 +00:00
|
|
|
let res = waitFor client.sendRequest(query, req.toList)
|
|
|
|
check res.isOk
|
|
|
|
if res.isErr:
|
|
|
|
noisy.say "***", res.error
|
|
|
|
return
|
|
|
|
|
|
|
|
let resp = res.get()
|
|
|
|
check resp.status == 200
|
|
|
|
check resp.reason == "OK"
|
|
|
|
check resp.response == """{"data":{"__type":{"kind":"SCALAR"}}}"""
|
2022-04-06 14:11:13 +00:00
|
|
|
|
|
|
|
setErrorLevel()
|
|
|
|
|
2022-07-18 04:35:50 +00:00
|
|
|
waitFor server.closeWait()
|
|
|
|
|
2024-01-29 13:20:04 +00:00
|
|
|
suite "Test combo http server":
|
|
|
|
let res = setupComboServer(@[authHook])
|
|
|
|
if res.isErr:
|
|
|
|
debugEcho res.error
|
|
|
|
quit(QuitFailure)
|
|
|
|
|
|
|
|
let
|
|
|
|
server = res.get
|
|
|
|
time = getTime().toUnix.uint64
|
|
|
|
req = secret.value.getHttpAuthReqHeader(time)
|
|
|
|
|
|
|
|
server.start()
|
|
|
|
|
|
|
|
test "Graphql query no auth":
|
|
|
|
let client = setupClient(server.localAddress)
|
|
|
|
let res = waitFor client.sendRequest(query)
|
|
|
|
check res.isOk
|
|
|
|
let resp = res.get()
|
|
|
|
check resp.status == 403
|
|
|
|
check resp.reason == "Forbidden"
|
|
|
|
check resp.response == "Missing authorization token"
|
|
|
|
|
|
|
|
test "Graphql query with auth":
|
|
|
|
let client = setupClient(server.localAddress)
|
|
|
|
let res = waitFor client.sendRequest(query, req.toList)
|
|
|
|
check res.isOk
|
|
|
|
let resp = res.get()
|
|
|
|
check resp.status == 200
|
|
|
|
check resp.reason == "OK"
|
|
|
|
check resp.response == """{"data":{"__type":{"kind":"SCALAR"}}}"""
|
|
|
|
|
|
|
|
test "rpc query no auth":
|
|
|
|
let client = newRpcHttpClient()
|
|
|
|
waitFor client.connect("http://" & $server.localAddress)
|
|
|
|
try:
|
|
|
|
let res = waitFor client.rpc_echo(100)
|
|
|
|
discard res
|
|
|
|
check false
|
|
|
|
except ErrorResponse as exc:
|
|
|
|
check exc.msg == "Forbidden"
|
|
|
|
|
|
|
|
test "rpc query with uth":
|
|
|
|
proc authHeaders(): seq[(string, string)] =
|
|
|
|
req.toList
|
|
|
|
let client = newRpcHttpClient(getHeaders = authHeaders)
|
|
|
|
waitFor client.connect("http://" & $server.localAddress)
|
|
|
|
let res = waitFor client.rpc_echo(100)
|
|
|
|
check res == "hello: 100"
|
|
|
|
|
|
|
|
test "ws query no auth":
|
|
|
|
let client = newRpcWebSocketClient()
|
|
|
|
expect WSFailedUpgradeError:
|
|
|
|
waitFor client.connect("ws://" & $server.localAddress)
|
|
|
|
|
|
|
|
test "ws query with auth":
|
|
|
|
proc authHeaders(): seq[(string, string)] =
|
|
|
|
req.toList
|
|
|
|
let client = newRpcWebSocketClient(authHeaders)
|
|
|
|
waitFor client.connect("ws://" & $server.localAddress)
|
|
|
|
let res = waitFor client.rpc_echo(123)
|
|
|
|
check res == "hello: 123"
|
|
|
|
|
|
|
|
let res2 = waitFor client.rpc_echo(145)
|
|
|
|
check res2 == "hello: 145"
|
|
|
|
|
|
|
|
waitFor server.closeWait()
|
|
|
|
|
2022-04-06 14:11:13 +00:00
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# Main function(s)
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
proc jwtAuthMain*(noisy = defined(debug)) =
|
|
|
|
noisy.runKeyLoader
|
|
|
|
noisy.runJwtAuth
|
|
|
|
|
|
|
|
when isMainModule:
|
|
|
|
const
|
2022-04-07 09:37:35 +00:00
|
|
|
noisy = defined(debug)
|
2022-04-06 14:11:13 +00:00
|
|
|
|
|
|
|
setErrorLevel()
|
|
|
|
|
|
|
|
noisy.runKeyLoader
|
|
|
|
noisy.runJwtAuth
|
|
|
|
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# End
|
|
|
|
# ------------------------------------------------------------------------------
|