MYCrypto+Cocoa.h
author snej@snej.local
Tue Apr 14 18:34:52 2009 -0700 (2009-04-14)
changeset 11 3568d5fd4b6a
permissions -rw-r--r--
* The build process runs Doxygen only if it's installed (i.e. on the shell search path).
* Added instructions to the README on setting up a named Source Tree for MYUtilities.
* Changed the RSA key size in MYCryptoTest to 2048 and made it a named constant.
     1 //
     2 //  MYCrypto+Cocoa.h
     3 //  MYCrypto
     4 //
     5 //  Created by Jens Alfke on 4/10/09.
     6 //  Copyright 2009 Jens Alfke. All rights reserved.
     7 //
     8 
     9 #import <SecurityInterface/SFChooseIdentityPanel.h>
    10 @class MYIdentity;
    11 
    12 
    13 @interface SFChooseIdentityPanel (MYCrypto)
    14 
    15 - (NSInteger)my_runModalForIdentities:(NSArray *)myIdentitObjects
    16                               message:(NSString *)message;
    17 
    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;
    24 
    25 - (MYIdentity*) my_identity;
    26 
    27 @end