mirror of
https://github.com/wu736139669/Monkey-Test.git
synced 2026-08-06 06:14:53 +00:00
21 lines
527 B
Objective-C
21 lines
527 B
Objective-C
#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
|