iPhone アプリで、SSL サーバー ソケット (Java) に接続したいと考えています。私は自分の証明書を持っています。アプリに追加しようとしていますが、その方法がわかりません。
SSL を使用しない場合、通信は次のように機能します。
@interface ViewController ()
@end
@implementation ViewController
@synthesize openResponse;
@synthesize general;
@synthesize response = _response;
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
}
- (void)viewDidUnload
{
[self setOpenResponse:nil];
[self setGeneral:nil];
[super viewDidUnload];
// Release any retained subviews of the main view.
}
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return (interfaceOrientation != UIInterfaceOrientationPortraitUpsideDown);
}
- (IBAction)open:(id)sender {
[self initNetworkCommunication];
Byte sendBuffer[4];
sendBuffer[0]=0x6b;
sendBuffer[1]=0x6f;
sendBuffer[2]=0x6c;
sendBuffer[3]=0x61;
[outputStream write:sendBuffer maxLength:4];
}
- (void)initNetworkCommunication{
CFReadStreamRef readStream;
CFWriteStreamRef writeStream;
CFStreamCreatePairWithSocketToHost(NULL, (CFStringRef)@"mypage.com", 4444, &readStream, &writeStream);
inputStream = (__bridge NSInputStream *)readStream;
outputStream = (__bridge NSOutputStream *) writeStream;
[inputStream setDelegate:self];
[outputStream setDelegate:self];
[inputStream scheduleInRunLoop:[NSRunLoop currentRunLoop] forMode:NSDefaultRunLoopMode];
[outputStream scheduleInRunLoop:[NSRunLoop currentRunLoop] forMode:NSDefaultRunLoopMode];
[inputStream open];
[outputStream open];
}
- (void)stream:(NSStream *)theStream handleEvent:(NSStreamEvent)streamEvent
{
switch (streamEvent) {
case NSStreamEventOpenCompleted: {
NSLog(@"Stream opened");
break;
}
case NSStreamEventHasBytesAvailable: {
NSLog(@"Data!");
if (theStream == inputStream) {
uint8_t buffer[1024];
int len;
while ([inputStream hasBytesAvailable]) {
len = [inputStream read:buffer maxLength:sizeof(buffer)];
if (len > 0) {
NSString *output = [[NSString alloc] initWithBytes:buffer length:len encoding:NSASCIIStringEncoding];
if (nil != output) {
NSLog(@"server said: %@", output);
self.response = output;
NSString *responseData =[[NSString alloc] initWithFormat:@"El servidor dice: %@",self.response];
self.openResponse.text = responseData;
}
}
}
}
break;
break;
}
case NSStreamEventErrorOccurred: {
NSLog(@"Can not connect to the host!");
break;
}
case NSStreamEventEndEncountered: {
NSLog(@"End encountered");
break;
}
default:
NSLog(@"Unknown event");
break;
}
}
@end
このコードに証明書を追加するにはどうすればよいですか?