Advertisement
Guest User

Untitled

a guest
May 8th, 2012
1,862
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.90 KB | None | 0 0
  1. SecCertificateRef: How to get the certificate information?
  2. Version: 3 (0x2)
  3. Serial Number: 1 (0x1)
  4. Signature Algorithm: md5WithRSAEncryption
  5. Issuer: C=XY, ST=Austria, L=Graz, O=TrustMe Ltd, OU=Certificate Authority, CN=CA/[email protected]
  6. Validity
  7. Not Before: Oct 29 17:39:10 2000 GMT
  8. Not After : Oct 29 17:39:10 2001 GMT
  9. Subject: C=DE, ST=Austria, L=Vienna, O=Home, OU=Web Lab, CN=anywhere.com/[email protected]
  10. Subject Public Key Info:
  11. Public Key Algorithm: rsaEncryption
  12. RSA Public Key: (1024 bit)
  13. Modulus (1024 bit):
  14. 00:c4:40:4c:6e:14:1b:61:36:84:24:b2:61:c0:b5:
  15. d7:e4:7a:a5:4b:94:ef:d9:5e:43:7f:c1:64:80:fd:
  16. 9f:50:41:6b:70:73:80:48:90:f3:58:bf:f0:4c:b9:
  17. 90:32:81:59:18:16:3f:19:f4:5f:11:68:36:85:f6:
  18. 1c:a9:af:fa:a9:a8:7b:44:85:79:b5:f1:20:d3:25:
  19. 7d:1c:de:68:15:0c:b6:bc:59:46:0a:d8:99:4e:07:
  20. 50:0a:5d:83:61:d4:db:c9:7d:c3:2e:eb:0a:8f:62:
  21. 8f:7e:00:e1:37:67:3f:36:d5:04:38:44:44:77:e9:
  22. f0:b4:95:f5:f9:34:9f:f8:43
  23. Exponent: 65537 (0x10001)
  24. X509v3 extensions:
  25. X509v3 Subject Alternative Name:
  26. Netscape Comment:
  27. mod_ssl generated test server certificate
  28. Netscape Cert Type:
  29. SSL Server
  30. Signature Algorithm: md5WithRSAEncryption
  31. 12:ed:f7:b3:5e:a0:93:3f:a0:1d:60:cb:47:19:7d:15:59:9b:
  32. 3b:2c:a8:a3:6a:03:43:d0:85:d3:86:86:2f:e3:aa:79:39:e7:
  33. 82:20:ed:f4:11:85:a3:41:5e:5c:8d:36:a2:71:b6:6a:08:f9:
  34. cc:1e:da:c4:78:05:75:8f:9b:10:f0:15:f0:9e:67:a0:4e:a1:
  35. 4d:3f:16:4c:9b:19:56:6a:f2:af:89:54:52:4a:06:34:42:0d:
  36. d5:40:25:6b:b0:c0:a2:03:18:cd:d1:07:20:b6:e5:c5:1e:21:
  37. 44:e7:c5:09:d2:d5:94:9d:6c:13:07:2f:3b:7c:4c:64:90:bf:
  38. ff:8e
  39.  
  40. #import <openssl/x509.h>
  41.  
  42. // ...
  43.  
  44. NSData *certificateData = (NSData *) SecCertificateCopyData(certificate);
  45.  
  46. const unsigned char *certificateDataBytes = (const unsigned char *)[certificateData bytes];
  47. X509 *certificateX509 = d2i_X509(NULL, &certificateDataBytes, [certificateData length]);
  48.  
  49. NSString *issuer = CertificateGetIssuerName(certificateX509);
  50. NSDate *expiryDate = CertificateGetExpiryDate(certificateX509);
  51.  
  52. static NSString * CertificateGetIssuerName(X509 *certificateX509)
  53. {
  54. NSString *issuer = nil;
  55. if (certificateX509 != NULL) {
  56. X509_NAME *issuerX509Name = X509_get_issuer_name(certificateX509);
  57.  
  58. if (issuerX509Name != NULL) {
  59. int nid = OBJ_txt2nid("O"); // organization
  60. int index = X509_NAME_get_index_by_NID(issuerX509Name, nid, -1);
  61.  
  62. X509_NAME_ENTRY *issuerNameEntry = X509_NAME_get_entry(issuerX509Name, index);
  63.  
  64. if (issuerNameEntry) {
  65. ASN1_STRING *issuerNameASN1 = X509_NAME_ENTRY_get_data(issuerNameEntry);
  66.  
  67. if (issuerNameASN1 != NULL) {
  68. unsigned char *issuerName = ASN1_STRING_data(issuerNameASN1);
  69. issuer = [NSString stringWithUTF8String:(char *)issuerName];
  70. }
  71. }
  72. }
  73. }
  74.  
  75. return issuer;
  76. }
  77.  
  78. static NSDate *CertificateGetExpiryDate(X509 *certificateX509)
  79. {
  80. NSDate *expiryDate = nil;
  81.  
  82. if (certificateX509 != NULL) {
  83. ASN1_TIME *certificateExpiryASN1 = X509_get_notAfter(certificateX509);
  84. if (certificateExpiryASN1 != NULL) {
  85. ASN1_GENERALIZEDTIME *certificateExpiryASN1Generalized = ASN1_TIME_to_generalizedtime(certificateExpiryASN1, NULL);
  86. if (certificateExpiryASN1Generalized != NULL) {
  87. unsigned char *certificateExpiryData = ASN1_STRING_data(certificateExpiryASN1Generalized);
  88.  
  89. // ASN1 generalized times look like this: "20131114230046Z"
  90. // format: YYYYMMDDHHMMSS
  91. // indices: 01234567890123
  92. // 1111
  93. // There are other formats (e.g. specifying partial seconds or
  94. // time zones) but this is good enough for our purposes since
  95. // we only use the date and not the time.
  96. //
  97. // (Source: http://www.obj-sys.com/asn1tutorial/node14.html)
  98.  
  99. NSString *expiryTimeStr = [NSString stringWithUTF8String:(char *)certificateExpiryData];
  100. NSDateComponents *expiryDateComponents = [[NSDateComponents alloc] init];
  101.  
  102. expiryDateComponents.year = [[expiryTimeStr substringWithRange:NSMakeRange(0, 4)] intValue];
  103. expiryDateComponents.month = [[expiryTimeStr substringWithRange:NSMakeRange(4, 2)] intValue];
  104. expiryDateComponents.day = [[expiryTimeStr substringWithRange:NSMakeRange(6, 2)] intValue];
  105. expiryDateComponents.hour = [[expiryTimeStr substringWithRange:NSMakeRange(8, 2)] intValue];
  106. expiryDateComponents.minute = [[expiryTimeStr substringWithRange:NSMakeRange(10, 2)] intValue];
  107. expiryDateComponents.second = [[expiryTimeStr substringWithRange:NSMakeRange(12, 2)] intValue];
  108.  
  109. NSCalendar *calendar = [NSCalendar currentCalendar];
  110. expiryDate = [calendar dateFromComponents:expiryDateComponents];
  111.  
  112. [expiryDateComponents release];
  113. }
  114. }
  115. }
  116.  
  117. return expiryDate;
  118. }
  119.  
  120. NSURLAuthenticationChallenge *challenge;
  121. SecTrustResultType trustResult;
  122. SecTrustRef trust = challenge.protectionSpace.serverTrust;
  123. OSStatus err = SecTrustEvaluate(trust, &trustResult);
  124. SecCertificateRef certificate = SecGetLeafCertificate(trust); // See Apple docs for implementation of SecGetLeafCertificate
  125.  
  126. +(NSString*)stringFromCerificateWithLongwindedDescription:(SecCertificateRef) certificateRef {
  127. if (certificateRef == NULL)
  128. return @"";
  129.  
  130. CFStringRef commonNameRef;
  131. OSStatus status;
  132. if ((status=SecCertificateCopyCommonName(certificateRef, &commonNameRef)) != errSecSuccess) {
  133. NSLog(@"Could not extract name from cert: %@",
  134. SecCopyErrorMessageString(status, NULL));
  135. return @"Unreadable cert";
  136. };
  137.  
  138. CFStringRef summaryRef = SecCertificateCopySubjectSummary(certificateRef);
  139. if (summaryRef == NULL)
  140. summaryRef = CFRetain(commonNameRef);
  141.  
  142. CFErrorRef error;
  143.  
  144. const void *keys[] = { kSecOIDX509V1SubjectName, kSecOIDX509V1IssuerName };
  145. const void *labels[] = { "Subject", "Issuer" };
  146. CFArrayRef keySelection = CFArrayCreate(NULL, keys , sizeof(keys)/sizeof(keys[0]), &kCFTypeArrayCallBacks);
  147.  
  148. CFDictionaryRef vals = SecCertificateCopyValues(certificateRef, keySelection,&error);
  149. NSMutableString *longDesc = [[NSMutableString alloc] init];
  150.  
  151. for(int i = 0; i < sizeof(keys)/sizeof(keys[0]); i++) {
  152. CFDictionaryRef dict = CFDictionaryGetValue(vals, keys[i]);
  153. CFArrayRef values = CFDictionaryGetValue(dict, kSecPropertyKeyValue);
  154. if (values == NULL)
  155. continue;
  156. [longDesc appendFormat:@"%s:%@nn", labels[i], [NSString stringFromDNwithSubjectName:values]];
  157. }
  158.  
  159. CFRelease(vals);
  160. CFRelease(summaryRef);
  161. CFRelease(commonNameRef);
  162.  
  163. return longDesc;
  164. }
  165.  
  166. +(NSString *)stringFromDNwithSubjectName:(CFArrayRef)array {
  167. NSMutableString * out = [[NSMutableString alloc] init];
  168. const void *keys[] = { kSecOIDCommonName, kSecOIDEmailAddress, kSecOIDOrganizationalUnitName, kSecOIDOrganizationName, kSecOIDLocalityName, kSecOIDStateProvinceName, kSecOIDCountryName };
  169. const void *labels[] = { "CN", "E", "OU", "O", "L", "S", "C", "E" };
  170.  
  171. for(int i = 0; i < NVOID(keys); i++) {
  172. for (CFIndex n = 0 ; n < CFArrayGetCount(array); n++) {
  173. CFDictionaryRef dict = CFArrayGetValueAtIndex(array, n);
  174. if (CFGetTypeID(dict) != CFDictionaryGetTypeID())
  175. continue;
  176. CFTypeRef dictkey = CFDictionaryGetValue(dict, kSecPropertyKeyLabel);
  177. if (!CFEqual(dictkey, keys[i]))
  178. continue;
  179. CFStringRef str = (CFStringRef) CFDictionaryGetValue(dict, kSecPropertyKeyValue);
  180. [out appendFormat:@"%s=%@ ", labels[i], (__bridge NSString*)str];
  181. }
  182. }
  183. return [NSString stringWithString:out];
  184. }
  185.  
  186. public void Show (SecCertificate sc)
  187. {
  188. // get the SecCertificate "raw", i.e. ASN.1 encoded, data
  189. byte[] data = sc.DerData.ToArray<byte> ();
  190. // the build the managed X509Certificate2 from it
  191. X509Certificate2 cer = new X509Certificate2 (data);
  192. // to get all properties / methods available in .NET (pretty exhaustive)
  193. Console.WriteLine ("SubjectName: {0}", cer.Subject);
  194. Console.WriteLine ("IssuerName: {0}", cer.Issuer);
  195. Console.WriteLine ("NotBefore: {0}", cer.NotBefore);
  196. Console.WriteLine ("NotAfter: {0}", cer.NotAfter);
  197. Console.WriteLine ("SerialNumber: {0}", cer.SerialNumber);
  198. // ...
  199. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement