move variables into smaller scope
This commit is contained in:
parent
f0c21dd880
commit
c4f81c16eb
1 changed files with 2 additions and 2 deletions
|
|
@ -420,9 +420,9 @@ public class PasswordStore {
|
||||||
}
|
}
|
||||||
|
|
||||||
public func encrypt(password: Password, keyID: String? = nil) throws -> Data {
|
public func encrypt(password: Password, keyID: String? = nil) throws -> Data {
|
||||||
|
if Defaults.isEnableGPGIDOn {
|
||||||
let encryptedDataPath = password.fileURL(in: storeURL)
|
let encryptedDataPath = password.fileURL(in: storeURL)
|
||||||
let keyID = keyID ?? findGPGID(from: encryptedDataPath)
|
let keyID = keyID ?? findGPGID(from: encryptedDataPath)
|
||||||
if Defaults.isEnableGPGIDOn {
|
|
||||||
return try PGPAgent.shared.encrypt(plainData: password.plainData, keyID: keyID)
|
return try PGPAgent.shared.encrypt(plainData: password.plainData, keyID: keyID)
|
||||||
}
|
}
|
||||||
return try PGPAgent.shared.encrypt(plainData: password.plainData)
|
return try PGPAgent.shared.encrypt(plainData: password.plainData)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue