Differences From Artifact [bef6dd357c]:
- File
src/OFX509Certificate.m
— part of check-in
[43864736e7]
at
2024-11-16 22:36:57
on branch tls-server
— OFTLSStream: Add API for server mode
Not implemented using any TLS library yet. (user: js, size: 1189) [annotate] [blame] [check-ins using]
To Artifact [020fab5772]:
- File src/OFX509Certificate.m — part of check-in [2cb48ceaf1] at 2024-11-18 00:38:04 on branch tls-server — OFGnuTLSTLSStream: Add server support (user: js, size: 1433) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
34 35 36 37 38 39 40 41 | @throw [OFNotImplementedException exceptionWithSelector: _cmd object: self]; } return [super alloc]; } @end | > > > > > > > > > > | 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | @throw [OFNotImplementedException exceptionWithSelector: _cmd object: self]; } return [super alloc]; } + (OFArray OF_GENERIC(OFX509Certificate *) *) certificateChainFromIRI: (OFIRI *)IRI { if (OFX509CertificateImplementation != Nil) return [OFX509CertificateImplementation certificateChainFromIRI: IRI]; OF_UNRECOGNIZED_SELECTOR } @end |