mirror of
https://github.com/glebd/cocoafob.git
synced 2026-05-31 23:17:35 +00:00
19 lines
361 B
Objective-C
19 lines
361 B
Objective-C
//
|
|
// NSData+PECrypt.h
|
|
// CocoaFob
|
|
//
|
|
// Created by Gleb Dolgich on 09/02/2009.
|
|
// Follow me on Twitter @gbd
|
|
// Copyright (C) 2009 PixelEspresso. All rights reserved.
|
|
// Licensed under CC Attribution License 3.0 <http://creativecommons.org/licenses/by/3.0/>
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
|
|
@interface NSData (PECrypt)
|
|
|
|
- (NSString *)base32;
|
|
|
|
@end
|