NCClientEncryption.m 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361
  1. //
  2. // NCClientEncryption.m
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 19/09/17.
  6. // Copyright © 2017 TWS. All rights reserved.
  7. //
  8. // Author Marino Faggiana <m.faggiana@twsweb.it>
  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 "NCClientEncryption.h"
  24. #import "NCBridgeSwift.h"
  25. #import <CommonCrypto/CommonCryptor.h>
  26. #import <CommonCrypto/CommonDigest.h>
  27. #import <Security/Security.h>
  28. #import <openssl/x509.h>
  29. #import <openssl/bio.h>
  30. #import <openssl/err.h>
  31. #import <openssl/pem.h>
  32. #import <openssl/rsa.h>
  33. #import <openssl/pkcs12.h>
  34. #import <openssl/ssl.h>
  35. #import <openssl/err.h>
  36. #import <openssl/bn.h>
  37. #define NSMakeError(description) [NSError errorWithDomain:@"com.nextcloud.nextcloudiOS" code:-1 userInfo:@{NSLocalizedDescriptionKey: description}];
  38. #define AES_KEY_LENGTH 16
  39. #define AES_KEY_LENGTH_BITS 128
  40. #define AES_IVEC_LENGTH 16
  41. #define AES_GCM_TAG_LENGTH 16
  42. @implementation NCClientEncryption
  43. //Singleton
  44. + (id)sharedManager {
  45. static NCClientEncryption *NCClientEncryption = nil;
  46. static dispatch_once_t onceToken;
  47. dispatch_once(&onceToken, ^{
  48. NCClientEncryption = [self new];
  49. });
  50. return NCClientEncryption;
  51. }
  52. - (void)generateCertificateX509WithDirectoryUser:(NSString *)directoryUser finished:(void (^)(NSError *))finished
  53. {
  54. OPENSSL_init_ssl(0, NULL);
  55. OPENSSL_init_crypto(0, NULL);
  56. X509 *x509;
  57. x509 = X509_new();
  58. EVP_PKEY *pkey;
  59. NSError *keyError;
  60. pkey = [self generateRSAKey:&keyError];
  61. if (keyError) {
  62. finished(keyError);
  63. return;
  64. }
  65. //
  66. //NSData *data = [NSData dataWithBytes:pkey length:2048];
  67. //NSString *s = [[NSString alloc] initWithData:[NSData dataWithBytes:pkey length:2048] encoding:NSASCIIStringEncoding];
  68. X509_set_pubkey(x509, pkey);
  69. EVP_PKEY_free(pkey);
  70. // Set Serial Number
  71. ASN1_INTEGER_set(X509_get_serialNumber(x509), 123);
  72. // Set Valididity Date Range
  73. long notBefore = [[NSDate date] timeIntervalSinceDate:[NSDate date]];
  74. long notAfter = [[[NSDate date] dateByAddingTimeInterval:60*60*24*365*10] timeIntervalSinceDate:[NSDate date]]; // 10 year
  75. X509_gmtime_adj((ASN1_TIME *)X509_get0_notBefore(x509), notBefore);
  76. X509_gmtime_adj((ASN1_TIME *)X509_get0_notAfter(x509), notAfter);
  77. X509_NAME *name = X509_get_subject_name(x509);
  78. // Now to add the subject name fields to the certificate
  79. // I use a macro here to make it cleaner.
  80. #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);
  81. // The domain name or IP address that the certificate is issued for.
  82. addName("CN", "nextcloud.com");
  83. // The organizational unit for the cert. Usually this is a department.
  84. addName("OU", "Certificate Authority");
  85. // The organization of the cert.
  86. addName("O", "Nextcloud");
  87. // The city of the organization.
  88. addName("L", "Vicenza");
  89. // The state/province of the organization.
  90. addName("S", "Italy");
  91. // The country (ISO 3166) of the organization
  92. addName("C", "IT");
  93. X509_set_issuer_name(x509, name);
  94. /*
  95. for (SANObject * san in self.options.sans) {
  96. if (!san.value || san.value.length <= 0) {
  97. continue;
  98. }
  99. NSString * prefix = san.type == SANObjectTypeIP ? @"IP:" : @"DNS:";
  100. NSString * value = [NSString stringWithFormat:@"%@%@", prefix, san.value];
  101. NSLog(@"Add subjectAltName %@", value);
  102. X509_EXTENSION * extension = NULL;
  103. ASN1_STRING * asnValue = ASN1_STRING_new();
  104. ASN1_STRING_set(asnValue, (const unsigned char *)[value UTF8String], (int)value.length);
  105. X509_EXTENSION_create_by_NID(&extension, NID_subject_alt_name, 0, asnValue);
  106. X509_add_ext(x509, extension, -1);
  107. }
  108. */
  109. // Specify the encryption algorithm of the signature.
  110. // SHA256 should suit your needs.
  111. if (X509_sign(x509, pkey, EVP_sha256()) < 0) {
  112. finished([self opensslError:@"Error signing the certificate with the key"]);
  113. return;
  114. }
  115. X509_print_fp(stdout, x509);
  116. [self savePEMWithCert:x509 key:pkey directoryUser:directoryUser finished:finished];
  117. }
  118. - (EVP_PKEY *)generateRSAKey:(NSError **)error
  119. {
  120. EVP_PKEY *pkey = EVP_PKEY_new();
  121. if (!pkey) {
  122. *error = [self opensslError:@"Error creating modulus."];
  123. return NULL;
  124. }
  125. BIGNUM *bigNumber = BN_new();
  126. int exponent = RSA_F4;
  127. RSA *rsa = RSA_new();
  128. if (BN_set_word(bigNumber, exponent) < 0) {
  129. *error = [self opensslError:@"Error creating modulus."];
  130. goto cleanup;
  131. }
  132. if (RSA_generate_key_ex(rsa, 2048, bigNumber, NULL) < 0) {
  133. *error = [self opensslError:@"Error generating private key."];
  134. goto cleanup;
  135. }
  136. if (!EVP_PKEY_set1_RSA(pkey, rsa)) {
  137. *error = [self opensslError:@"Unable to generate RSA key"];
  138. goto cleanup;
  139. }
  140. cleanup:
  141. RSA_free(rsa);
  142. BN_free(bigNumber);
  143. return pkey;
  144. }
  145. - (void)savePEMWithCert:(X509 *)x509 key:(EVP_PKEY *)pkey directoryUser:(NSString *)directoryUser finished:(void (^)(NSError *))finished
  146. {
  147. NSString *keyPath = [NSString stringWithFormat:@"%@/privatekey.pem", directoryUser];
  148. NSString *certPath = [NSString stringWithFormat:@"%@/certificate.crt", directoryUser];
  149. FILE *f = fopen([keyPath fileSystemRepresentation], "wb");
  150. // Here you write the private key (pkey) to disk. OpenSSL will encrypt the
  151. // file using the password and cipher you provide.
  152. //if (PEM_write_PrivateKey(f, pkey, EVP_des_ede3_cbc(), (unsigned char *)[password UTF8String], (int)password.length, NULL, NULL) < 0) {
  153. if (PEM_write_PrivateKey(f, pkey, NULL, NULL, 0, NULL, NULL) < 0) {
  154. // Error encrypting or writing to disk.
  155. finished([self opensslError:@"Error saving private key."]);
  156. fclose(f);
  157. }
  158. NSLog(@"Saved key to %@", keyPath);
  159. fclose(f);
  160. f = fopen([certPath fileSystemRepresentation], "wb");
  161. // Here you write the certificate to the disk. No encryption is needed here
  162. // since this is public facing information
  163. if (PEM_write_X509(f, x509) < 0) {
  164. // Error writing to disk.
  165. finished([self opensslError:@"Error saving cert."]);
  166. fclose(f);
  167. }
  168. NSLog(@"Saved cert to %@", certPath);
  169. fclose(f);
  170. finished(nil);
  171. }
  172. - (void)saveP12WithCert:(X509 *)x509 key:(EVP_PKEY *)pkey directoryUser:(NSString *)directoryUser finished:(void (^)(NSError *))finished
  173. {
  174. //PKCS12 * p12 = PKCS12_create([password UTF8String], NULL, pkey, x509, NULL, 0, 0, PKCS12_DEFAULT_ITER, 1, NID_key_usage);
  175. PKCS12 *p12 = PKCS12_create(NULL, NULL, pkey, x509, NULL, 0, 0, PKCS12_DEFAULT_ITER, 1, NID_key_usage);
  176. NSString *path = [NSString stringWithFormat:@"%@/certificate.p12", directoryUser];
  177. FILE *f = fopen([path fileSystemRepresentation], "wb");
  178. if (i2d_PKCS12_fp(f, p12) != 1) {
  179. finished([self opensslError:@"Error writing p12 to disk."]);
  180. fclose(f);
  181. return;
  182. }
  183. NSLog(@"Saved p12 to %@", path);
  184. fclose(f);
  185. finished(nil);
  186. }
  187. - (NSError *)opensslError:(NSString *)description
  188. {
  189. const char *file;
  190. int line;
  191. ERR_peek_last_error_line(&file, &line);
  192. NSString *errorBody = [NSString stringWithFormat:@"%@ - OpenSSL Error %s:%i", description, file, line];
  193. NSLog(@"%@", errorBody);
  194. return NSMakeError(errorBody);
  195. }
  196. - (NSString *)createSHA512:(NSString *)string
  197. {
  198. const char *cstr = [string cStringUsingEncoding:NSUTF8StringEncoding];
  199. NSData *data = [NSData dataWithBytes:cstr length:string.length];
  200. uint8_t digest[CC_SHA512_DIGEST_LENGTH];
  201. CC_SHA512(data.bytes, (unsigned int)data.length, digest);
  202. NSMutableString* output = [NSMutableString stringWithCapacity:CC_SHA512_DIGEST_LENGTH * 2];
  203. for(int i = 0; i < CC_SHA512_DIGEST_LENGTH; i++)
  204. [output appendFormat:@"%02x", digest[i]];
  205. return output;
  206. }
  207. - (void)decryptMetadata:(tableMetadata *)metadata activeUrl:(NSString *)activeUrl
  208. {
  209. NSData *keyData = [[NSData alloc] initWithBase64EncodedString:@"bGzWfQBj2lE4ZnysDWwsIg==" options:0];
  210. NSData *initVectorData = [[NSData alloc] initWithBase64EncodedString:@"rTBECYNekKF+a1HR7z32/Q==" options:0];
  211. // Decrypt
  212. //NSData *dataDecrypt = [[NSFileManager defaultManager] contentsAtPath:[NSString stringWithFormat:@"%@/crypted.dms", activeUrl]];
  213. NSData *dataDecrypt = [[NSFileManager defaultManager] contentsAtPath:[NSString stringWithFormat:@"%@/%@", activeUrl, metadata.fileID]];
  214. //NSData *decryptedData = [self decryptDataAESGCM:dataDecrypt keyData:keyData initVectorData:initVectorData];
  215. // setup key
  216. unsigned char cKey[AES_KEY_LENGTH];
  217. bzero(cKey, sizeof(cKey));
  218. [keyData getBytes:cKey length:AES_KEY_LENGTH];
  219. // setup iv
  220. unsigned char cIv[AES_KEY_LENGTH];
  221. bzero(cIv, AES_KEY_LENGTH);
  222. [initVectorData getBytes:cIv length:AES_KEY_LENGTH];
  223. NSMutableData *plainText = [[NSMutableData alloc] initWithCapacity:dataDecrypt.length];
  224. [self aes256gcmDecrypt:dataDecrypt plaintext:&plainText aad:nil key:cKey ivec:cIv tag:nil];
  225. if (plainText != nil)
  226. [plainText writeToFile:[NSString stringWithFormat:@"%@/%@", activeUrl, @"decrypted.jpg"] atomically:YES];
  227. }
  228. // encrypt plaintext.
  229. // key, ivec and tag buffers are required, aad is optional
  230. // depending on your use, you may want to convert key, ivec, and tag to NSData/NSMutableData
  231. - (BOOL) aes256gcmEncrypt:(NSData*)plaintext ciphertext:(NSMutableData**)ciphertext aad:(NSData*)aad key:(const unsigned char*)key ivec:(const unsigned char*)ivec tag:(unsigned char*)tag {
  232. int status = 0;
  233. *ciphertext = [NSMutableData dataWithLength:[plaintext length]];
  234. if (! *ciphertext)
  235. return NO;
  236. // set up to Encrypt AES 256 GCM
  237. int numberOfBytes = 0;
  238. EVP_CIPHER_CTX *ctx = EVP_CIPHER_CTX_new();
  239. EVP_EncryptInit_ex (ctx, EVP_aes_128_gcm(), NULL, NULL, NULL);
  240. // set the key and ivec
  241. EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_GCM_SET_IVLEN, AES_IVEC_LENGTH, NULL);
  242. EVP_EncryptInit_ex (ctx, NULL, NULL, key, ivec);
  243. // add optional AAD (Additional Auth Data)
  244. if (aad)
  245. status = EVP_EncryptUpdate( ctx, NULL, &numberOfBytes, [aad bytes], (int)[aad length]);
  246. unsigned char * ctBytes = [*ciphertext mutableBytes];
  247. EVP_EncryptUpdate (ctx, ctBytes, &numberOfBytes, [plaintext bytes], (int)[plaintext length]);
  248. status = EVP_EncryptFinal_ex (ctx, ctBytes+numberOfBytes, &numberOfBytes);
  249. if (status && tag) {
  250. status = EVP_CIPHER_CTX_ctrl (ctx, EVP_CTRL_GCM_GET_TAG, AES_GCM_TAG_LENGTH, tag);
  251. }
  252. EVP_CIPHER_CTX_free(ctx);
  253. return (status != 0); // OpenSSL uses 1 for success
  254. }
  255. // decrypt ciphertext.
  256. // key, ivec and tag buffers are required, aad is optional
  257. // depending on your use, you may want to convert key, ivec, and tag to NSData/NSMutableData
  258. - (BOOL)aes256gcmDecrypt:(NSData*)ciphertext plaintext:(NSMutableData**)plaintext aad:(NSData*)aad key:(const unsigned char *)key ivec:(const unsigned char *)ivec tag:(unsigned char *)tag
  259. {
  260. int status = 0;
  261. if (! ciphertext || !plaintext || !key || !ivec)
  262. return NO;
  263. *plaintext = [NSMutableData dataWithLength:[ciphertext length]];
  264. if (! *plaintext)
  265. return NO;
  266. // set up to Decrypt AES 128 GCM
  267. int numberOfBytes = 0;
  268. EVP_CIPHER_CTX *ctx = EVP_CIPHER_CTX_new();
  269. EVP_DecryptInit_ex (ctx, EVP_aes_128_gcm(), NULL, NULL, NULL);
  270. // set the key and ivec
  271. EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_GCM_SET_IVLEN, AES_IVEC_LENGTH, NULL);
  272. status = EVP_DecryptInit_ex (ctx, NULL, NULL, key, ivec);
  273. // Set expected tag value. A restriction in OpenSSL 1.0.1c and earlier requires the tag before any AAD or ciphertext
  274. if (status && tag)
  275. EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_GCM_SET_TAG, AES_GCM_TAG_LENGTH, tag);
  276. // add optional AAD (Additional Auth Data)
  277. if (aad)
  278. EVP_DecryptUpdate(ctx, NULL, &numberOfBytes, [aad bytes], (int)[aad length]);
  279. status = EVP_DecryptUpdate (ctx, [*plaintext mutableBytes], &numberOfBytes, [ciphertext bytes], (int)[ciphertext length]);
  280. if (! status) {
  281. //DDLogError(@"aes256gcmDecrypt: EVP_DecryptUpdate failed");
  282. return NO;
  283. }
  284. EVP_DecryptFinal_ex (ctx, NULL, &numberOfBytes);
  285. EVP_CIPHER_CTX_free(ctx);
  286. return (status != 0); // OpenSSL uses 1 for success
  287. }
  288. @end