validateAndStripOtherKeys method
Implementation
Future<void> validateAndStripOtherKeys(
String type,
String secret, {
bool isDefaultKey = true,
}) async {
final privateKey = this.privateKey;
if (privateKey == null) {
throw Exception('SSSS not unlocked');
}
await ssss.validateAndStripOtherKeys(
type,
secret,
keyId,
privateKey,
isDefaultKey: isDefaultKey,
);
}