| Class | Description |
|---|---|
| ECCPrivateKey |
ECC Private Key
keyInfo format: {
algorithm : "ECC",
curve : "secp256k1",
data : "..." // base64_encode()
}
|
| ECCPublicKey |
ECC Public Key
keyInfo format: {
algorithm : "ECC",
curve : "secp256k1",
data : "..." // base64_encode()
}
|
| RSAPrivateKey |
RSA Private Key
keyInfo format: {
algorithm : "RSA",
data : "..." // base64_encode()
}
|
| RSAPublicKey |
RSA Public Key
keyInfo format: {
algorithm : "RSA",
data : "..." // base64_encode()
}
|