github.com/slspeek/camlistore_namedsearch@v0.0.0-20140519202248-ed6f70f7721a/clients/ios-objc/photobackup/LACamliClient/LACamliUtil.h (about)

     1  //
     2  //  LACamliUtil.h
     3  //  photobackup
     4  //
     5  //  Created by Nick O'Neill on 11/29/13.
     6  //  Copyright (c) 2013 The Camlistore Authors. All rights reserved.
     7  //
     8  
     9  #import <Foundation/Foundation.h>
    10  
    11  @interface LACamliUtil : NSObject
    12  
    13  + (NSString*)base64EncodedStringFromString:(NSString*)string;
    14  + (NSString*)passwordForUsername:(NSString*)username;
    15  + (BOOL)savePassword:(NSString*)password forUsername:(NSString*)username;
    16  + (NSString*)blobRef:(NSData*)data;
    17  + (NSString*)rfc3339StringFromDate:(NSDate*)date;
    18  
    19  + (void)logText:(NSArray*)logs;
    20  + (void)statusText:(NSArray*)statuses;
    21  + (void)errorText:(NSArray*)errors;
    22  
    23  @end