Interface CrossSigningStatus

The result of a call to CryptoApi.getCrossSigningStatus.

interface CrossSigningStatus {
    privateKeysCachedLocally: {
        masterKey: boolean;
        selfSigningKey: boolean;
        userSigningKey: boolean;
    };
    privateKeysInSecretStorage: boolean;
    publicKeysOnDevice: boolean;
}

Properties

privateKeysCachedLocally: {
    masterKey: boolean;
    selfSigningKey: boolean;
    userSigningKey: boolean;
}

True if the private keys are stored locally.

privateKeysInSecretStorage: boolean

True if the private keys are stored in the secret storage.

publicKeysOnDevice: boolean

True if the public master, self signing and user signing keys are available on this device.