Files
2016-09-15 10:13:52 -05:00

21 lines
527 B
Objective-C
Executable File

#import <Cocoa/Cocoa.h>
#import <Security/Security.h>
@interface DDKeychain : NSObject
{
}
+ (NSString *)passwordForHTTPServer;
+ (BOOL)setPasswordForHTTPServer:(NSString *)password;
+ (void)createNewIdentity;
+ (NSArray *)SSLIdentityAndCertificates;
+ (NSString *)applicationTemporaryDirectory;
+ (NSString *)stringForSecExternalFormat:(SecExternalFormat)extFormat;
+ (NSString *)stringForSecExternalItemType:(SecExternalItemType)itemType;
+ (NSString *)stringForSecKeychainAttrType:(SecKeychainAttrType)attrType;
@end