暗号化された値をデータベースに保存し、データベースから値を取得しながら、復号化して UI に値を表示したいと考えています。これが私が使用したコードです
private string Decryptdata(string encryptpwd)
{
string decryptpwd = string.Empty;
UTF8Encoding encodepwd = new UTF8Encoding();
Decoder Decode = encodepwd.GetDecoder();
encryptpwd = encryptpwd.Replace(" ", "+");
byte[] todecode_byte = Convert.FromBase64String(encryptpwd);
int charCount = Decode.GetCharCount(todecode_byte, 0, todecode_byte.Length);
char[] decoded_char = new char[charCount];
Decode.GetChars(todecode_byte, 0, todecode_byte.Length, decoded_char, 0);
decryptpwd = new String(decoded_char);
return decryptpwd;
}
しかし、Base-64 char 配列の無効な長さとしてエラーが発生します。私はc#.netを使用しています
暗号化機能:
Encryptdata(string password) {
string strmsg = string.Empty;
byte[] encode = new byte[password.Length];
encode = Encoding.UTF8.GetBytes(password);
strmsg = Convert.ToBase64String(encode);
return strmsg;
}