まず最初に、このウェブサイトを読んで助けてくれた皆さんに感謝します。どうもありがとうございました。
私が直面している問題は、objective-c (Iphone) を使用して文字列を暗号化し、Web サーバーで ColdFusion を使用して復号化する必要があることです。使用したいアルゴリズムは AES-128 です。
現時点では、両方のサイトで別々に暗号化/復号化できました。Objective-C で暗号化しているものはすべて Objective-C で復号化できますが、ColdFusion では復号化できません。基本的に、暗号化の結果は同じではありません。
ここに投稿するのと同じくらいシンプルでクリーンなコードがあります。
私のobjective-cの出力は次のとおりです。
暗号化されたデータ: BHmXSHXWOH6McXsttNTgpL5EQmfPCebjVShkZOeHBC8=
私の ColdFusion の出力は次のとおりです。
暗号化されたデータ: G+tdEOfQTtVCQGxW3N5uzlu0mGabRKNxuIdAXArQE80=
ご覧のとおり、それらは異なります:( ColdFusionコードは非常に単純であるため、問題はObjective-Cコードにある可能性があると思います。しかし、正直なところ、今は少し迷っています。助けていただければ幸いです。
ここに私が使用しているコードのコピーがあります:
Objective-C コード:
// Starting point of the application.
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
self.window = [[[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]] autorelease];
NSString *strData = @"This is a plain string.";
NSString *strKey = @"12345678123456781234567812345678";
NSString *strIv = @"1234567812345678";
NSData *data = [NSData dataWithData:[strData dataUsingEncoding:NSUTF8StringEncoding]];
NSData *iv = [NSData dataWithData:[strIv dataUsingEncoding:NSUTF8StringEncoding]];
NSData *key = [NSData dataWithData:[strKey dataUsingEncoding:NSUTF8StringEncoding]];
NSData *encryptedData = [self doCipher:data iv:iv key:key context:kCCEncrypt];
NSLog(@"Encrypted data: %@",[self base64forData:encryptedData]);
}
// Method to encrypt/decrypt data
- (NSData *)doCipher:(NSData *)dataIn
iv:(NSData *)iv
key:(NSData *)symmetricKey
context:(CCOperation)encryptOrDecrypt
{
CCCryptorStatus ccStatus = kCCSuccess;
size_t cryptBytes = 0; // Number of bytes moved to buffer.
NSMutableData *dataOut = [NSMutableData dataWithLength:dataIn.length + kCCBlockSizeAES128];
ccStatus = CCCrypt( encryptOrDecrypt,
kCCAlgorithmAES128,
kCCOptionPKCS7Padding,
symmetricKey.bytes,
kCCKeySizeAES128,
iv.bytes,
dataIn.bytes,
dataIn.length,
dataOut.mutableBytes,
dataOut.length,
&cryptBytes);
if (ccStatus != kCCSuccess) {
NSLog(@"CCCrypt status: %d", ccStatus);
}
dataOut.length = cryptBytes;
return dataOut;
}
// Method to base64 encode data
- (NSString*)base64forData:(NSData*)theData {
const uint8_t* input = (const uint8_t*)[theData bytes];
NSInteger length = [theData length];
static char table[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";
NSMutableData* data = [NSMutableData dataWithLength:((length + 2) / 3) * 4];
uint8_t* output = (uint8_t*)data.mutableBytes;
NSInteger i;
for (i=0; i < length; i += 3) {
NSInteger value = 0;
NSInteger j;
for (j = i; j < (i + 3); j++) {
value <<= 8;
if (j < length) {
value |= (0xFF & input[j]);
}
}
NSInteger theIndex = (i / 3) * 4;
output[theIndex + 0] = table[(value >> 18) & 0x3F];
output[theIndex + 1] = table[(value >> 12) & 0x3F];
output[theIndex + 2] = (i + 1) < length ? table[(value >> 6) & 0x3F] : '=';
output[theIndex + 3] = (i + 2) < length ? table[(value >> 0) & 0x3F] : '=';
}
return [[[NSString alloc] initWithData:data encoding:NSASCIIStringEncoding] autorelease];
}
ColdFusion コード。ここから入手しました:
<cfcontent type="text/html; charset=utf-8">
<cfset thePlainData = "This is a plain string." />
<cfset theKey = toBase64("12345678123456781234567812345678") />
<cfset theAlgorithm = "AES/CBC/PKCS5Padding" />
<cfset theEncoding = "base64" />
<cfset theIV = "1234567812345678" />
<cfset encryptedString = encrypt(thePlainData, theKey, theAlgorithm, theEncoding, theIV) />
<cfoutput>Encrypted data: #encryptedString#</cfoutput>