cURL
curl --request POST \ --url https://{host}/Agent/Crypto/GetAlgorithms \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{}'
{ "Algorithms": [ { "localName": "<string>", "namespace": "<string>", "securityStrength": 123, "safe": true, "slow": true, "pqc": true, "score": 123 } ] }
Allows the client to retrieve a list of available cryptographic algorithms on the server.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The body is of type object.
object
Success
Show child attributes