Class Keys
- Namespace
- Vonage.Applications
- Assembly
- Vonage.dll
Represents the cryptographic keys for an application, used for JWT authentication.
public class Keys
- Inheritance
-
Keys
- Inherited Members
Properties
PrivateKey
The private key in PEM format. Only returned when creating a new application. Store this securely as it cannot be retrieved again.
[JsonProperty("private_key")]
public string PrivateKey { get; set; }
Property Value
PublicKey
The public key in PEM format. Used to verify JWTs signed with the private key.
[JsonProperty("public_key")]
public string PublicKey { get; set; }