Use search bar to show only folder objects that start with given filter
[pithos-ios] / Classes / Keychain.h
1 //
2 //  Keychain.h
3 //  OpenStack
4 //
5 //  Based on KeychainWrapper in BadassVNC by Dylan Barrie
6 //
7 //  Created by Mike Mayo on 10/1/10.
8 //  The OpenStack project is provided under the Apache 2.0 license.
9 //
10
11 #import <Foundation/Foundation.h>
12
13 // This wrapper helps us deal with Keychain-related things 
14 // such as storing API keys and passwords
15
16 @interface Keychain : NSObject {
17 }
18
19 + (BOOL)setString:(NSString *)string forKey:(NSString *)key;
20 + (NSString *)getStringForKey:(NSString *)key;
21
22 @end