IdentityKey
public final class IdentityKey
A public-private key pair usable for signing, representing an end user identity in an end-to-end encrypted messaging system.
This API is deprecated and will be removed in a future release.
Summary
Constants |
|
|---|---|
static final int |
This field is deprecated. This API is deprecated and will be removed in a future release. |
static final int |
This field is deprecated. This API is deprecated and will be removed in a future release. |
Public methods |
|
|---|---|
static final @NonNull IdentityKey |
@WorkerThreadThis method is deprecated. This API is deprecated and will be removed in a future release. |
boolean |
This method is deprecated. This API is deprecated and will be removed in a future release. |
final @NonNull byte[] |
This method is deprecated. This API is deprecated and will be removed in a future release. |
final @NonNull byte[] |
This method is deprecated. This API is deprecated and will be removed in a future release. |
final int |
This method is deprecated. This API is deprecated and will be removed in a future release. |
int |
This method is deprecated. This API is deprecated and will be removed in a future release. |
Constants
IDENTITY_KEY_TYPE_ED25519
public static final int IDENTITY_KEY_TYPE_ED25519 = 6
A signing key on Ed25519. The value matches https://www.iana.org/assignments/cose/cose.xhtml#algorithms
IDENTITY_KEY_TYPE_RESERVED
public static final int IDENTITY_KEY_TYPE_RESERVED = 0
The default signing key type, which should not be used. This is required to match https://www.iana.org/assignments/cose/cose.xhtml#algorithms
Public methods
createFromPrf
@WorkerThread
public static final @NonNull IdentityKeycreateFromPrf(@NonNull byte[] prf, byte[] salt, int keyType)
Creates a IdentityKey, a public/private key pair usable for signing. It is intended for use with the WebAuthn PRF extension (https://w3c.github.io/webauthn/#prf-extension). The generated IdentityKey is deterministic given prf and salt, thus the prf value must be kept secret. Currently, only Ed25519 is supported as a key type.
This API is deprecated and will be removed in a future release.
| Parameters | |
|---|---|
@NonNull byte[] prf |
The PRF output of WebAuthn used in the key derivation. |
byte[] salt |
An optional salt used in the key derivation. |
int keyType |
The type of IdentityKey to generate, e.g. Ed25519. |
| Returns | |
|---|---|
@NonNull IdentityKey |
a |
| Throws | |
|---|---|
IllegalArgumentException |
if the key type is not supported. |
getPrivate
public final @NonNull byte[]getPrivate()
The private key, stored as a byte array.
getPublic
public final @NonNull byte[]getPublic()
The public key, stored as a byte array.
getType
public final int getType()The type of signing key, e.g. Ed25519.