mirror of
https://github.com/samsonjs/arq_restore.git
synced 2026-04-26 14:57:39 +00:00
15 lines
295 B
Objective-C
15 lines
295 B
Objective-C
//
|
|
// SignatureV2Provider.h
|
|
// Arq
|
|
//
|
|
// Created by Stefan Reitshamer on 9/16/12.
|
|
//
|
|
//
|
|
|
|
|
|
@interface SignatureV2Provider : NSObject {
|
|
NSData *secretKeyData;
|
|
}
|
|
- (id)initWithSecretKey:(NSString *)secret;
|
|
- (NSString *)signatureForHTTPMethod:(NSString *)theMethod url:(NSURL *)theURL;
|
|
@end
|