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

github.com/mumble-voip/mumblekit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/MumbleKit/MKCertificate.h')
-rw-r--r--src/MumbleKit/MKCertificate.h14
1 files changed, 1 insertions, 13 deletions
diff --git a/src/MumbleKit/MKCertificate.h b/src/MumbleKit/MKCertificate.h
index e793159..2eb2607 100644
--- a/src/MumbleKit/MKCertificate.h
+++ b/src/MumbleKit/MKCertificate.h
@@ -34,19 +34,7 @@
#define MKCertificateItemOrganization @"O"
#define MKCertificateItemSerialNumber @"serialNumber"
-@interface MKCertificate : NSObject {
- NSData *_derCert;
- NSData *_derPrivKey;
-
- NSDictionary *_subjectDict;
- NSDictionary *_issuerDict;
-
- NSDate *_notAfterDate;
- NSDate *_notBeforeDate;
-
- NSMutableArray *_emailAddresses;
- NSMutableArray *_dnsEntries;
-}
+@interface MKCertificate : NSObject
+ (MKCertificate *) certificateWithCertificate:(NSData *)cert privateKey:(NSData *)privkey;
+ (MKCertificate *) selfSignedCertificateWithName:(NSString *)name email:(NSString *)email;