I have the code :
byte[] messageCrypte = encryptCipher.doFinal(messageACrypter);
String ms = new String(messageCrypte);
byte[] bt = ms.getBytes();
bt has not the same format as messageCrypted.
Why?
Boudewijn Dijkstra - 22 Jun 2005 19:30 GMT
>I have the code :
>
[quoted text clipped - 3 lines]
>
> bt has not the same format as messageCrypted.
What do you mean by 'format'?
> Why?
If the default character encoding is lossy, then characters could be lost in
the byte-char-byte conversion.
Alan Krueger - 22 Jun 2005 22:29 GMT
> I have the code :
>
[quoted text clipped - 5 lines]
>
> Why?
Care to post some specifics?
Kevin McMurtrie - 23 Jun 2005 08:03 GMT
> I have the code :
>
[quoted text clipped - 5 lines]
>
> Why?
Because you applied character set translations. Look at the source
code. There are deprecated String methods that operate on raw bytes
without translation. Better yet, don't use String for byte array
storage.