Command Line Interface (CLI) Usage

The AnkaSecure CLI lets you interact directly with the server to generate keys, encrypt/decrypt files, sign/verify data, re-encrypt, re-sign, and more. This page lists all commands and explains how the CLI is configured.

CLI Configuration: cli.properties

The CLI reads its endpoint settings (host, port, TLS), client credentials, and more from a cli.properties file. For example:

cli.properties ------------------------------------------------------------------------------- ############################################################################### # CLI AUTHENTICATION CREDENTIALS ############################################################################### clientId=myAppId clientSecret=myAppSecret ############################################################################### # OPENAPI SERVER VARIABLES # These define the scheme (http/https), host, and port # that match your @OpenAPIDefinition's parametric server #0 ############################################################################### openapi.scheme=https openapi.host=demo.ankatech.co openapi.port=443 openapi.insecureSkipTlsVerify=true ############################################################################### # TIMEOUTS (in milliseconds) # Adjust to override the defaults: ############################################################################### openapi.connectTimeoutMs=10000 openapi.readTimeoutMs=30000 openapi.writeTimeoutMs=30000 ############################################################################### # PROXY SETTINGS (if needed): ############################################################################### #openapi.proxyHost=proxy.mycompany.com #openapi.proxyPort=8080 #openapi.proxyUser=someUser #openapi.proxyPassword=somePassword ############################################################################### # PROGRESS BAR FOR LARGE FILE UPLOADS # Accepts "true" or "false" (default = false). ############################################################################### openapi.enableProgressBar=false

The CLI automatically reads this file if placed in the same directory. That way, you do not need to manually log in for each command; it authenticates using clientId / clientSecret behind the scenes.


List of CLI Commands

Below are all CLI commands supported by AnkaSecure. Adjust file paths, aliases, or parameters as needed.

That’s the full set! Refer to the Use Cases page for scenario-by-scenario CLI examples, or check SecureCoreCLIIntegrationTest in your code for deeper automated tests.