Welcome to mirror list, hosted at ThFree Co, Russian Federation.

MUCertificateViewController.h « Classes « Source - github.com/mumble-voip/mumble-iphoneos.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c6147d82607d402891f91afb1da1b18a260a46b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright 2009-2010 The 'Mumble for iOS' Developers. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

@class MKCertificate;

@interface MUCertificateViewController : UITableViewController

- (id) initWithPersistentRef:(NSData *)persistentRef;
- (id) initWithCertificate:(MKCertificate *)cert;
- (id) initWithCertificates:(NSArray *)certs;
- (void) dealloc;

- (void) showDataForCertificate:(MKCertificate *)cert;
- (void) updateCertificateDisplay;

@end