Overview
Comment: | Rename initWithStruct: to initWithX509Struct: to avoid potential conflicts |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
16079bc1a081009db3fae806e462adbc |
User & Date: | florob@babelmonkeys.de on 2011-10-24 00:06:41 |
Other Links: | manifest | tags |
Context
2011-10-29
| ||
22:50 | Add defines for some common OIDs check-in: 5deab0aa50 user: florob@babelmonkeys.de tags: trunk | |
2011-10-24
| ||
00:06 | Rename initWithStruct: to initWithX509Struct: to avoid potential conflicts check-in: 16079bc1a0 user: florob@babelmonkeys.de tags: trunk | |
00:04 | Add missing autorelease call check-in: 7a08940b40 user: florob@babelmonkeys.de tags: trunk | |
Changes
Modified src/SSLSocket.m from [a3a5b1090c] to [2c8d4cbc06].
︙ | |||
354 355 356 357 358 359 360 | 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 | - + | - (X509Certificate*)peerCertificate { X509 *certificate = SSL_get_peer_certificate(ssl); if (!certificate) return nil; return [[[X509Certificate alloc] |
︙ |
Modified src/X509Certificate.h from [61c41fa21c] to [f0e2fb7daf].
︙ | |||
31 32 33 34 35 36 37 | 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 | - + | } #ifdef OF_HAVE_PROPERTIES // @property (opts) Type *name; #endif - initWithFile: (OFString*)file; |
Modified src/X509Certificate.m from [dae3d0c933] to [ea8865b8c0].
︙ | |||
56 57 58 59 60 61 62 | 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 | - + | [self release]; @throw e; } return self; } |
︙ |