mirror of
https://github.com/samsonjs/arq_restore.git
synced 2026-03-25 09:25:53 +00:00
18 lines
301 B
Objective-C
18 lines
301 B
Objective-C
//
|
|
// OpenSSL.h
|
|
// Arq
|
|
//
|
|
// Created by Stefan Reitshamer on 10/8/12.
|
|
// Copyright (c) 2012 Stefan Reitshamer. All rights reserved.
|
|
//
|
|
|
|
#import <openssl/ssl.h>
|
|
|
|
@interface OpenSSL : NSObject {
|
|
|
|
}
|
|
+ (BOOL)initializeSSL:(NSError **)error;
|
|
+ (SSL_CTX *)context;
|
|
+ (NSString *)errorMessage;
|
|
|
|
@end
|