private void btnRetrieve_Click(object sender, RoutedEventArgs e)
{
if (_encryptedBytes == null) return;
var bytes = ProtectedData.Unprotect(_encryptedBytes, null);
if (bytes != null) MessageBox.Show(Encoding.UTF8.GetString(bytes, 0, bytes.Length));
}