Differences From Artifact [dae3d0c933]:
- File
src/X509Certificate.m
— part of check-in
[ca9555b85f]
at
2011-10-08 03:44:36
on branch trunk
— Add support for fetching some SAN types from X509 certificates
Note: valgrind complains about uninitialized data when UTF8Strings are passed to
ASN1_STRING_to_UTF8(), however the result is fine. Accessing the same data by
other means does not yield the error, I therefore suspect it a false positive. (user: florob@babelmonkeys.de, size: 6931) [annotate] [blame] [check-ins using]
To Artifact [ea8865b8c0]:
- File src/X509Certificate.m — part of check-in [16079bc1a0] at 2011-10-24 00:06:41 on branch trunk — Rename initWithStruct: to initWithX509Struct: to avoid potential conflicts (user: florob@babelmonkeys.de, size: 6935) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
56 57 58 59 60 61 62 | [self release]; @throw e; } return self; } | | | 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 | [self release]; @throw e; } return self; } - initWithX509Struct: (X509*)cert { self = [self init]; @try { crt = X509_dup(cert); if (crt == NULL) @throw [OFInitializationFailedException |
︙ | ︙ |