Expanded open file functionality to use available apps.
[pithos-ios] / Classes / Base64.h
1 //
2 //  Base64.h
3 //  OpenStack
4 //
5 //  Created by Mike Mayo on 8/17/10.
6 //  The OpenStack project is provided under the Apache 2.0 license.
7 //
8
9 #import <Foundation/Foundation.h>
10
11
12 @interface Base64 : NSObject {
13
14 }
15
16 + (NSString*) encode:(const uint8_t*) input length:(NSInteger) length;
17 + (NSString*) encode:(NSData*) rawBytes;
18 + (NSData*) decode:(const char*) string length:(NSInteger) inputLength;
19 + (NSData*) decode:(NSString*) string;
20
21 @end