Add beta distrubution channel

This commit is contained in:
Mingshen Sun 2020-07-19 18:16:16 -07:00
parent 0bbda5a4b0
commit a92940e610
No known key found for this signature in database
GPG key ID: 1F86BA2052FED3B4
58 changed files with 1065 additions and 252 deletions

View file

@ -1,22 +0,0 @@
//
// PGPInterface.swift
// passKit
//
// Created by Danny Moesch on 08.09.19.
// Copyright © 2019 Bob Sun. All rights reserved.
//
protocol PGPInterface {
func decrypt(encryptedData: Data, keyID: String, passphrase: String) throws -> Data?
func encrypt(plainData: Data, keyID: String) throws -> Data
func containsPublicKey(with keyID: String) -> Bool
func containsPrivateKey(with keyID: String) -> Bool
var keyID: [String] { get }
var shortKeyID: [String] { get }
}