NCEndToEndEncryption.m 46 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395
  1. //
  2. // NCEndToEndEncryption.m
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 19/09/17.
  6. // Copyright © 2017 Marino Faggiana. All rights reserved.
  7. //
  8. // Author Marino Faggiana <marino.faggiana@nextcloud.com>
  9. //
  10. // This program is free software: you can redistribute it and/or modify
  11. // it under the terms of the GNU General Public License as published by
  12. // the Free Software Foundation, either version 3 of the License, or
  13. // (at your option) any later version.
  14. //
  15. // This program is distributed in the hope that it will be useful,
  16. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. // GNU General Public License for more details.
  19. //
  20. // You should have received a copy of the GNU General Public License
  21. // along with this program. If not, see <http://www.gnu.org/licenses/>.
  22. //
  23. #import "NCEndToEndEncryption.h"
  24. #import "NCBridgeSwift.h"
  25. #import "CCUtility.h"
  26. #import <CommonCrypto/CommonDigest.h>
  27. #import <CommonCrypto/CommonKeyDerivation.h>
  28. #import <OpenSSL/OpenSSL.h>
  29. #define addName(field, value) X509_NAME_add_entry_by_txt(name, field, MBSTRING_ASC, (unsigned char *)value, -1, -1, 0); NSLog(@"%s: %s", field, value);
  30. #define IV_DELIMITER_ENCODED_OLD @"fA=="
  31. #define IV_DELIMITER_ENCODED @"|"
  32. #define PBKDF2_KEY_LENGTH 256
  33. //#define PBKDF2_SALT @"$4$YmBjm3hk$Qb74D5IUYwghUmzsMqeNFx5z0/8$"
  34. #define ASYMMETRIC_STRING_TEST @"Nextcloud a safe home for all your data"
  35. #define fileNameCertificate @"cert.pem"
  36. #define fileNameCSR @"csr.pem"
  37. #define fileNamePrivateKey @"privateKey.pem"
  38. #define fileNamePubliceKey @"publicKey.pem"
  39. #define streamBuffer 1024
  40. #define AES_KEY_128_LENGTH 16
  41. #define AES_KEY_256_LENGTH 32
  42. #define AES_IVEC_LENGTH 16
  43. #define AES_GCM_TAG_LENGTH 16
  44. #define AES_SALT_LENGTH 40
  45. @interface NCEndToEndEncryption ()
  46. {
  47. NSData *_privateKeyData;
  48. NSData *_publicKeyData;
  49. NSData *_csrData;
  50. }
  51. @end
  52. @implementation NCEndToEndEncryption
  53. //Singleton
  54. + (instancetype)sharedManager {
  55. static NCEndToEndEncryption *NCEndToEndEncryption = nil;
  56. static dispatch_once_t onceToken;
  57. dispatch_once(&onceToken, ^{
  58. NCEndToEndEncryption = [self new];
  59. });
  60. return NCEndToEndEncryption;
  61. }
  62. #
  63. #pragma mark - Generate Certificate X509 - CSR - Private Key
  64. #
  65. - (BOOL)generateCertificateX509WithUserId:(NSString *)userId directory:(NSString *)directory
  66. {
  67. OPENSSL_init();
  68. int ret;
  69. EVP_PKEY * pkey;
  70. pkey = EVP_PKEY_new();
  71. RSA * rsa;
  72. BIGNUM *bignum = BN_new();
  73. ret = BN_set_word(bignum, RSA_F4);
  74. if (ret != 1) {
  75. return NO;
  76. }
  77. rsa = RSA_new();
  78. ret = RSA_generate_key_ex(rsa, 2048, bignum, NULL);
  79. if (ret != 1) {
  80. return NO;
  81. }
  82. EVP_PKEY_assign_RSA(pkey, rsa);
  83. X509 * x509;
  84. x509 = X509_new();
  85. ASN1_INTEGER_set(X509_get_serialNumber(x509), 1);
  86. long notBefore = [[NSDate date] timeIntervalSinceDate:[NSDate date]];
  87. long notAfter = [[[NSDate date] dateByAddingTimeInterval:60*60*24*365*10] timeIntervalSinceDate:[NSDate date]]; // 10 year
  88. X509_gmtime_adj(X509_get_notBefore(x509), notBefore);
  89. X509_gmtime_adj(X509_get_notAfter(x509), notAfter);
  90. X509_set_pubkey(x509, pkey);
  91. X509_NAME * name;
  92. name = X509_get_subject_name(x509);
  93. // Now to add the subject name fields to the certificate
  94. // I use a macro here to make it cleaner.
  95. const unsigned char *cUserId = (const unsigned char *) [userId cStringUsingEncoding:NSUTF8StringEncoding];
  96. // Common Name = UserID.
  97. addName("CN", cUserId);
  98. // The organizational unit for the cert. Usually this is a department.
  99. addName("OU", "Certificate Authority");
  100. // The organization of the cert.
  101. addName("O", "Nextcloud");
  102. // The city of the organization.
  103. addName("L", "Vicenza");
  104. // The state/province of the organization.
  105. addName("S", "Italy");
  106. // The country (ISO 3166) of the organization
  107. addName("C", "IT");
  108. X509_set_issuer_name(x509, name);
  109. /*
  110. for (SANObject * san in self.options.sans) {
  111. if (!san.value || san.value.length <= 0) {
  112. continue;
  113. }
  114. NSString * prefix = san.type == SANObjectTypeIP ? @"IP:" : @"DNS:";
  115. NSString * value = [NSString stringWithFormat:@"%@%@", prefix, san.value];
  116. NSLog(@"Add subjectAltName %@", value);
  117. X509_EXTENSION * extension = NULL;
  118. ASN1_STRING * asnValue = ASN1_STRING_new();
  119. ASN1_STRING_set(asnValue, (const unsigned char *)[value UTF8String], (int)value.length);
  120. X509_EXTENSION_create_by_NID(&extension, NID_subject_alt_name, 0, asnValue);
  121. X509_add_ext(x509, extension, -1);
  122. }
  123. */
  124. // Specify the encryption algorithm of the signature.
  125. // SHA256 should suit your needs.
  126. if (X509_sign(x509, pkey, EVP_sha256()) < 0) {
  127. return NO;
  128. }
  129. X509_print_fp(stdout, x509);
  130. // Extract CSR, publicKey, privateKey
  131. int len;
  132. char *keyBytes;
  133. // CSR
  134. BIO *csrBIO = BIO_new(BIO_s_mem());
  135. X509_REQ *certReq = X509_to_X509_REQ(x509, pkey, EVP_sha256());
  136. PEM_write_bio_X509_REQ(csrBIO, certReq);
  137. len = BIO_pending(csrBIO);
  138. keyBytes = malloc(len);
  139. BIO_read(csrBIO, keyBytes, len);
  140. _csrData = [NSData dataWithBytes:keyBytes length:len];
  141. NSLog(@"[LOG] \n%@", [[NSString alloc] initWithData:_csrData encoding:NSUTF8StringEncoding]);
  142. // PublicKey
  143. BIO *publicKeyBIO = BIO_new(BIO_s_mem());
  144. PEM_write_bio_PUBKEY(publicKeyBIO, pkey);
  145. len = BIO_pending(publicKeyBIO);
  146. keyBytes = malloc(len);
  147. BIO_read(publicKeyBIO, keyBytes, len);
  148. _publicKeyData = [NSData dataWithBytes:keyBytes length:len];
  149. self.generatedPublicKey = [[NSString alloc] initWithData:_publicKeyData encoding:NSUTF8StringEncoding];
  150. NSLog(@"[LOG] \n%@", self.generatedPublicKey);
  151. // PrivateKey
  152. BIO *privateKeyBIO = BIO_new(BIO_s_mem());
  153. PEM_write_bio_PKCS8PrivateKey(privateKeyBIO, pkey, NULL, NULL, 0, NULL, NULL);
  154. len = BIO_pending(privateKeyBIO);
  155. keyBytes = malloc(len);
  156. BIO_read(privateKeyBIO, keyBytes, len);
  157. _privateKeyData = [NSData dataWithBytes:keyBytes length:len];
  158. self.generatedPrivateKey = [[NSString alloc] initWithData:_privateKeyData encoding:NSUTF8StringEncoding];
  159. NSLog(@"[LOG] \n%@", self.generatedPrivateKey);
  160. if(keyBytes)
  161. free(keyBytes);
  162. #ifdef DEBUG
  163. // Save to disk [DEBUG MODE]
  164. [self saveToDiskPEMWithCert:x509 key:pkey directory:directory];
  165. #endif
  166. return YES;
  167. }
  168. - (NSString *)extractPublicKeyFromCertificate:(NSString *)pemCertificate
  169. {
  170. const char *ptrCert = [pemCertificate cStringUsingEncoding:NSUTF8StringEncoding];
  171. BIO *certBio = BIO_new(BIO_s_mem());
  172. BIO_write(certBio, ptrCert,(unsigned int)strlen(ptrCert));
  173. X509 *certX509 = PEM_read_bio_X509(certBio, NULL, NULL, NULL);
  174. if (!certX509) {
  175. fprintf(stderr, "unable to parse certificate in memory\n");
  176. return nil;
  177. }
  178. EVP_PKEY *pkey;
  179. pkey = X509_get_pubkey(certX509);
  180. NSString *publicKey = [self pubKeyToString:pkey];
  181. EVP_PKEY_free(pkey);
  182. BIO_free(certBio);
  183. X509_free(certX509);
  184. NSLog(@"[LOG] \n%@", publicKey);
  185. return publicKey;
  186. }
  187. - (BOOL)saveToDiskPEMWithCert:(X509 *)x509 key:(EVP_PKEY *)pkey directory:(NSString *)directory
  188. {
  189. FILE *f;
  190. // Certificate
  191. NSString *certificatePath = [NSString stringWithFormat:@"%@/%@", directory, fileNameCertificate];
  192. f = fopen([certificatePath fileSystemRepresentation], "wb");
  193. if (PEM_write_X509(f, x509) < 0) {
  194. // Error writing to disk.
  195. fclose(f);
  196. return NO;
  197. }
  198. NSLog(@"[LOG] Saved cert to %@", certificatePath);
  199. fclose(f);
  200. // PublicKey
  201. NSString *publicKeyPath = [NSString stringWithFormat:@"%@/%@", directory, fileNamePubliceKey];
  202. f = fopen([publicKeyPath fileSystemRepresentation], "wb");
  203. if (PEM_write_PUBKEY(f, pkey) < 0) {
  204. // Error
  205. fclose(f);
  206. return NO;
  207. }
  208. NSLog(@"[LOG] Saved publicKey to %@", publicKeyPath);
  209. fclose(f);
  210. // Here you write the private key (pkey) to disk. OpenSSL will encrypt the
  211. // file using the password and cipher you provide.
  212. //if (PEM_write_PrivateKey(f, pkey, EVP_des_ede3_cbc(), (unsigned char *)[password UTF8String], (int)password.length, NULL, NULL) < 0) {
  213. // PrivateKey
  214. NSString *privatekeyPath = [NSString stringWithFormat:@"%@/%@", directory, fileNamePrivateKey];
  215. f = fopen([privatekeyPath fileSystemRepresentation], "wb");
  216. if (PEM_write_PrivateKey(f, pkey, NULL, NULL, 0, NULL, NULL) < 0) {
  217. // Error
  218. fclose(f);
  219. return NO;
  220. }
  221. NSLog(@"[LOG] Saved privatekey to %@", privatekeyPath);
  222. fclose(f);
  223. // CSR Request sha256
  224. NSString *csrPath = [NSString stringWithFormat:@"%@/%@", directory, fileNameCSR];
  225. f = fopen([csrPath fileSystemRepresentation], "wb");
  226. X509_REQ *certreq = X509_to_X509_REQ(x509, pkey, EVP_sha256());
  227. if (PEM_write_X509_REQ(f, certreq) < 0) {
  228. // Error
  229. fclose(f);
  230. return NO;
  231. }
  232. NSLog(@"[LOG] Saved csr to %@", csrPath);
  233. fclose(f);
  234. return YES;
  235. }
  236. - (BOOL)saveP12WithCert:(X509 *)x509 key:(EVP_PKEY *)pkey directory:(NSString *)directory finished:(void (^)(NSError *))finished
  237. {
  238. //PKCS12 * p12 = PKCS12_create([password UTF8String], NULL, pkey, x509, NULL, 0, 0, PKCS12_DEFAULT_ITER, 1, NID_key_usage);
  239. PKCS12 *p12 = PKCS12_create(NULL, NULL, pkey, x509, NULL, 0, 0, PKCS12_DEFAULT_ITER, 1, NID_key_usage);
  240. NSString *path = [NSString stringWithFormat:@"%@/certificate.p12", directory];
  241. FILE *f = fopen([path fileSystemRepresentation], "wb");
  242. if (i2d_PKCS12_fp(f, p12) != 1) {
  243. fclose(f);
  244. return NO;
  245. }
  246. NSLog(@"[LOG] Saved p12 to %@", path);
  247. fclose(f);
  248. return YES;
  249. }
  250. #
  251. #pragma mark - Create CSR & Encrypt/Decrypt Private Key
  252. #
  253. - (NSString *)createCSR:(NSString *)userId directory:(NSString *)directory
  254. {
  255. // Create Certificate, if do not exists
  256. if (!_csrData) {
  257. if (![self generateCertificateX509WithUserId:userId directory:directory])
  258. return nil;
  259. }
  260. NSString *csr = [[NSString alloc] initWithData:_csrData encoding:NSUTF8StringEncoding];
  261. return csr;
  262. }
  263. - (NSString *)encryptPrivateKey:(NSString *)userId directory:(NSString *)directory passphrase:(NSString *)passphrase privateKey:(NSString **)privateKey iterationCount:(unsigned int)iterationCount
  264. {
  265. NSMutableData *cipher = [NSMutableData new];
  266. if (!_privateKeyData) {
  267. if (![self generateCertificateX509WithUserId:userId directory:directory])
  268. return nil;
  269. }
  270. NSMutableData *key = [NSMutableData dataWithLength:PBKDF2_KEY_LENGTH/8];
  271. NSData *salt = [self generateSalt:AES_SALT_LENGTH];
  272. // Remove all whitespaces from passphrase
  273. passphrase = [passphrase stringByReplacingOccurrencesOfString:@" " withString:@""];
  274. CCKeyDerivationPBKDF(kCCPBKDF2, passphrase.UTF8String, passphrase.length, salt.bytes, salt.length, kCCPRFHmacAlgSHA1, iterationCount, key.mutableBytes, key.length);
  275. NSData *initializationVector = [self generateIV:AES_IVEC_LENGTH];
  276. NSData *authenticationTag = [NSData new];
  277. NSString *pkEncoded = [_privateKeyData base64EncodedStringWithOptions:0];
  278. NSData *pkEncodedData = [pkEncoded dataUsingEncoding:NSUTF8StringEncoding];
  279. BOOL result = [self encryptData:pkEncodedData cipher:&cipher key:key keyLen:AES_KEY_256_LENGTH initializationVector:initializationVector authenticationTag:&authenticationTag];
  280. if (result && cipher) {
  281. NSString *cipherString = [cipher base64EncodedStringWithOptions:0];
  282. NSString *initializationVectorString = [initializationVector base64EncodedStringWithOptions:0];
  283. NSString *saltString = [salt base64EncodedStringWithOptions:0];
  284. NSString *encryptPrivateKey = [NSString stringWithFormat:@"%@%@%@%@%@", cipherString, IV_DELIMITER_ENCODED, initializationVectorString, IV_DELIMITER_ENCODED, saltString];
  285. *privateKey = [[NSString alloc] initWithData:_privateKeyData encoding:NSUTF8StringEncoding];
  286. return encryptPrivateKey;
  287. } else {
  288. return nil;
  289. }
  290. }
  291. - (NSData *)decryptPrivateKey:(NSString *)privateKey passphrase:(NSString *)passphrase publicKey:(NSString *)publicKey iterationCount:(unsigned int)iterationCount
  292. {
  293. NSMutableData *plain = [NSMutableData new];
  294. // Key
  295. NSMutableData *key = [NSMutableData dataWithLength:PBKDF2_KEY_LENGTH/8];
  296. // Split
  297. NSArray *cipherArray = [privateKey componentsSeparatedByString:IV_DELIMITER_ENCODED];
  298. if (cipherArray.count != 3) {
  299. cipherArray = [privateKey componentsSeparatedByString:IV_DELIMITER_ENCODED_OLD];
  300. if (cipherArray.count != 3) {
  301. return nil;
  302. }
  303. }
  304. NSData *cipher = [[NSData alloc] initWithBase64EncodedString:cipherArray[0] options:0];
  305. NSString *authenticationTagString = [privateKey substringWithRange:NSMakeRange([(NSString *)cipherArray[0] length] - AES_GCM_TAG_LENGTH, AES_GCM_TAG_LENGTH)];
  306. NSData *authenticationTag = [[NSData alloc] initWithBase64EncodedString:authenticationTagString options:0];
  307. NSData *initializationVector = [[NSData alloc] initWithBase64EncodedString:cipherArray[1] options:0];
  308. NSData *salt = [[NSData alloc] initWithBase64EncodedString:cipherArray[2] options:0];
  309. // Remove Authentication Tag
  310. cipher = [cipher subdataWithRange:NSMakeRange(0, cipher.length - AES_GCM_TAG_LENGTH)];
  311. // Remove all whitespaces from passphrase
  312. passphrase = [passphrase stringByReplacingOccurrencesOfString:@" " withString:@""];
  313. CCKeyDerivationPBKDF(kCCPBKDF2, passphrase.UTF8String, passphrase.length, salt.bytes, salt.length, kCCPRFHmacAlgSHA1, iterationCount, key.mutableBytes, key.length);
  314. BOOL result = [self decryptData:cipher plain:&plain key:key keyLen:AES_KEY_256_LENGTH initializationVector:initializationVector authenticationTag:authenticationTag];
  315. if (result && plain) {
  316. return plain;
  317. }
  318. return nil;
  319. }
  320. #
  321. #pragma mark - Encrypt / Decrypt file material
  322. #
  323. - (NSString *)encryptPayloadFile:(NSString *)encrypted key:(NSString *)key
  324. {
  325. NSMutableData *cipher;
  326. NSData *authenticationTag = [NSData new];
  327. NSData *encryptedData = [encrypted dataUsingEncoding:NSUTF8StringEncoding];
  328. encryptedData = [[encryptedData base64EncodedStringWithOptions:0] dataUsingEncoding:NSUTF8StringEncoding];
  329. // Key
  330. NSData *keyData = [[NSData alloc] initWithBase64EncodedString:key options:0];
  331. // Initialization Vector
  332. NSData *initializationVector = [self generateIV:AES_IVEC_LENGTH];
  333. BOOL result = [self encryptData:encryptedData cipher:&cipher key:keyData keyLen:AES_KEY_128_LENGTH initializationVector:initializationVector authenticationTag:&authenticationTag];
  334. if (cipher != nil && result) {
  335. NSString *cipherString = [cipher base64EncodedStringWithOptions:0];
  336. NSString *initializationVectorString = [initializationVector base64EncodedStringWithOptions:0];
  337. NSString *payload = [NSString stringWithFormat:@"%@%@%@", cipherString, IV_DELIMITER_ENCODED, initializationVectorString];
  338. return payload;
  339. }
  340. return nil;
  341. }
  342. - (NSString *)encryptPayloadFile:(NSString *)encrypted key:(NSString *)key initializationVector:(NSString **)initializationVector authenticationTag:(NSString **)authenticationTag
  343. {
  344. NSMutableData *cipher;
  345. NSData *authenticationTagData = [NSData new];
  346. NSData *encryptedData = [encrypted dataUsingEncoding:NSUTF8StringEncoding];
  347. encryptedData = [[encryptedData base64EncodedStringWithOptions:0] dataUsingEncoding:NSUTF8StringEncoding];
  348. // Key
  349. NSData *keyData = [[NSData alloc] initWithBase64EncodedString:key options:0];
  350. // Initialization Vector
  351. NSData *initializationVectorData = [self generateIV:AES_IVEC_LENGTH];
  352. BOOL result = [self encryptData:encryptedData cipher:&cipher key:keyData keyLen:AES_KEY_128_LENGTH initializationVector:initializationVectorData authenticationTag:&authenticationTagData];
  353. if (cipher != nil && result) {
  354. *initializationVector = [initializationVectorData base64EncodedStringWithOptions:0];
  355. *authenticationTag = [authenticationTagData base64EncodedStringWithOptions:0];
  356. NSString *payload = [cipher base64EncodedStringWithOptions:0];
  357. return payload;
  358. }
  359. return nil;
  360. }
  361. - (NSData *)decryptPayloadFile:(NSString *)encrypted key:(NSString *)key
  362. {
  363. NSMutableData *plain;
  364. NSRange range = [encrypted rangeOfString:IV_DELIMITER_ENCODED];
  365. if (range.location == NSNotFound) {
  366. range = [encrypted rangeOfString:IV_DELIMITER_ENCODED_OLD];
  367. if (range.location == NSNotFound) {
  368. return nil;
  369. }
  370. }
  371. // Cipher
  372. NSString *cipher = [encrypted substringToIndex:(range.location)];
  373. NSData *cipherData = [[NSData alloc] initWithBase64EncodedString:cipher options:0];
  374. // Key
  375. NSData *keyData = [[NSData alloc] initWithBase64EncodedString:key options:0];
  376. // Initialization Vector
  377. NSString *initializationVector = [encrypted substringWithRange:NSMakeRange(range.location + range.length, encrypted.length - (range.location + range.length))];
  378. NSData *initializationVectorData = [[NSData alloc] initWithBase64EncodedString:initializationVector options:0];
  379. // Authentication Tag
  380. NSString *authenticationTag = [cipher substringWithRange:NSMakeRange(cipher.length - AES_GCM_TAG_LENGTH, AES_GCM_TAG_LENGTH)];
  381. NSData *authenticationTagData = [[NSData alloc] initWithBase64EncodedString:authenticationTag options:0];
  382. // Remove Authentication Tag
  383. cipherData = [cipherData subdataWithRange:NSMakeRange(0, cipherData.length - AES_GCM_TAG_LENGTH)];
  384. BOOL result = [self decryptData:cipherData plain:&plain key:keyData keyLen:AES_KEY_128_LENGTH initializationVector:initializationVectorData authenticationTag:authenticationTagData];
  385. if (plain != nil && result) {
  386. return plain;
  387. }
  388. return nil;
  389. }
  390. - (NSData *)decryptPayloadFile:(NSString *)encrypted key:(NSString *)key initializationVector:(NSString *)initializationVector authenticationTag:(NSString *)authenticationTag
  391. {
  392. NSMutableData *plain;
  393. // Remove initializationVector Tag if exists [ANDROID]
  394. NSString *android = [@"|" stringByAppendingString: initializationVector];
  395. encrypted = [encrypted stringByReplacingOccurrencesOfString:android withString:@""];
  396. NSData *cipher = [[NSData alloc] initWithBase64EncodedString:encrypted options:0];
  397. NSData *keyData = [[NSData alloc] initWithBase64EncodedString:key options:0];
  398. NSData *initializationVectorData = [[NSData alloc] initWithBase64EncodedString:initializationVector options:0];
  399. NSData *authenticationTagData = [[NSData alloc] initWithBase64EncodedString:authenticationTag options:0];
  400. // Remove Authentication Tag
  401. cipher = [cipher subdataWithRange:NSMakeRange(0, cipher.length - AES_GCM_TAG_LENGTH)];
  402. BOOL result = [self decryptData:cipher plain:&plain key:keyData keyLen:AES_KEY_128_LENGTH initializationVector:initializationVectorData authenticationTag:authenticationTagData];
  403. if (plain != nil && result && plain.length > 0) {
  404. return plain;
  405. }
  406. return nil;
  407. }
  408. #
  409. #pragma mark - Encrypt / Decrypt file
  410. #
  411. - (BOOL)encryptFile:(NSString *)fileName fileNameIdentifier:(NSString *)fileNameIdentifier directory:(NSString *)directory key:(NSString **)key initializationVector:(NSString **)initializationVector authenticationTag:(NSString **)authenticationTag
  412. {
  413. NSData *authenticationTagData;
  414. NSData *keyData = [self generateKey:AES_KEY_128_LENGTH];
  415. NSData *initializationVectorData = [self generateIV:AES_IVEC_LENGTH];
  416. BOOL result = [self encryptFile:[NSString stringWithFormat:@"%@/%@", directory, fileName] fileNameCipher:[NSString stringWithFormat:@"%@/%@", directory, fileNameIdentifier] key:keyData keyLen:AES_KEY_128_LENGTH initializationVector:initializationVectorData authenticationTag:&authenticationTagData];
  417. if (result) {
  418. *key = [keyData base64EncodedStringWithOptions:0];
  419. *initializationVector = [initializationVectorData base64EncodedStringWithOptions:0];
  420. *authenticationTag = [authenticationTagData base64EncodedStringWithOptions:0];
  421. if (key == nil || initializationVector == nil || authenticationTag == nil) {
  422. return false;
  423. } else {
  424. return true;
  425. }
  426. }
  427. return false;
  428. }
  429. - (BOOL)decryptFile:(NSString *)fileName fileNameView:(NSString *)fileNameView ocId:(NSString *)ocId key:(NSString *)key initializationVector:(NSString *)initializationVector authenticationTag:(NSString *)authenticationTag
  430. {
  431. NSData *keyData = [[NSData alloc] initWithBase64EncodedString:key options:0];
  432. NSData *initializationVectorData = [[NSData alloc] initWithBase64EncodedString:initializationVector options:0];
  433. NSData *authenticationTagData = [[NSData alloc] initWithBase64EncodedString:authenticationTag options:0];
  434. return [self decryptFile:[CCUtility getDirectoryProviderStorageOcId:ocId fileNameView:fileName] fileNamePlain:[CCUtility getDirectoryProviderStorageOcId:ocId fileNameView:fileNameView] key:keyData keyLen:AES_KEY_128_LENGTH initializationVector:initializationVectorData authenticationTag:authenticationTagData];
  435. }
  436. // -----------------------------------------------------------------------------------------------------------------------------------------------------------------------
  437. // -----------------------------------------------------------------------------------------------------------------------------------------------------------------------
  438. #
  439. #pragma mark - OPENSSL ENCRYPT/DECRYPT
  440. #
  441. #
  442. #pragma mark - Encrypt/Decrypt asymmetric
  443. #
  444. - (NSData *)encryptAsymmetricString:(NSString *)plain publicKey:(NSString *)publicKey privateKey:(NSString *)privateKey
  445. {
  446. EVP_PKEY *key = NULL;
  447. int status = 0;
  448. if (publicKey != nil) {
  449. unsigned char *pKey = (unsigned char *)[publicKey UTF8String];
  450. // Extract real publicKey
  451. BIO *bio = BIO_new_mem_buf(pKey, -1);
  452. if (!bio)
  453. return nil;
  454. X509 *x509 = PEM_read_bio_X509(bio, NULL, 0, NULL);
  455. if (!x509)
  456. return nil;
  457. key = X509_get_pubkey(x509);
  458. if (!key)
  459. return nil;
  460. }
  461. if (privateKey != nil) {
  462. unsigned char *pKey = (unsigned char *)[privateKey UTF8String];
  463. BIO *bio = BIO_new_mem_buf(pKey, -1);
  464. if (!bio)
  465. return nil;
  466. key = PEM_read_bio_PrivateKey(bio, NULL, NULL, NULL);
  467. if (!key)
  468. return nil;
  469. }
  470. EVP_PKEY_CTX *ctx = EVP_PKEY_CTX_new(key, NULL);
  471. if (!ctx)
  472. return nil;
  473. status = EVP_PKEY_encrypt_init(ctx);
  474. if (status <= 0)
  475. return nil;
  476. status = EVP_PKEY_CTX_set_rsa_padding(ctx, RSA_PKCS1_OAEP_PADDING);
  477. if (status <= 0)
  478. return nil;
  479. status = EVP_PKEY_CTX_set_rsa_oaep_md(ctx, EVP_sha256());
  480. if (status <= 0)
  481. return nil;
  482. status = EVP_PKEY_CTX_set_rsa_mgf1_md(ctx, EVP_sha256());
  483. if (status <= 0)
  484. return nil;
  485. unsigned long outLen = 0;
  486. NSData *plainData = [plain dataUsingEncoding:NSUTF8StringEncoding];
  487. status = EVP_PKEY_encrypt(ctx, NULL, &outLen, [plainData bytes], (int)[plainData length]);
  488. if (status <= 0 || outLen == 0)
  489. return nil;
  490. unsigned char *out = (unsigned char *) malloc(outLen);
  491. status = EVP_PKEY_encrypt(ctx, out, &outLen, [plainData bytes], (int)[plainData length]);
  492. if (status <= 0)
  493. return nil;
  494. NSData *outData = [[NSData alloc] initWithBytes:out length:outLen];
  495. if (out)
  496. free(out);
  497. return outData;
  498. }
  499. - (NSData *)decryptAsymmetricData:(NSData *)cipherData privateKey:(NSString *)privateKey
  500. {
  501. unsigned char *pKey = (unsigned char *)[privateKey UTF8String];
  502. int status = 0;
  503. BIO *bio = BIO_new_mem_buf(pKey, -1);
  504. if (!bio)
  505. return nil;
  506. EVP_PKEY *key = PEM_read_bio_PrivateKey(bio, NULL, NULL, NULL);
  507. if (!key)
  508. return nil;
  509. EVP_PKEY_CTX *ctx = EVP_PKEY_CTX_new(key, NULL);
  510. if (!ctx)
  511. return nil;
  512. status = EVP_PKEY_decrypt_init(ctx);
  513. if (status <= 0)
  514. return nil;
  515. status = EVP_PKEY_CTX_set_rsa_padding(ctx, RSA_PKCS1_OAEP_PADDING);
  516. if (status <= 0)
  517. return nil;
  518. status = EVP_PKEY_CTX_set_rsa_oaep_md(ctx, EVP_sha256());
  519. if (status <= 0)
  520. return nil;
  521. status = EVP_PKEY_CTX_set_rsa_mgf1_md(ctx, EVP_sha256());
  522. if (status <= 0)
  523. return nil;
  524. unsigned long outLen = 0;
  525. status = EVP_PKEY_decrypt(ctx, NULL, &outLen, [cipherData bytes], (int)[cipherData length]);
  526. if (status <= 0 || outLen == 0)
  527. return nil;
  528. unsigned char *out = (unsigned char *) malloc(outLen);
  529. status = EVP_PKEY_decrypt(ctx, out, &outLen, [cipherData bytes], (int)[cipherData length]);
  530. if (status <= 0)
  531. return nil;
  532. NSData *outData = [[NSData alloc] initWithBytes:out length:outLen];
  533. if (out)
  534. free(out);
  535. return outData;
  536. }
  537. #
  538. #pragma mark - AES/GCM/NoPadding
  539. #
  540. // Encryption data using GCM mode
  541. - (BOOL)encryptData:(NSData *)plain cipher:(NSMutableData **)cipher key:(NSData *)key keyLen:(int)keyLen initializationVector:(NSData *)initializationVector authenticationTag:(NSData **)authenticationTag
  542. {
  543. int status = 0;
  544. int len = 0;
  545. // set up key
  546. len = keyLen;
  547. unsigned char cKey[len];
  548. bzero(cKey, sizeof(cKey));
  549. [key getBytes:cKey length:len];
  550. // set up ivec
  551. len = AES_IVEC_LENGTH;
  552. unsigned char cIV[len];
  553. bzero(cIV, sizeof(cIV));
  554. [initializationVector getBytes:cIV length:len];
  555. // set up tag
  556. len = AES_GCM_TAG_LENGTH;
  557. unsigned char cTag[len];
  558. bzero(cTag, sizeof(cTag));
  559. // Create and initialise the context
  560. EVP_CIPHER_CTX *ctx = EVP_CIPHER_CTX_new();
  561. if (!ctx)
  562. return NO;
  563. // Initialise the encryption operation
  564. if (keyLen == AES_KEY_128_LENGTH)
  565. status = EVP_EncryptInit_ex(ctx, EVP_aes_128_gcm(), NULL, NULL, NULL);
  566. else if (keyLen == AES_KEY_256_LENGTH)
  567. status = EVP_EncryptInit_ex(ctx, EVP_aes_256_gcm(), NULL, NULL, NULL);
  568. if (status <= 0) {
  569. EVP_CIPHER_CTX_free(ctx);
  570. return NO;
  571. }
  572. // Set IV length. Not necessary if this is 12 bytes (96 bits)
  573. status = EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_GCM_SET_IVLEN, (int)sizeof(cIV), NULL);
  574. if (status <= 0) {
  575. EVP_CIPHER_CTX_free(ctx);
  576. return NO;
  577. }
  578. // Initialise key and IV
  579. status = EVP_EncryptInit_ex (ctx, NULL, NULL, cKey, cIV);
  580. if (status <= 0) {
  581. EVP_CIPHER_CTX_free(ctx);
  582. return NO;
  583. }
  584. // Provide the message to be encrypted, and obtain the encrypted output
  585. *cipher = [NSMutableData dataWithLength:[plain length]];
  586. unsigned char * cCipher = [*cipher mutableBytes];
  587. int cCipherLen = 0;
  588. status = EVP_EncryptUpdate(ctx, cCipher, &cCipherLen, [plain bytes], (int)[plain length]);
  589. if (status <= 0) {
  590. EVP_CIPHER_CTX_free(ctx);
  591. return NO;
  592. }
  593. // Finalise the encryption
  594. status = EVP_EncryptFinal_ex(ctx, cCipher, &cCipherLen);
  595. if (status <= 0) {
  596. EVP_CIPHER_CTX_free(ctx);
  597. return NO;
  598. }
  599. // Get the tag
  600. status = EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_GCM_GET_TAG, (int)sizeof(cTag), cTag);
  601. *authenticationTag = [NSData dataWithBytes:cTag length:sizeof(cTag)];
  602. // Append TAG
  603. [*cipher appendData:*authenticationTag];
  604. EVP_CIPHER_CTX_free(ctx);
  605. return status; // OpenSSL uses 1 for success
  606. }
  607. // Encryption file using GCM mode
  608. - (BOOL)encryptFile:(NSString *)fileName fileNameCipher:(NSString *)fileNameCipher key:(NSData *)key keyLen:(int)keyLen initializationVector:(NSData *)initializationVector authenticationTag:(NSData **)authenticationTag
  609. {
  610. int status = 0;
  611. int len = 0;
  612. // set up key
  613. len = keyLen;
  614. unsigned char cKey[len];
  615. bzero(cKey, sizeof(cKey));
  616. [key getBytes:cKey length:len];
  617. // set up ivec
  618. len = AES_IVEC_LENGTH;
  619. unsigned char cIV[len];
  620. bzero(cIV, sizeof(cIV));
  621. [initializationVector getBytes:cIV length:len];
  622. // set up tag
  623. len = AES_GCM_TAG_LENGTH;
  624. unsigned char cTag[len];
  625. bzero(cTag, sizeof(cTag));
  626. // Create and initialise the context
  627. EVP_CIPHER_CTX *ctx = EVP_CIPHER_CTX_new();
  628. if (!ctx) {
  629. return NO;
  630. }
  631. // Initialise the encryption operation
  632. if (keyLen == AES_KEY_128_LENGTH)
  633. status = EVP_EncryptInit_ex(ctx, EVP_aes_128_gcm(), NULL, NULL, NULL);
  634. else if (keyLen == AES_KEY_256_LENGTH)
  635. status = EVP_EncryptInit_ex(ctx, EVP_aes_256_gcm(), NULL, NULL, NULL);
  636. if (status <= 0) {
  637. EVP_CIPHER_CTX_free(ctx);
  638. return NO;
  639. }
  640. // Set IV length. Not necessary if this is 12 bytes (96 bits)
  641. status = EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_GCM_SET_IVLEN, (int)sizeof(cIV), NULL);
  642. if (status <= 0) {
  643. EVP_CIPHER_CTX_free(ctx);
  644. return NO;
  645. }
  646. // Initialise key and IV
  647. status = EVP_EncryptInit_ex (ctx, NULL, NULL, cKey, cIV);
  648. if (status <= 0) {
  649. EVP_CIPHER_CTX_free(ctx);
  650. return NO;
  651. }
  652. NSInputStream *inStream = [NSInputStream inputStreamWithFileAtPath:fileName];
  653. [inStream open];
  654. NSOutputStream *outStream = [NSOutputStream outputStreamToFileAtPath:fileNameCipher append:false];
  655. [outStream open];
  656. Byte buffer[streamBuffer];
  657. NSInteger totalNumberOfBytesWritten = 0;
  658. int cCipherLen = 0;
  659. unsigned char *cCipher;
  660. while ([inStream hasBytesAvailable]) {
  661. @autoreleasepool {
  662. NSInteger bytesRead = [inStream read:buffer maxLength:streamBuffer];
  663. if (bytesRead > 0) {
  664. cCipher = [[NSMutableData dataWithLength:bytesRead] mutableBytes];
  665. status = EVP_EncryptUpdate(ctx, cCipher, &cCipherLen, [[NSData dataWithBytes:buffer length:bytesRead] bytes], (int)bytesRead);
  666. if (status <= 0) {
  667. [inStream close];
  668. [outStream close];
  669. EVP_CIPHER_CTX_free(ctx);
  670. return NO;
  671. }
  672. if ([outStream hasSpaceAvailable]) {
  673. totalNumberOfBytesWritten = [outStream write:cCipher maxLength:cCipherLen];
  674. if (totalNumberOfBytesWritten != cCipherLen) {
  675. [inStream close];
  676. [outStream close];
  677. EVP_CIPHER_CTX_free(ctx);
  678. return NO;
  679. }
  680. }
  681. }
  682. }
  683. }
  684. [inStream close];
  685. status = EVP_EncryptFinal_ex(ctx, cCipher, &cCipherLen);
  686. if (status <= 0) {
  687. [outStream close];
  688. EVP_CIPHER_CTX_free(ctx);
  689. return NO;
  690. }
  691. // Get the tag
  692. status = EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_GCM_GET_TAG, (int)sizeof(cTag), cTag);
  693. if (status <= 0) {
  694. [outStream close];
  695. EVP_CIPHER_CTX_free(ctx);
  696. return NO;
  697. }
  698. *authenticationTag = [NSData dataWithBytes:cTag length:sizeof(cTag)];
  699. // Append TAG
  700. if ([outStream hasSpaceAvailable]) {
  701. totalNumberOfBytesWritten = [outStream write:cTag maxLength:sizeof(cTag)];
  702. if (totalNumberOfBytesWritten != sizeof(cTag)) {
  703. status = NO;
  704. }
  705. } else {
  706. status = NO;
  707. }
  708. [outStream close];
  709. EVP_CIPHER_CTX_free(ctx);
  710. return status; // OpenSSL uses 1 for success
  711. }
  712. // Decryption data using GCM mode
  713. - (BOOL)decryptData:(NSData *)cipher plain:(NSMutableData **)plain key:(NSData *)key keyLen:(int)keyLen initializationVector:(NSData *)initializationVector authenticationTag:(NSData *)authenticationTag
  714. {
  715. int status = 0;
  716. int len = 0;
  717. // set up key
  718. len = keyLen;
  719. unsigned char cKey[len];
  720. bzero(cKey, sizeof(cKey));
  721. [key getBytes:cKey length:len];
  722. // set up ivec
  723. len = (int)[initializationVector length];
  724. unsigned char cIV[len];
  725. bzero(cIV, sizeof(cIV));
  726. [initializationVector getBytes:cIV length:len];
  727. // set up tag
  728. len = (int)[authenticationTag length];;
  729. unsigned char cTag[len];
  730. bzero(cTag, sizeof(cTag));
  731. [authenticationTag getBytes:cTag length:len];
  732. // Create and initialise the context
  733. EVP_CIPHER_CTX *ctx = EVP_CIPHER_CTX_new();
  734. if (!ctx)
  735. return NO;
  736. // Initialise the decryption operation
  737. if (keyLen == AES_KEY_128_LENGTH)
  738. status = EVP_DecryptInit_ex(ctx, EVP_aes_128_gcm(), NULL, NULL, NULL);
  739. else if (keyLen == AES_KEY_256_LENGTH)
  740. status = EVP_DecryptInit_ex(ctx, EVP_aes_256_gcm(), NULL, NULL, NULL);
  741. if (status <= 0) {
  742. EVP_CIPHER_CTX_free(ctx);
  743. return NO;
  744. }
  745. // Set IV length. Not necessary if this is 12 bytes (96 bits)
  746. status = EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_GCM_SET_IVLEN, (int)sizeof(cIV), NULL);
  747. if (status <= 0) {
  748. EVP_CIPHER_CTX_free(ctx);
  749. return NO;
  750. }
  751. // Initialise key and IV
  752. status = EVP_DecryptInit_ex(ctx, NULL, NULL, cKey, cIV);
  753. if (status <= 0) {
  754. EVP_CIPHER_CTX_free(ctx);
  755. return NO;
  756. }
  757. // Provide the message to be decrypted, and obtain the plaintext output
  758. *plain = [NSMutableData dataWithLength:([cipher length])];
  759. int cPlainLen = 0;
  760. unsigned char * cPlain = [*plain mutableBytes];
  761. status = EVP_DecryptUpdate(ctx, cPlain, &cPlainLen, [cipher bytes], (int)([cipher length]));
  762. if (status <= 0) {
  763. EVP_CIPHER_CTX_free(ctx);
  764. return NO;
  765. }
  766. // Tag is the last 16 bytes
  767. status = EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_GCM_SET_TAG, (int)sizeof(cTag), cTag);
  768. if (status <= 0) {
  769. EVP_CIPHER_CTX_free(ctx);
  770. return NO;
  771. }
  772. // Finalise the encryption
  773. EVP_DecryptFinal_ex(ctx,NULL, &cPlainLen);
  774. // Free
  775. EVP_CIPHER_CTX_free(ctx);
  776. return status; // OpenSSL uses 1 for success
  777. }
  778. // Decryption file using GCM mode
  779. - (BOOL)decryptFile:(NSString *)fileName fileNamePlain:(NSString *)fileNamePlain key:(NSData *)key keyLen:(int)keyLen initializationVector:(NSData *)initializationVector authenticationTag:(NSData *)authenticationTag
  780. {
  781. int status = 0;
  782. int len = 0;
  783. // set up key
  784. len = keyLen;
  785. unsigned char cKey[len];
  786. bzero(cKey, sizeof(cKey));
  787. [key getBytes:cKey length:len];
  788. // set up ivec
  789. len = (int)[initializationVector length];
  790. unsigned char cIV[len];
  791. bzero(cIV, sizeof(cIV));
  792. [initializationVector getBytes:cIV length:len];
  793. // set up tag
  794. len = (int)[authenticationTag length];;
  795. unsigned char cTag[len];
  796. bzero(cTag, sizeof(cTag));
  797. [authenticationTag getBytes:cTag length:len];
  798. // Create and initialise the context
  799. EVP_CIPHER_CTX *ctx = EVP_CIPHER_CTX_new();
  800. if (!ctx)
  801. return NO;
  802. // Initialise the decryption operation
  803. if (keyLen == AES_KEY_128_LENGTH)
  804. status = EVP_DecryptInit_ex(ctx, EVP_aes_128_gcm(), NULL, NULL, NULL);
  805. else if (keyLen == AES_KEY_256_LENGTH)
  806. status = EVP_DecryptInit_ex(ctx, EVP_aes_256_gcm(), NULL, NULL, NULL);
  807. if (status <= 0) {
  808. EVP_CIPHER_CTX_free(ctx);
  809. return NO;
  810. }
  811. // Set IV length. Not necessary if this is 12 bytes (96 bits)
  812. status = EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_GCM_SET_IVLEN, (int)sizeof(cIV), NULL);
  813. if (status <= 0) {
  814. EVP_CIPHER_CTX_free(ctx);
  815. return NO;
  816. }
  817. // Initialise key and IV
  818. status = EVP_DecryptInit_ex(ctx, NULL, NULL, cKey, cIV);
  819. if (status <= 0) {
  820. EVP_CIPHER_CTX_free(ctx);
  821. return NO;
  822. }
  823. NSInputStream *inStream = [NSInputStream inputStreamWithFileAtPath:fileName];
  824. [inStream open];
  825. NSOutputStream *outStream = [NSOutputStream outputStreamToFileAtPath:fileNamePlain append:false];
  826. [outStream open];
  827. Byte buffer[streamBuffer];
  828. NSInteger totalNumberOfBytesWritten = 0;
  829. int cPlainLen = 0;
  830. unsigned char *cPlain;
  831. while ([inStream hasBytesAvailable]) {
  832. @autoreleasepool {
  833. NSInteger bytesRead = [inStream read:buffer maxLength:streamBuffer];
  834. if (bytesRead > 0) {
  835. cPlain = [[NSMutableData dataWithLength:bytesRead] mutableBytes];
  836. status = EVP_DecryptUpdate(ctx, cPlain, &cPlainLen, [[NSData dataWithBytes:buffer length:bytesRead] bytes], (int)bytesRead);
  837. if (status <= 0) {
  838. [inStream close];
  839. [outStream close];
  840. EVP_CIPHER_CTX_free(ctx);
  841. return NO;
  842. }
  843. if ([outStream hasSpaceAvailable]) {
  844. totalNumberOfBytesWritten = [outStream write:cPlain maxLength:cPlainLen];
  845. if (totalNumberOfBytesWritten != cPlainLen) {
  846. [inStream close];
  847. [outStream close];
  848. EVP_CIPHER_CTX_free(ctx);
  849. return NO;
  850. }
  851. }
  852. }
  853. }
  854. }
  855. [inStream close];
  856. [outStream close];
  857. // Tag is the last 16 bytes
  858. status = EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_GCM_SET_TAG, (int)sizeof(cTag), cTag);
  859. if (status <= 0)
  860. return NO;
  861. // Finalise the encryption
  862. EVP_DecryptFinal_ex(ctx,NULL, &cPlainLen);
  863. // Free
  864. EVP_CIPHER_CTX_free(ctx);
  865. return status; // OpenSSL uses 1 for success
  866. }
  867. #
  868. #pragma mark - CMS
  869. #
  870. - (NSData *)generateSignatureCMS:(NSData *)data certificate:(NSString *)certificate privateKey:(NSString *)privateKey publicKey:(NSString *)publicKey userId:(NSString *)userId
  871. {
  872. unsigned char *pKey = (unsigned char *)[privateKey UTF8String];
  873. unsigned char *certKey = (unsigned char *)[certificate UTF8String];
  874. BIO *printBIO = BIO_new_fp(stdout, BIO_NOCLOSE);
  875. BIO *certKeyBIO = BIO_new_mem_buf(certKey, -1);
  876. if (!certKeyBIO)
  877. return nil;
  878. X509 *x509 = PEM_read_bio_X509(certKeyBIO, NULL, 0, NULL);
  879. if (!x509)
  880. return nil;
  881. BIO *pkeyBIO = BIO_new_mem_buf(pKey, -1);
  882. EVP_PKEY *key = PEM_read_bio_PrivateKey(pkeyBIO, NULL, NULL, NULL);
  883. if (!key)
  884. return nil;
  885. BIO *dataBIO = BIO_new_mem_buf((void*)data.bytes, (int)data.length);
  886. CMS_ContentInfo *contentInfo = CMS_sign(x509, key, NULL, dataBIO, CMS_DETACHED);
  887. if (contentInfo == nil)
  888. return nil;
  889. CMS_ContentInfo_print_ctx(printBIO, contentInfo, 0, NULL);
  890. PEM_write_bio_CMS(printBIO, contentInfo);
  891. BIO *i2dCmsBioOut = BIO_new(BIO_s_mem());
  892. if (i2d_CMS_bio(i2dCmsBioOut, contentInfo) != 1)
  893. return nil;
  894. int len = BIO_pending(i2dCmsBioOut);
  895. char *keyBytes = malloc(len);
  896. BIO_read(i2dCmsBioOut, keyBytes, len);
  897. NSData *i2dCmsData = [NSData dataWithBytes:keyBytes length:len];
  898. // TEST
  899. [self verifySignatureCMS:i2dCmsData data:data publicKey:publicKey userId:userId];
  900. BIO_free(printBIO);
  901. BIO_free(certKeyBIO);
  902. BIO_free(pkeyBIO);
  903. BIO_free(dataBIO);
  904. BIO_free(i2dCmsBioOut);
  905. return i2dCmsData;
  906. }
  907. - (BOOL)verifySignatureCMS:(NSData *)cmsContent data:(NSData *)data publicKey:(NSString *)publicKey userId:(NSString *)userId
  908. {
  909. BIO *dataBIO = BIO_new_mem_buf((void*)data.bytes, (int)data.length);
  910. BIO *printBIO = BIO_new_fp(stdout, BIO_NOCLOSE);
  911. BIO *cmsBIO = BIO_new_mem_buf(cmsContent.bytes, (int)cmsContent.length);
  912. CMS_ContentInfo *contentInfo = d2i_CMS_bio(cmsBIO, NULL);
  913. unsigned char *publicKeyUTF8 = (unsigned char *)[publicKey UTF8String];
  914. BIO *publicKeyBIO = BIO_new_mem_buf(publicKeyUTF8, -1);
  915. EVP_PKEY *pkey = PEM_read_bio_PUBKEY(publicKeyBIO, NULL, NULL, NULL);
  916. CMS_ContentInfo_print_ctx(printBIO, contentInfo, 0, NULL);
  917. BOOL verifyResult = CMS_verify(contentInfo, NULL, NULL, dataBIO, NULL, CMS_DETACHED | CMS_NO_SIGNER_CERT_VERIFY);
  918. if (verifyResult) {
  919. STACK_OF(X509) *signers = CMS_get0_signers(contentInfo);
  920. int numSigners = sk_X509_num(signers);
  921. for (int i = 0; i < numSigners; ++i) {
  922. X509 *signer = sk_X509_value(signers, i);
  923. int result = X509_verify(signer, pkey);
  924. if (result <= 0) {
  925. verifyResult = false;
  926. break;
  927. }
  928. int cnDataLength = X509_NAME_get_text_by_NID(X509_get_subject_name(signer), NID_commonName, 0, 0);
  929. cnDataLength += 1;
  930. NSMutableData* cnData = [NSMutableData dataWithLength:cnDataLength];
  931. X509_NAME_get_text_by_NID(X509_get_subject_name(signer), NID_commonName, [cnData mutableBytes], cnDataLength);
  932. NSString *cn = [[NSString alloc] initWithCString:[cnData mutableBytes] encoding:NSUTF8StringEncoding];
  933. if ([userId isEqualToString:cn]) {
  934. verifyResult = true;
  935. break;
  936. } else {
  937. verifyResult = false;
  938. }
  939. }
  940. if (signers) {
  941. sk_X509_free(signers);
  942. }
  943. signers = NULL;
  944. }
  945. BIO_free(dataBIO);
  946. BIO_free(printBIO);
  947. BIO_free(cmsBIO);
  948. BIO_free(publicKeyBIO);
  949. return verifyResult;
  950. }
  951. #
  952. #pragma mark - Utility
  953. #
  954. - (void)Encodedkey:(NSString **)key initializationVector:(NSString **)initializationVector
  955. {
  956. NSData *keyData = [self generateKey:AES_KEY_128_LENGTH];
  957. NSData *ivData = [self generateIV:AES_IVEC_LENGTH];
  958. *key = [keyData base64EncodedStringWithOptions:0];
  959. *initializationVector = [ivData base64EncodedStringWithOptions:0];
  960. }
  961. - (NSString *)createSHA256FromString:(NSString *)string
  962. {
  963. const char *cstr = [string cStringUsingEncoding:NSASCIIStringEncoding];
  964. NSData *data = [NSData dataWithBytes:cstr length:string.length];
  965. uint8_t digest[CC_SHA256_DIGEST_LENGTH];
  966. CC_SHA256(data.bytes, (unsigned int)data.length, digest);
  967. NSMutableString* output = [NSMutableString stringWithCapacity:CC_SHA256_DIGEST_LENGTH * 2];
  968. for(int i = 0; i < CC_SHA256_DIGEST_LENGTH; i++)
  969. [output appendFormat:@"%02x", digest[i]];
  970. return output;
  971. }
  972. - (NSString *)createSHA256FromData:(NSData *)data
  973. {
  974. uint8_t digest[CC_SHA256_DIGEST_LENGTH];
  975. CC_SHA256(data.bytes, (unsigned int)data.length, digest);
  976. NSMutableString* output = [NSMutableString stringWithCapacity:CC_SHA256_DIGEST_LENGTH * 2];
  977. for(int i = 0; i < CC_SHA256_DIGEST_LENGTH; i++)
  978. [output appendFormat:@"%02x", digest[i]];
  979. return output;
  980. }
  981. - (NSString *)createSHA512:(NSString *)string
  982. {
  983. const char *cstr = [string cStringUsingEncoding:NSUTF8StringEncoding];
  984. NSData *data = [NSData dataWithBytes:cstr length:string.length];
  985. uint8_t digest[CC_SHA512_DIGEST_LENGTH];
  986. CC_SHA512(data.bytes, (unsigned int)data.length, digest);
  987. NSMutableString* output = [NSMutableString stringWithCapacity:CC_SHA512_DIGEST_LENGTH * 2];
  988. for(int i = 0; i < CC_SHA512_DIGEST_LENGTH; i++)
  989. [output appendFormat:@"%02x", digest[i]];
  990. return output;
  991. }
  992. - (NSData *)generateIV:(int)length
  993. {
  994. NSMutableData *ivData = [NSMutableData dataWithLength:length];
  995. (void)SecRandomCopyBytes(kSecRandomDefault, length, ivData.mutableBytes);
  996. return ivData;
  997. }
  998. - (NSData *)generateSalt:(int)length
  999. {
  1000. NSMutableData *saltData = [NSMutableData dataWithLength:length];
  1001. (void)SecRandomCopyBytes(kSecRandomDefault, length, saltData.mutableBytes);
  1002. return saltData;
  1003. }
  1004. - (NSData *)generateKey:(int)length
  1005. {
  1006. NSMutableData *keyData = [NSMutableData dataWithLength:length];
  1007. unsigned char *pKeyData = [keyData mutableBytes];
  1008. RAND_bytes(pKeyData, length);
  1009. return keyData;
  1010. }
  1011. - (NSData *)generateKey
  1012. {
  1013. NSMutableData *keyData = [NSMutableData dataWithLength:AES_KEY_128_LENGTH];
  1014. unsigned char *pKeyData = [keyData mutableBytes];
  1015. RAND_bytes(pKeyData, AES_KEY_128_LENGTH);
  1016. return keyData;
  1017. }
  1018. - (NSString *)getSHA1:(NSString *)input
  1019. {
  1020. const char *cstr = [input cStringUsingEncoding:NSUTF8StringEncoding];
  1021. NSData *data = [NSData dataWithBytes:cstr length:input.length];
  1022. uint8_t digest[CC_SHA1_DIGEST_LENGTH];
  1023. CC_SHA1(data.bytes, (unsigned int)data.length, digest);
  1024. NSMutableString* output = [NSMutableString stringWithCapacity:CC_SHA1_DIGEST_LENGTH * 2];
  1025. for(int i = 0; i < CC_SHA1_DIGEST_LENGTH; i++)
  1026. [output appendFormat:@"%02x", digest[i]];
  1027. return output;
  1028. }
  1029. - (NSData *)hashValueMD5OfData:(NSData *)data
  1030. {
  1031. MD5_CTX md5Ctx;
  1032. unsigned char hashValue[MD5_DIGEST_LENGTH];
  1033. if(!MD5_Init(&md5Ctx)) {
  1034. return nil;
  1035. }
  1036. if (!MD5_Update(&md5Ctx, data.bytes, data.length)) {
  1037. return nil;
  1038. }
  1039. if (!MD5_Final(hashValue, &md5Ctx)) {
  1040. return nil;
  1041. }
  1042. return [NSData dataWithBytes:hashValue length:MD5_DIGEST_LENGTH];
  1043. }
  1044. - (NSString *)hexadecimalString:(NSData *)input
  1045. {
  1046. const unsigned char *dataBuffer = (const unsigned char *) [input bytes];
  1047. if (!dataBuffer) {
  1048. return [NSString string];
  1049. }
  1050. NSUInteger dataLength = [input length];
  1051. NSMutableString *hexString = [NSMutableString stringWithCapacity:(dataLength * 2)];
  1052. for (int i = 0; i < dataLength; ++i) {
  1053. [hexString appendString:[NSString stringWithFormat:@"%02lx", (unsigned long) dataBuffer[i]]];
  1054. }
  1055. return [NSString stringWithString:hexString];
  1056. }
  1057. - (NSString *)derToPemPrivateKey:(NSString *)input
  1058. {
  1059. NSInteger substringLength = 65;
  1060. NSMutableString *result = [NSMutableString stringWithString: input];
  1061. for(long i=substringLength;i<=input.length;i++) {
  1062. [result insertString: @"\n" atIndex: i];
  1063. i+=substringLength;
  1064. }
  1065. [result insertString: @"-----BEGIN PRIVATE KEY-----\n" atIndex: 0];
  1066. [result appendString:@"\n-----END PRIVATE KEY-----\n"];
  1067. return result;
  1068. }
  1069. - (NSString *)pubKeyToString:(EVP_PKEY *)pubkey
  1070. {
  1071. char *buf[256];
  1072. FILE *pFile;
  1073. NSString *pkey_string;
  1074. pFile = fmemopen(buf, sizeof(buf), "w");
  1075. PEM_write_PUBKEY(pFile,pubkey);
  1076. fputc('\0', pFile);
  1077. fclose(pFile);
  1078. pkey_string = [NSString stringWithUTF8String:(char *)buf];
  1079. return pkey_string;
  1080. }
  1081. @end