29 lines
1.1 KiB
Swift
29 lines
1.1 KiB
Swift
//
|
|
// Globals.swift
|
|
// pass
|
|
//
|
|
// Created by Mingshen Sun on 21/1/2017.
|
|
// Copyright © 2017 Bob Sun. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
import UIKit
|
|
|
|
class Globals {
|
|
static let documentPath = NSSearchPathForDirectoriesInDomains(.documentDirectory, .userDomainMask, true)[0];
|
|
static let libraryPath = NSSearchPathForDirectoriesInDomains(.libraryDirectory, .userDomainMask, true)[0];
|
|
static let pgpPublicKeyPath = "\(documentPath)/gpg_key.pub"
|
|
static let pgpPrivateKeyPath = "\(documentPath)/gpg_key"
|
|
|
|
static let sshPublicKeyURL = URL(fileURLWithPath: "\(documentPath)/ssh_key.pub")
|
|
static let sshPrivateKeyURL = URL(fileURLWithPath: "\(documentPath)/ssh_key")
|
|
|
|
static let repositoryPath = "\(libraryPath)/password-store"
|
|
static var passcodeConfiguration = PasscodeLockConfiguration()
|
|
static let version = Bundle.main.infoDictionary?["CFBundleShortVersionString"] as! String
|
|
|
|
static let red = UIColor(red:1.00, green:0.23, blue:0.19, alpha:1.0)
|
|
static let blue = UIColor(red:0.00, green:0.48, blue:1.00, alpha:1.0)
|
|
|
|
private init() { }
|
|
}
|