validateAndStripOtherKeys method

Future<void> validateAndStripOtherKeys(
  1. String type,
  2. String secret
)

Implementation

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