Thanks owlstead, I looked deeper into RNCryptor and found a solution.
First of all, after many searches, it seems that Zaph was right, and iOS does not provide GCM, but uses it in iOS. ref there: iOS Security feb 2014
-, RNCryptor GCM, AES256 CBC (Cipher Block Chaining), , HMAC + SHA1. .
, RNCryptor :
NSData *encryptedData = [RNEncryptor encryptData:yourData
withSettings:kRNCryptorAES256Settings
encryptionKey:encryptionKey
HMACKey:HMACKey
error:&error];
NSData *decryptedData = [RNDecryptor decryptData:encryptedData withEncryptionKey:encryptionKey HMACKey:HMACKey error:&decryptionError];
RNCryptor .
: AES256, : , , AES256, :