G
Guest
I’m sending mail form my C#/.NET assembly, and for that I’m doing
authentication like that:
MailMessage MyMail = new MailMessage()
MyMail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate", "1")
MyMail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendusername", "UserName")
MyMail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendpassword", " password");
And by using tools like the ‘Microsoft .NET Framework IL DASM’ and
‘Reflector’, this user name and password can be seen Easley.
Is there a way to put the name and password in same hidden way?
How can I hide this data form disassembly tools?
authentication like that:
MailMessage MyMail = new MailMessage()
MyMail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate", "1")
MyMail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendusername", "UserName")
MyMail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendpassword", " password");
And by using tools like the ‘Microsoft .NET Framework IL DASM’ and
‘Reflector’, this user name and password can be seen Easley.
Is there a way to put the name and password in same hidden way?
How can I hide this data form disassembly tools?