We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e010b2e commit 2ea7d45Copy full SHA for 2ea7d45
crates/extensions/tedge-p11-server/src/service.rs
@@ -11,7 +11,8 @@ pub trait TedgeP11Service: Send + Sync {
11
12
/// Signs the message using the private key object on the token (denoted by uri).
13
fn sign(&self, request: SignRequestWithSigScheme) -> anyhow::Result<SignResponse>;
14
- /// Generate a new keypair, saving the private key on the token and returning the public key as BER.
+
15
+ /// Generate a new keypair, saving the private key on the token and returning the public key as PEM.
16
fn create_key(&self, uri: Option<&str>, params: CreateKeyParams) -> anyhow::Result<String>;
17
}
18
0 commit comments