- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Function for assembling and signing an ACME JOSE request.
- Since:
- 5.0.0
-
Method Summary
Modifier and TypeMethodDescriptioncreateRequest(URL url, JSONBuilder payload, String nonce) Creates an ACME JOSE request.
-
Method Details
-
createRequest
Creates an ACME JOSE request.Implementors can use
JoseUtils.createJoseRequest(URL, KeyPair, JSONBuilder, String, String)without giving the signingKeyPairout of their control.- Parameters:
url-URLof the ACME callpayload- ACME JSON payload. Ifnull, a POST-as-GET request is generated instead.nonce- Nonce to be used.nullif no nonce is to be used in the JOSE header.- Returns:
- JSON structure of the JOSE request, ready to be sent.
- See Also:
-