Account creation & Authorization
ACME account
ACME Account creation and authorization
{
"kty" : "EC",
"crv" : "P-256",
"x" : "<EC pubkey X point>",
"y" : "<EC pubkey Y point>",
"kid" : "<Human-readable Key Identifier string>"
}POST https://stica.peeringhub.io/acme/new-account
Content-Type: application/jose+json
Content-Length: 512
{
"protected" : BASE64URL(
{
"alg" : "ES256",
"nonce" : "ABECF2EDB773493ABC9C6E000420DBEC",
"url" : "https://stica.peeringhub.io/acme/new-account",
"jwk": {
"kty" : "EC",
"crv" : "P-256",
"x" : "4nHODmypbnfKdJd-IxbMsLwOtJqC0fPysqKFu8cssEY",
"y" : "u5McBHfPXkFvlHtFM38GEmMiv2owHxPawpWfH17Y0MY",
"kid" : "My key"
}
}
),
"payload" : "",
"signature" : "<base64url-encoded signature>"
}Last updated