15     #define CCOptions uint32_t 
   30 - (NSData *)encryptedAES128DataWithKey:(NSData *)key;
 
   31 - (NSData *)encryptedAES256DataWithKey:(NSData *)key;
 
   32 - (NSData *)encrypted3DESDataWithKey:(NSData *)key;
 
   36 - (NSData *)encryptedAES128DataWithKey:(NSData *)key options:(
CCOptions)options;
 
   37 - (NSData *)encryptedAES192DataWithKey:(NSData *)key options:(
CCOptions)options;
 
   38 - (NSData *)encryptedAES256DataWithKey:(NSData *)key options:(
CCOptions)options;
 
   39 - (NSData *)encryptedDESDataWithKey:(NSData *)key options:(
CCOptions)options;
 
   40 - (NSData *)encrypted3DESDataWithKey:(NSData *)key options:(
CCOptions)options;
 
   41 - (NSData *)encryptedCastDataWithKey:(NSData *)key options:(
CCOptions)options;
 
   42 - (NSData *)encryptedRC2DataWithKey:(NSData *)key options:(
CCOptions)options;
 
   43 - (NSData *)encryptedRC4DataWithKey:(NSData *)key options:(
CCOptions)options;
 
   44 #if __MAC_OS_X_VERSION_MAX_ALLOWED >= 1080 
   45 - (NSData *)encryptedBlowfishDataWithKey:(NSData *)key options:(
CCOptions)options;
 
   53 - (NSData *)decryptedAES128DataWithKey:(NSData *)key;
 
   54 - (NSData *)decryptedAES256DataWithKey:(NSData *)key;
 
   55 - (NSData *)decrypted3DESDataWithKey:(NSData *)key;
 
   59 - (NSData *)decryptedAES128DataWithKey:(NSData *)key options:(
CCOptions)options;
 
   60 - (NSData *)decryptedAES192DataWithKey:(NSData *)key options:(
CCOptions)options;
 
   61 - (NSData *)decryptedAES256DataWithKey:(NSData *)key options:(
CCOptions)options;
 
   62 - (NSData *)decryptedDESDataWithKey:(NSData *)key options:(
CCOptions)options;
 
   63 - (NSData *)decrypted3DESDataWithKey:(NSData *)key options:(
CCOptions)options;
 
   64 - (NSData *)decryptedCastDataWithKey:(NSData *)key options:(
CCOptions)options;
 
   65 - (NSData *)decryptedRC2DataWithKey:(NSData *)key options:(
CCOptions)options;
 
   66 #if __MAC_OS_X_VERSION_MAX_ALLOWED >= 1080 
   67 - (NSData *)decryptedBlowfishDataWithKey:(NSData *)key options:(
CCOptions)options;
 
   77 - (NSData *)encryptedAES128DataWithKey:(NSString *)key;
 
   78 - (NSData *)encryptedAES256DataWithKey:(NSString *)key;
 
   79 - (NSData *)encrypted3DESDataWithKey:(NSString *)key;
 
   89 - (NSString *)decryptedAES128StringWithKey:(NSString *)key;
 
   90 - (NSString *)decryptedAES256StringWithKey:(NSString *)key;
 
   91 - (NSString *)decrypted3DESStringWithKey:(NSString *)key;
 
CommonCryptor NSString to NSData encryption shortcuts. 
Definition: NSACommonCrypto.h:75
 
CommonCryptor NSData to NSString decryption shortcuts. 
Definition: NSACommonCrypto.h:87
 
CommonCryptor wrapper. 
Definition: NSACommonCrypto.h:24
 
#define CCOptions
Definition: NSACommonCrypto.h:15