mirror of
https://github.com/dsward2/macSVG.git
synced 2026-03-02 18:23:58 +01:00
21 lines
527 B
Objective-C
Executable File
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
|