You've already forked matrix-js-sdk
mirror of
https://github.com/matrix-org/matrix-js-sdk.git
synced 2025-11-26 17:03:12 +03:00
Add method to check whether cross-signing has keys
This commit is contained in:
@@ -964,6 +964,14 @@ function wrapCryptoFuncs(MatrixClient, names) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Check whether we already have cross-signing keys for the current user.
|
||||||
|
* The cross-signing API is currently UNSTABLE and may change without notice.
|
||||||
|
*
|
||||||
|
* @function module:client~MatrixClient#doesCrossSigningHaveKeys
|
||||||
|
* @return {boolean} Whether we have keys.
|
||||||
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Generate new cross-signing keys.
|
* Generate new cross-signing keys.
|
||||||
* The cross-signing API is currently UNSTABLE and may change without notice.
|
* The cross-signing API is currently UNSTABLE and may change without notice.
|
||||||
@@ -1018,6 +1026,7 @@ function wrapCryptoFuncs(MatrixClient, names) {
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
wrapCryptoFuncs(MatrixClient, [
|
wrapCryptoFuncs(MatrixClient, [
|
||||||
|
"doesCrossSigningHaveKeys",
|
||||||
"resetCrossSigningKeys",
|
"resetCrossSigningKeys",
|
||||||
"getCrossSigningId",
|
"getCrossSigningId",
|
||||||
"getStoredCrossSigningForUser",
|
"getStoredCrossSigningForUser",
|
||||||
|
|||||||
@@ -101,6 +101,10 @@ export class CrossSigningInfo extends EventEmitter {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
hasKeys() {
|
||||||
|
return Object.keys(this.keys).length > 0;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get the ID used to identify the user
|
* Get the ID used to identify the user
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -328,6 +328,15 @@ Crypto.prototype.checkPrivateKey = function(privateKey, expectedPublicKey) {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Check whether we already have cross-signing keys for the current user.
|
||||||
|
*
|
||||||
|
* @return {boolean} Whether we have keys.
|
||||||
|
*/
|
||||||
|
Crypto.prototype.doesCrossSigningHaveKeys = function() {
|
||||||
|
return this._crossSigningInfo.hasKeys();
|
||||||
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Generate new cross-signing keys.
|
* Generate new cross-signing keys.
|
||||||
*
|
*
|
||||||
|
|||||||
Reference in New Issue
Block a user