Apple's cryptography framework. Contains functions for generating commonly-used hashes and cryptographic functions.

learn more… | top users | synonyms

0
votes
0answers
37 views

iOS CommonCrypto reference

I'm trying to find some sort of reference for the Apple's CommonCrypto library, because apparently Apple doesn't have any obvious link for that, and the ones given by Google are outdated, like this ...
-2
votes
0answers
9 views

Mac OS programming: How to duplicate CCCryptorRef? [closed]

I have a need to duplicate a CCCryptorRef. It's opaque but I could not find an appropriate API to duplicate this object.
3
votes
2answers
107 views

Decrypting AES CTR Little Endian with PHP

I'm having trouble using PHP to decrypt strings that were encrypted with iOS 5.x's CommonCrypto libraries. Here are the parameters: Algorithm: AES-128 Mode: CTR Mode options: CTR Little-Endian ...
3
votes
2answers
134 views

Equivalent of spongycastle encryption for ios

This has stumped me - the following code uses SpongyCastle's encryption/decryption for Android - I am trying to achieve cross-platform encryption/decryption for iOS. The following code (from ...
0
votes
0answers
72 views

Issues with HMAC SHA1 implemenation in Objective-C

I'm trying to create a base64 signature for a rest request using the HMAC-SHA1 algorithm. I'm specifically using the SinglePlatform API, and the steps are: Strip off the domain portion of the ...
-1
votes
1answer
122 views

iTunes Connect Export Compliance with AES 256 & CommonCrypto [closed]

