Rupesh
Rupesh

Reputation: 7906

iPhone: supported algorithm for Encryption /decryption

i am new to iPhone. i want to know which Encryption /decryption algorithm is supported by iPhone ? please suggest or provide me some helpful link

Upvotes: 1

Views: 1254

Answers (1)

Vladimir
Vladimir

Reputation: 170839

You can find supported standard encryption algorithms in CommonCryptor.h header:

enum {
    kCCAlgorithmAES128 = 0,
    kCCAlgorithmDES,        
    kCCAlgorithm3DES,       
    kCCAlgorithmCAST,       
    kCCAlgorithmRC4,
    kCCAlgorithmRC2     
};

Upvotes: 6

Related Questions