func testDecryptKeyWithWrongPassPhrase() async {
do {
_ = try await core.decryptKey(armoredPrv: TestData.k0.prv, passphrase: "wrong")
XCTFail("Should have thrown above")
} catch {
Logger.logDebug("catched \(error)")
return
}
XCTFail("Should have thrown above")
}