mirror of
https://github.com/samsonjs/arq_restore.git
synced 2026-04-05 11:05:51 +00:00
14 lines
265 B
Objective-C
14 lines
265 B
Objective-C
//
|
|
// S3Signer.h
|
|
// Arq
|
|
//
|
|
// Created by Stefan Reitshamer on 12/30/10.
|
|
// Copyright 2010 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
|
@protocol S3Signer <NSObject>
|
|
- (NSString *)sign:(NSString *)theString error:(NSError **)error;
|
|
@end
|