Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

AppStore approval and md5

I'm using md5 from <CommonCrypto/CommonDigest.h>.

I don't use it for encryption purposes.

I know that in submitting an app to AppStore, it's asked if the app uses encryption.

Is this the case to answer yes?

like image 888
Sefran Avatar asked Jun 09 '11 17:06

Sefran


2 Answers

MD5 is not an encryption algorithm, it's a hashing algorithm. Encryption has to be reversible.

like image 105
ceejayoz Avatar answered Oct 20 '22 16:10

ceejayoz


As it is not an encyrption, you can say "No" without hesitation.

I use CC_MD5 in my projects too. I always say "No" when asked if the app uses encryption just before submitting. None of them rejected so far.

like image 29
erkanyildiz Avatar answered Oct 20 '22 16:10

erkanyildiz