Utilisation de la fonction de: http://msdn.microsoft.com/en-us/library/system.security.cryptography.rijndaelmanaged.aspxComment convertir un tableau d'octets en chaîne?
public static byte[] encryptStringToBytes_AES(string plainText, byte[] Key, byte[] IV)
Comme vous pouvez le voir retourne un tableau d'octets, je veux convertir le tableau d'octets à une chaîne.
Comment puis-je le convertir d'un tableau d'octets en chaîne et vice versa?
ASCII est un code de 7 bits. Il ne va pas fonctionner sur le texte chiffré AES 8 bits. – erickson