Estoy encriptando una cadena en Object-C y también encriptando la misma cadena en Java usando AES y estoy viendo algunos problemas extraños. La primera parte del resultado coincide con un cierto punto, pero luego es diferente, por lo tanto, cuando voy a descodificar el resultado de Java en el iPhone, no puede descifrarlo.¿Cómo puedo hacer que mi encriptación AES sea idéntica entre Java y Objective-C (iPhone)?
Estoy usando una cadena fuente de "Ahora, entonces, ¿de qué se trata todo esto? ¿Lo sabías?" Utilizando la clave "123456789"
El código object-c para encriptar es el siguiente: NOTA: es una categoría NSData así que suponga que se llama al método en un objeto NSData para que 'self' contenga los datos de bytes cifrar
- (NSData *)AESEncryptWithKey:(NSString *)key {
char keyPtr[kCCKeySizeAES128+1]; // room for terminator (unused)
bzero(keyPtr, sizeof(keyPtr)); // fill with zeroes (for padding)
// fetch key data
[key getCString:keyPtr maxLength:sizeof(keyPtr) encoding:NSUTF8StringEncoding];
NSUInteger dataLength = [self length];
//See the doc: For block ciphers, the output size will always be less than or
//equal to the input size plus the size of one block.
//That's why we need to add the size of one block here
size_t bufferSize = dataLength + kCCBlockSizeAES128;
void *buffer = malloc(bufferSize);
size_t numBytesEncrypted = 0;
CCCryptorStatus cryptStatus = CCCrypt(kCCEncrypt, kCCAlgorithmAES128, kCCOptionPKCS7Padding,
keyPtr, kCCKeySizeAES128,
NULL /* initialization vector (optional) */,
[self bytes], dataLength, /* input */
buffer, bufferSize, /* output */
&numBytesEncrypted);
if (cryptStatus == kCCSuccess) {
//the returned NSData takes ownership of the buffer and will free it on deallocation
return [NSData dataWithBytesNoCopy:buffer length:numBytesEncrypted];
}
free(buffer); //free the buffer;
return nil;
}
Y el código de cifrado de java es ...
public byte[] encryptData(byte[] data, String key) {
byte[] encrypted = null;
Security.addProvider(new org.bouncycastle.jce.provider.BouncyCastleProvider());
byte[] keyBytes = key.getBytes();
SecretKeySpec keySpec = new SecretKeySpec(keyBytes, "AES");
try {
Cipher cipher = Cipher.getInstance("AES/ECB/PKCS7Padding", "BC");
cipher.init(Cipher.ENCRYPT_MODE, keySpec);
encrypted = new byte[cipher.getOutputSize(data.length)];
int ctLength = cipher.update(data, 0, data.length, encrypted, 0);
ctLength += cipher.doFinal(encrypted, ctLength);
} catch (Exception e) {
logger.log(Level.SEVERE, e.getMessage());
} finally {
return encrypted;
}
}
La salida hexadecimal del código Objective-C es -
7a68ea36 8288c73d f7c45d8d 22432577 9693920a 4fae38b2 2e4bdcef 9aeb8afe 69394f3e 1eb62fa7 74da2b5c 8d7b3c89 a295d306 f1f90349 6899ac34 63a6efa0
y la salida de Java es -
7a68ea36 8288c73d f7c45d8d 22432577 e66b32f9 772b6679 d7c0cb69 037b8740 883f8211 748229f4 723984beb 50b5aea1 f17594c9 fad2d05e e0926805 572156d
Como puede ver, todo está bien hasta -
7a68ea36 8288c73d f7c45d8d 22432577
que supongo que tienen algunas de las configuraciones diferentes, pero no se puede trabajar en lo que, He intentado cambiar entre el BCE y CBC en el lado de Java y no tuvo ningún efecto.
¿Alguien puede ayudar? por favor ...
Ustedes me salvan de una pesadilla autosuficiente ... ¡Gracias! – Shade