arq_restore/cocoastack/crypto/OpenSSL.h
2014-07-28 14:20:07 -04:00

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