change sshPublicKeyPath to sshPublicKeyURL

This commit is contained in:
Bob Sun 2017-02-08 19:31:42 +08:00
parent b73605ee9e
commit 7effaa841a
No known key found for this signature in database
GPG key ID: 1F86BA2052FED3B4
4 changed files with 8 additions and 8 deletions

View file

@ -11,8 +11,8 @@ import Foundation
class Globals {
static let documentPath = NSSearchPathForDirectoriesInDomains(.documentDirectory, .userDomainMask, true)[0];
static let secringPath = "\(documentPath)/secring.gpg"
static let sshPublicKeyPath = URL(fileURLWithPath: "\(documentPath)/ssh_key.pub")
static let sshPrivateKeyPath = URL(fileURLWithPath: "\(documentPath)/ssh_key")
static let sshPublicKeyURL = URL(fileURLWithPath: "\(documentPath)/ssh_key.pub")
static let sshPrivateKeyURL = URL(fileURLWithPath: "\(documentPath)/ssh_key")
static var passcodeConfiguration = PasscodeLockConfiguration()
private init() { }
}