session-ios/Signal/src/environment/Release.h
Frederic Jacobs c6d44e59e2 TextSecureKit Refactoring
- Using same clang format file for old and new files.
- Moving out all TextSecure code to allow other clients (OS X, iOS) to
  integrate easily TextSecure functionality.
- Use TextSecure API to signup.
2015-12-22 23:41:10 +01:00

18 lines
535 B
Objective-C

#import <Foundation/Foundation.h>
#import "DH3KKeyAgreementProtocol.h"
#import "EC25KeyAgreementProtocol.h"
#import "Environment.h"
@interface Release : NSObject
/// Connects to actual production infrastructure
+ (Environment *)releaseEnvironmentWithLogging:(id<Logging>)logging;
+ (Environment *)stagingEnvironmentWithLogging:(id<Logging>)logging;
/// Fake environment with no logging
+ (Environment *)unitTestEnvironment:(NSArray *)testingAndLegacyOptions;
+ (DH3KKeyAgreementProtocol *)supportedDH3KKeyAgreementProtocol;
@end