This repository was archived by the owner on Feb 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSigner.swift
243 lines (219 loc) · 9.31 KB
/
Signer.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
//
// Created by Maxim Orlovsky on 2/19/21.
//
import Foundation
import Security
private enum SecurityItemNames: String {
case seed = "Citadel.seed"
case masterXpriv = "Citadel.master"
}
public struct SignerError: Error {
let localizedDescription: String
}
protocol KeychainStorage {
func checkKeychain(attrName: String) throws -> Bool
func readKeychain(attrName: String) throws -> String?
func writeKeychain(attrName: String, value: String) throws
}
protocol SignerAPI {
func createSeed() throws
func createScopedChain(derivation: String) throws -> String
}
extension CitadelVault: KeychainStorage {
public func checkKeychain(attrName: String) throws -> Bool {
let query = [
kSecClass: kSecClassGenericPassword,
kSecAttrAccount: attrName,
kSecUseDataProtectionKeychain: true,
] as [String: Any]
var foundItem: CFTypeRef?;
switch SecItemCopyMatching(query as CFDictionary, &foundItem) {
case errSecSuccess:
return true
case errSecItemNotFound:
return false
case let status:
let errorDetails: String
if let details = SecCopyErrorMessageString(status, nil) {
errorDetails = "keychain lookup for item `\(attrName)` has failed: \(details)"
} else {
errorDetails = "keychain lookup for item `\(attrName)` has failed with OSStatus=\(status)"
}
print(errorDetails)
throw SignerError(localizedDescription: errorDetails)
}
}
public func readKeychain(attrName: String) throws -> String? {
let query = [
kSecClass: kSecClassGenericPassword,
kSecAttrAccount: attrName,
kSecUseDataProtectionKeychain: true,
kSecReturnData: true
] as [String: Any]
var foundItem: CFTypeRef?;
print("Reading item \(attrName) from the default keychain")
let status = SecItemCopyMatching(query as CFDictionary, &foundItem)
switch status {
case errSecSuccess:
guard let data = foundItem as? Data,
let stringRepr = String(data: data, encoding: .utf8)
else {
let errorDetails = "wrong encoding of \(attrName) in the default keychain"
print(errorDetails)
throw SignerError(localizedDescription: errorDetails)
}
return stringRepr
case errSecItemNotFound:
print("Item \(attrName) is not found in the default keychain")
return nil
case let status:
let errorDetails: String
if let details = SecCopyErrorMessageString(status, nil) {
errorDetails = "keychain read failure for `\(attrName)` item: \(details)"
} else {
errorDetails = "keychain read failure for `\(attrName)` item with OSStatus=\(status)"
}
print(errorDetails)
throw SignerError(localizedDescription: errorDetails)
}
}
public func writeKeychain(attrName: String, value: String) throws {
let query = [
kSecClass: kSecClassGenericPassword,
kSecAttrAccount: attrName,
kSecAttrAccessible: kSecAttrAccessibleWhenUnlocked,
kSecUseDataProtectionKeychain: true,
kSecValueData: value.data(using: String.Encoding.utf8)!
] as [String: Any]
let status = SecItemAdd(query as CFDictionary, nil)
if status != errSecSuccess {
let errorDetails: String
if let details = SecCopyErrorMessageString(status, nil) {
errorDetails = "error writing item \(attrName) to the keychain: \(details)"
} else {
errorDetails = "error writing item \(attrName) to the keychain with OSStatus=\(status)"
}
print(errorDetails)
throw SignerError(localizedDescription: errorDetails)
}
}
}
extension CitadelVault: SignerAPI {
internal func createSeed() throws {
print("Initializing seed")
if try self.checkKeychain(attrName: SecurityItemNames.seed.rawValue) {
print("Existing seed found")
return // We already have a seed phrase
}
print("Creating entropy for mnemonic")
let result = bip39_mnemonic_create(nil, BIP39_MNEMONIC_TYPE_WORDS_12);
if !is_success(result) {
let errorDetails = "Unable to generate seed: \(String(cString: result.details.error))"
print(errorDetails)
throw SignerError(localizedDescription: errorDetails)
}
var seedPhrase = String(cString: result.details.data)
do {
try self.writeKeychain(attrName: SecurityItemNames.seed.rawValue, value: seedPhrase)
} catch {
let errorDetails = "Unable to store seed information. Caused by: \(error.localizedDescription)"
print(errorDetails)
throw SignerError(localizedDescription: errorDetails)
}
defer {
seedPhrase.safelyWipe()
}
print("Creating master extended private key")
let xpriv_result = bip39_master_xpriv(UnsafeMutablePointer(mutating: result.details.data), nil, true, self.network != .mainnet)
if !is_success(xpriv_result) {
let errorDetails = "Unable to generate master extended private key from seed data. Error by seed generator: \(String(cString: xpriv_result.details.error))"
print(errorDetails)
throw SignerError(localizedDescription: errorDetails)
}
var xpriv = String(cString: xpriv_result.details.data)
do {
try self.writeKeychain(attrName: SecurityItemNames.masterXpriv.rawValue, value: xpriv)
} catch {
let errorDetails = "Unable to store master private key information. Caused by: \(error.localizedDescription)";
print(errorDetails)
throw SignerError(localizedDescription: errorDetails)
}
xpriv.safelyWipe()
result_destroy(xpriv_result)
}
internal func createScopedChain(derivation: String) throws -> String {
print("Creating identity private key")
guard var master = try self.readKeychain(attrName: SecurityItemNames.masterXpriv.rawValue) else {
print("Unable to find master extended private key")
throw SignerError(localizedDescription: "Unable to find master extended private key")
}
defer {
master.safelyWipe()
}
print("Seed found, deriving scoped private key from it for \(derivation)")
let xpriv_result = bip32_scoped_xpriv(master.cPtr(), false, derivation)
if !is_success(xpriv_result) {
let errorDetails = String(cString: xpriv_result.details.error);
result_destroy(xpriv_result)
print("Derivation failed: \(errorDetails)")
throw SignerError(localizedDescription: errorDetails)
}
var xpriv = String(cString: xpriv_result.details.data)
defer {
xpriv.safelyWipe()
result_destroy(xpriv_result)
}
print("Creating identity pubkeychain")
let pubkeychain_result = bip32_pubkey_chain_create(master.cPtr(), true, derivation)
defer {
result_destroy(pubkeychain_result)
}
if !is_success(pubkeychain_result) {
let failure = String(cString: pubkeychain_result.details.error);
print("Pubkeychain creation failed: \(failure)")
throw SignerError(localizedDescription: failure)
}
let pubkeyChain = String(cString: pubkeychain_result.details.data)
print("Created pubkeychain: \(pubkeyChain)")
print("Storing scoped private key")
do {
try self.writeKeychain(attrName: pubkeyChain, value: xpriv)
} catch {
let errorDetails = "Unable to store identity private key information. Caused by: \(error.localizedDescription)";
print(errorDetails)
throw SignerError(localizedDescription: errorDetails)
}
return pubkeyChain
}
internal func sign(psbt: String) throws -> String {
guard var master = try self.readKeychain(attrName: SecurityItemNames.masterXpriv.rawValue) else {
print("Unable to find master extended private key")
throw SignerError(localizedDescription: "Unable to find master extended private key")
}
defer {
master.safelyWipe()
}
let signature_result = psbt_sign(psbt, master, false);
defer {
result_destroy(signature_result)
}
if !is_success(signature_result) {
let failure = String(cString: signature_result.details.error);
print("PSBT signature creation failed: \(failure)")
throw SignerError(localizedDescription: failure)
}
let signedPsbt = String(cString: signature_result.details.data)
print("Created signed PSBT: \(signedPsbt)")
return signedPsbt
}
}
extension String {
mutating func safelyWipe() {
withUnsafeMutableBytes(of: &self) { pointer in
pointer.copyBytes(from: [UInt8](repeating: 0, count: pointer.count))
}
}
mutating func cPtr() -> UnsafeMutablePointer<Int8>? {
UnsafeMutablePointer(mutating: (self as NSString).utf8String)
}
}