0

I am encrypting a string and use #import CommonCrypto/CommonKeyDerivation.h but xcode show error no such file found though I add security framework and I also use #import CommonCrypto/CommonCryptor.h but it shows no error.

I found file in openSource but not found any idea to use it in my code or download

Thanks in advance

Soniya
  • 600
  • 7
  • 34

1 Answers1

0

change your import statement to:

#import <CommonCrypto/CommonKeyDerivation.h>
Oded Regev
  • 4,065
  • 2
  • 38
  • 50