| Field | Value |
|---|---|
| Name | signingCreateKey |
| Title | Create Signing Key |
| Description | Create a new Ed25519 key pair in the signing service. Private key stored encrypted server-side. Authenticated. |
Input Schema
{
"type": "object",
"required": ["passphrase"],
"properties": {
"passphrase": {
"type": "string",
"description": "Passphrase to encrypt the private key. Required for future operations with this key."
}
}
}Output Schema
{
"type": "object",
"properties": {
"publicKey": {
"type": "string",
"description": "Hex-encoded Ed25519 public key of the created key pair"
}
}
}