Added MYParsedCertificate, for working with the innards of X.509 certs. Currently it can parse cert data, extract the public key, and verify the signature. More to come.
5 // Created by Jens Alfke on 4/10/09.
6 // Copyright 2009 Jens Alfke. All rights reserved.
9 #import <SecurityInterface/SFChooseIdentityPanel.h>
13 @interface SFChooseIdentityPanel (MYCrypto)
15 - (NSInteger)my_runModalForIdentities:(NSArray *)myIdentitObjects
16 message:(NSString *)message;
18 - (void)my_beginSheetForWindow:(NSWindow *)docWindow
19 modalDelegate:(id)delegate
20 didEndSelector:(SEL)didEndSelector
21 contextInfo:(void *)contextInfo
22 identities:(NSArray *)myIdentitObjects
23 message:(NSString *)message;
25 - (MYIdentity*) my_identity;