KeychainStasherProtocol.h
1 #ifndef KeychainStasherProtocol_h 2 #define KeychainStasherProtocol_h 3 4 #import <Foundation/Foundation.h> 5 6 @protocol KeychainStasherProtocol 7 8 - (void)stashKey:(NSData*)key withReply:(void (^)(NSError*))reply; 9 - (void)loadKeyWithReply:( void (^)(NSData*, NSError*))reply; 10 11 @end 12 13 #endif /* KeychainStasherProtocol_h */