I want to use AES 256 encryption in my app with RNCryptor which uses the CommonCrypto framework of iOS SDK. I know that I have to get a BIS encryption registration for that (there are lots of posts ...
1
vote
0answers
101 views

Decryption using CCCrypt returns kCCSuccess with bad buffer length

I have an encrypted data stream (AES 128, CBC, PKCS7) that I'm trying to decrypt as it arrives. Occasionally I'll get a packet of length 334, which I then try to decrypt. When I do this on an iPhone ...
1
vote
0answers
183 views

objective c aes 128 encryption for a c# web service

So I'm trying to figure out how to make an objective c version of this as it's part of a wcf service security that was implemented. My main issue here is Idk where to begin as some articles/tutorials ...
1
vote
0answers
185 views

How can I generate an RSA public/private key-pair and use them to encrypt/decrypt NSData on iOS?

This is for an open source project which I am starting, so ideally I would like to use other open source works that I can include. For the curious: I'm looking to encrypt an AES key using RSA. I ...
1
vote
3answers
100 views

Reliable way to tell if wrong key is used in aes256 decryption

I have some code that I am using to encrypt and decrypt some strings in an ios application. The code involves the use of CCCrypt. Is there a reliable way to test the validity of a key used without ...
1
vote
0answers
97 views

Issues with commoncrypto api

I am using commoncrypto api for aes-ctr encryption/decryption. I am creating a commoncrypto object with the below code CCCryptorStatus status = CCCryptorCreateWithMode(kCCDecrypt, kCCModeCTR, ...
2
votes
1answer
76 views

Convert error codes to text in iOS

I have a wrapper for encrypting and decrypting using CommonCryptor. Occasionally the decryption process will fail, in which case I fill an error like so: if (result == kCCSuccess) { ...
0
votes
2answers
76 views

Is CCKeyDerivationPBKDF thread safe?

I'm using CCKeyDerivationPBKDF to generate and verify password hashes in a concurrent environment and I'd like to know whether it it thread safe. The documentation of the function doesn't mention ...
1
vote
0answers
87 views

CommonCrypto works differently in IPA archive than in debugger

I've been pulling my hair out over this one. I'm using CommonCrypto in my iOS application to encrypt data which I then send to a Windows server which decrypts it. This works perfectly in the Xcode ...
1
vote
1answer
352 views

AES interoperability of iOS and Java with CTR mode

I have encrypted a message with CTR mode in Java, and am trying to decrypt the message in iOS. However, my test program scrambles the last block when decrypted The code is as follows: + (NSData ...
0
votes
0answers
177 views

CommonCrypto in iOS [sqlite file encryption]

I'm using Core Data API in my iOS application. Also, I'm using the commoncrypto library (CCCrypt()) to encrypt/decrypt the database file(.sqlite file) that resides in the documents folder when the ...
0
votes
0answers
147 views

Saving and retrieving 3DES key from/to keychain makes decryption fail

The problem I'm facing is that when i use a plaintext NSString key and cast it to const void * to send to the CCCrypt function, both the encryption and decryption work fine. Following is the code for ...
0
votes
2answers
203 views

Working SHA1 code in iOS5 not working in iOS6

The following worked just fine with iOS5 as the base class but fails (SIGABRT) with iOS6. Could it be an OS thing or an architecture thing? Important to also note is the accompanying MD5 hash does ...
3
votes
2answers
386 views

Interoperability of AES CTR mode?

I use AES128 crypto in CTR mode for encryption, implemented for different clients (Android/Java and iOS/ObjC). The 16 byte IV used when encrypting a packet is formated like this: <11 byte ...
0
votes
1answer
825 views

How can I use a PKCS8 RSA DER Private Key in iOS?

At run time, my iOS application receives a file with a public-private RSA key-pair, generated by someone else's Java: KeyPairGenerator keygenerator; keygenerator = ...
1
vote
2answers
211 views

Is there a compatibility mode provided by OS X CommonCrypto for OpenSSL EVP_* calls (like there is for OpenSSL MD5 functions)?

Compiling one of my source files on Mac OS X10.7 and getting these deprecation warnings: xxx_evp.c:135:5: 'EVP_MD_CTX_init' is deprecated xxx_evp.c:137:9: 'EVP_DigestInit_ex' is deprecated ...
5
votes
2answers
611 views

CCKeyDerivationPBKDF on iOS5

I'm trying to write a password encryption function into my app, following this article. I wrote a function that runs the CCCalibratePBKDF function and outputs the number of rounds. const uint32_t ...
1
vote
1answer
459 views

AES/CFB8 cipher on iOS

I am trying to implement an AES/CFB8 streaming cipher on iOS. I believe that the way to accomplish this is to use the CommonCrypto library provided by Apple. All of the little documentation I have ...
0
votes
1answer
174 views

Replacing OpenSSL with native OSX Library

In our existing application, which is tightly coupled with the OpenSSL, we would like to make use of an OSX native crypto library. Related to this I have following questions: I believe OpenSSL does ...
1
vote
1answer
223 views

How to do asymmetric encryption/decryption with OSX 10.7+ without openssl?

Since openssl is deprecated in osx 10.7+, I'd like to switch from openssl to the internal osx keychain and crypto function. But now I am stuck on asymmetric encryption/decryption. How can I do ...
0
votes
1answer
328 views

iphone cbc encryption returning null

I have the following code inside the NSData+AES256 class. I am trying AES CBC encryption to a NSString with the following code. I have a key and a iv. But getting null in result. Can not find out ...
1
vote
2answers
183 views

How to create a PKCS12 blob with osx/iOS native security framework?

Is there a chance to generate a PKCS12 (.p12) blob without using openssl on mac/ios using the Security framework? Do i have to combine the X509,CA's and the RSA Key by my own or does the framework ...
1
vote
3answers
324 views

How to securely store an AES key on the iPhone

So I was going about implementing AES encryption of data on an iPhone app, when I was puzzled by how to store the encryption key. I can easily enough encrypt data using a user-entered password, the ...
1
vote
1answer
562 views

CCCrypt decryption results in -4304

When I encrypt a string then immediately decrypt, the CCCryptorStatus is -4304 and the resultant decoded string is not the proper length. Can anyone see what I might be doing wrong? //Encrypt ...
2
votes
1answer
721 views

Replace OpenSSL dependence with Common Crypto? (Mac App Store Receipt Validation)

My understanding is that OpenSSL is deprecated in OSX 10.7 in favor of Common Crypto, but I can't seem to get a good handle on how to transition from OpenSSL code to Common Crypto code. In ...
1
vote
0answers
544 views

SecKeyGetBlockSize or SecKeyRawVerify for Public Key throw EXC_BAD_ACCESS code=2

Upon trying to implement Security.Framework SecKeyRawVerify iOS function from Apple's example, programm halts with bad pointer error (EXC_BAD_ACCESS code=2). Any help or suggestions would be ...
2
votes
1answer
2k views

AES-256 encryption on iOS not producing same result as openssl

I have been looking and looking at this for hours. I am desperately trying to get iOS to encrypt a short piece of text using AES-256 encryption that can then be decrypted by openssl. Straight ...
0
votes
1answer
281 views

Mac OS X: kSecPublicKeyAttrs undeclared identifier

I'm trying to generate a RSA Key in my Mac OS X App, I use this code: CFStringRef privateTag = (CFStringRef)@"com.example.privatekey"; CFStringRef publicTag = (CFStringRef)@"com.example.publickey"; ...
0
votes
1answer
1k views

iOS CCCrypt kCCDecrypt using kCCAlgorithmAES128

Here is the code: - (NSData *) doCipher: (NSData *) plainData key: (NSData *) symmetricKey context: (CCOperation) encryptOrDecrypt padding: (CCOptions *) pkcs7 { // Initialization vector; dummy in ...
1
vote
1answer
278 views

I don't know how to md5 my password in iPhone ,or how to start

I don't know how to md5 my password in iPhone ,or how to start. I tried to know something like CommonCrypto.Will help? urgely for a suggestion~ thanks~
0
votes
2answers
1k views

How to compile and use CommonCrypto for iOS 4?

Since CCKeyDerivationPBKDF is not available until after iOS 5.0, people have suggested using the open source code for CommonCrypto available here: ...
7
votes
1answer
2k views

lib commonCrypto not available for iOS simulator?

I've been adding libCommonCrypto.dylib to my project to do md5 hash verification. Works all proper on the iPhone (iOS 5.1), but when I try to run it on the simulator, I get this error: ld: library ...
3
votes
1answer
3k views

When To Check the “This Application Uses Encryption” Box?

When submitting or updating an app, one question you are faced with is: Have you added or made changes to encryption features since you last uploaded a binary for this product? Image: My ...
5
votes
2answers
2k views

Openssl password to key?

For example, the command: openssl enc -aes-256-cbc -a -in test.txt -k pinkrhino -nosalt -p -out openssl_output.txt outputs something like: key = ...
1
vote
1answer
482 views

CommonCrypto alternative to PBKDF2

Since Apple has deprecated the use of openSSL in iOS I need an alternative to PBKDF2 in one of iOS Security frameworks. I tried to search CommonCrypto with no luck. Is there a fair alternative to ...
0
votes
2answers
565 views

Encryption of the audio file in Iphone

I want to encrypt the audio file how do i achieve it in the iPhone. Is there any framework to get this done. This is the code i am using to encrypt the file, NSData *inputData = [NSData ...
0
votes
1answer
462 views

Why does my initWithData return nil indicating an error after converting NSData to NSString returning from encrypting via CommonCrypto?

Here is my code: -(IBAction)encryptText:(id)sender { key = self.tvKey.text; CCCryptorStatus status = kCCSuccess; algorithm = kCCAlgorithmAES128; ...
3
votes
1answer
754 views

kSecRandomDefault not found?

I am using CommonCrypto for encryption on Mac OS 10.7. Isn't this framework built in? When I am generating random data: + (NSData *)randomDataOfLength:(size_t)length { NSMutableData *data = ...
1
vote
1answer
506 views

Using CommonCrypto to generate a salted key

This is how I have been generating my cryptographic keys until now: unsigned char *salt; //8 salt bytes were created earlier unsigned char *password; //password was obtained earlier int ...
0
votes
1answer
563 views

Confusion about Encryption in iOS

I'm a very newb programmer trying to write some iOS programs, and when I reached the part where I must encrypt my data, I ran into a misty and ill-documented wall. Apple apparently provides all the ...
2
votes
1answer
537 views

PyCrypto compatibility with CommonCrypto in CFB mode?

I'm trying to get somepython code to decrypt data that was encrypted using the OS X CommonCrypto APIs. There is little to no documentation on the exact options that CommonCrypto uses, so I'm needing ...
0
votes
1answer
347 views

I keep getting the wrong values for my PBKDF2 implementation

I'm trying to implement PBKDF2 and I keep getting the wrong result, not sure what the problem is... I'm using the common crypto implementation to check my results here is my test function #include ...
5
votes
3answers
3k views

PBKDF2 using CommonCrypto on iOS

I'm trying to use CommonCrypto to generate keys using PBKDF2 but I can't seem to import CommonCrypto/CommonKeyDerivation.h, I just errors that it is not found. Any ideas? edit: I should probably ...
1
vote
2answers
1k views

Anyone else having trouble with iOS 5 encryption?

Have a (rather complex) app that works fine on iOS 4 but fails on iOS 5 with a decryption problem. It's decrypting a SQLite DB page, and the last 16 bytes do not appear to be properly decrypted. ...
2
votes
1answer
1k views

Library not found for -lcommonCrypto

I need to link my ios 5 app with CommonCrypto. The problem is that I can't compile due to this error: 'Library not found for -lcommonCrypto'... How can I solve?

1 2