The UCWRecoverKey class allows you to import multiple recovery key shares to recover the private keys.
Parameters
The ID of the TSS key share group used to recover the private key.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
let tssKeyShareGroupID = "gjRIvhmnDfpcGrzjOABE"
var recoverKey: UCWRecoverKey?
do {
recoverKey = try UCWRecoverKey(tssKeyShareGroupID: tssKeyShareGroupID)
} catch {
print("Error: \(error)")
}
const String tssKeyShareGroupID = "gjRIvhmnDfpcGrzjOABE";
UCWRecoverKey? recoverKey;
try {
recoverKey = UCWRecoverKey(tssKeyShareGroupID: tssKeyShareGroupID);
} catch (error) {
print("Error: $error");
}
This operation creates an instance of the UCWRecoverKey class.
public init(tssKeyShareGroupID: String)
UCWRecoverKey({required this.tssKeyShareGroupID});
let tssKeyShareGroupID = "gjRIvhmnDfpcGrzjOABE"
var recoverKey: UCWRecoverKey?
do {
recoverKey = try UCWRecoverKey(tssKeyShareGroupID: tssKeyShareGroupID)
} catch {
print("Error: \(error)")
}
const String tssKeyShareGroupID = "gjRIvhmnDfpcGrzjOABE";
UCWRecoverKey? recoverKey;
try {
recoverKey = UCWRecoverKey(tssKeyShareGroupID: tssKeyShareGroupID);
} catch (error) {
print("Error: $error");
}
Was this page helpful?