hackedteam/core-ios

View on GitHub
ios-newsstand-app/newsstand-app/NSMutableData+AES128.h

Summary

Maintainability
Test Coverage
/*
 * NSMutableData Category Header
 *  This is a category for NSMutableData in order to provide in-place encryption
 *  capabilities
 *
 * 
 * Created on 08/04/2009
 * Copyright (C) HT srl 2009. All rights reserved
 *
 */

#import <Foundation/Foundation.h>
#import <CommonCrypto/CommonCryptor.h>


@interface NSMutableData (AES128) 

- (CCCryptorStatus)__encryptWithKey: (NSData *)aKey;
- (CCCryptorStatus)encryptWithKey: (NSData *)aKey;
- (CCCryptorStatus)decryptWithKey: (NSData *)aKey;
- (NSMutableData*)encryptPKCS7:(NSData*)aKey;
- (NSMutableData*)decryptPKCS7:(NSData*)aKey;
- (void)removePadding;

@end