session-ios/Signal/src/environment/Release.h

19 lines
535 B
C
Raw Normal View History

2014-05-06 19:41:08 +02:00
#import <Foundation/Foundation.h>
#import "DH3KKeyAgreementProtocol.h"
#import "EC25KeyAgreementProtocol.h"
#import "Environment.h"
2014-05-06 19:41:08 +02:00
@interface Release : NSObject
/// Connects to actual production infrastructure
+ (Environment *)releaseEnvironmentWithLogging:(id<Logging>)logging;
2014-05-06 19:41:08 +02:00
+ (Environment *)stagingEnvironmentWithLogging:(id<Logging>)logging;
2015-10-12 13:31:54 +02:00
2014-05-06 19:41:08 +02:00
/// Fake environment with no logging
+ (Environment *)unitTestEnvironment:(NSArray *)testingAndLegacyOptions;
2014-05-06 19:41:08 +02:00
+ (DH3KKeyAgreementProtocol *)supportedDH3KKeyAgreementProtocol;
2014-05-06 19:41:08 +02:00
@end