Jabber Guest iOS SDK
AES.h
1 //
2 // AES.h
3 // JabberGuestSDK
4 //
5 // Created by davesm on 5/21/13.
6 // Copyright (c) 2013 Cisco. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 
11 @interface AES : NSObject
12 
13 @property (nonatomic, readonly) NSData * initializationVector;
14 
15 - (id)init;
16 - (id)initWithIV:(NSData *)iv;
17 - (NSData *)encrypt:(NSData *)plainText;
18 - (NSData *)decrypt:(NSData *)cipherText;
19 
20 @end