¡@

Home 

c# Programming Glossary: secure

How to secure an ASP.NET Web API

http://stackoverflow.com/questions/11775594/how-to-secure-an-asp-net-web-api

to secure an ASP.NET Web API I'm wanting to build a RESTful web service.. question We have managed to apply HMAC authentication to secure Web Api and it worked okay. Basically HMAC authentication uses..

c# SmtpClient class not able to send email using gmail

http://stackoverflow.com/questions/1311749/c-sharp-smtpclient-class-not-able-to-send-email-using-gmail

ss.Send mm Heres the error The SMTP server requires a secure connection or the client was not authenticated. The server response..

Simple 2 way encryption for C#

http://stackoverflow.com/questions/165808/simple-2-way-encryption-for-c-sharp

question Other answers here work fine but AES is a more secure and up to date encryption algorithm. This is a class that I.. as methods. It couldn't be any easier or more secure once you have this class in place. using System using System.Data..

How is Generic Covariance & Contra-variance Implemented in C# 4.0?

http://stackoverflow.com/questions/245607/how-is-generic-covariance-contra-variance-implemented-in-c-sharp-4-0

covariance and contra variance. It is mainly for writing secure code. Now C# 4.0 changed to support them. Would it bring chaos..

How can I protect my .NET assemblies from decompilation?

http://stackoverflow.com/questions/2478230/how-can-i-protect-my-net-assemblies-from-decompilation

a difficult task. I am still looking for a fast easy and secure way to do it. I don't want to obfuscate my code so my method..

Best hashing algorithm in terms of hash collisions and performance for strings

http://stackoverflow.com/questions/251346/best-hashing-algorithm-in-terms-of-hash-collisions-and-performance-for-strings

Minimal hash collisions Performance It doesn't have to be secure. Basically I'm trying to create an index based on a combination..

The request was aborted: Could not create SSL/TLS secure channel

http://stackoverflow.com/questions/2859790/the-request-was-aborted-could-not-create-ssl-tls-secure-channel

request was aborted Could not create SSL TLS secure channel We are unable to connect to an HTTPS server using WebRequest.. message The request was aborted Could not create SSL TLS secure channel. We know that the server doesn't have a valid HTTPS..

Is BCrypt a good hashing algorithm to use in C#? Where can I find it?

http://stackoverflow.com/questions/481160/is-bcrypt-a-good-hashing-algorithm-to-use-in-c-where-can-i-find-it

then you need to do several things Use a relatively secure hash algorithm . Salt each password before it's hashed. Use..

Using a self-signed certificate with .NET's HttpWebRequest/Response

http://stackoverflow.com/questions/526711/using-a-self-signed-certificate-with-nets-httpwebrequest-response

Could not establish trust relationship for the SSL TLS secure channel. I understand what this means. And I understand why..

WCF Transport vs Message

http://stackoverflow.com/questions/5673283/wcf-transport-vs-message

Mode or both If i used HTTPS for Transport Mode is it more secured if i used Message security also i am asking this because what.. to point channel security. It means that HTTPS establish secure channel only between client and server exposed to client. But.. example you can have communication to your load balancer secured by HTTPS because you trust your internal network after load..

Could not establish trust relationship for SSL/TLS secure channel — SOAP

http://stackoverflow.com/questions/703272/could-not-establish-trust-relationship-for-ssl-tls-secure-channel-soap

not establish trust relationship for SSL TLS secure channel &mdash SOAP I have a simple web service call generated.. Could not establish a trust relationship for the SSL TLS secure channel . The URL of the web service uses SSL https but this..

Sending email through Gmail SMTP server with C#

http://stackoverflow.com/questions/704636/sending-email-through-gmail-smtp-server-with-c-sharp

Send message . The message is The SMTP server requires a secure connection or the client was not authenticated. The server response..

Send Email via C# through Google Apps account

http://stackoverflow.com/questions/757987/send-email-via-c-sharp-through-google-apps-account

Exception is thrown that states The SMTP server requires a secure connection or the client was not authenticated. The server response..

Which cryptographic hash function should I choose?

http://stackoverflow.com/questions/800685/which-cryptographic-hash-function-should-i-choose

be found in theoretically far less than the 2^80 steps a secure hash function of its length would require. The attack is continually..

Shredding files in .NET

http://stackoverflow.com/questions/1046635/shredding-files-in-net

good article came out recently concerning this on proggit Secure Deletion A single overwrite will do it. Leading forensic experts..

How to implement authorization checks in ASP.NET MVC based on Session data?

http://stackoverflow.com/questions/1151450/how-to-implement-authorization-checks-in-asp-net-mvc-based-on-session-data

sure I don't miss anything. The scenario is this Public Secured Areas. Within the private area it is even further limited to.. is the code namespace MyApp.Custom.Security public class Secure AuthorizeAttribute summary Checks to see if the user is authenticated.. Then on my controllers I just have to put a Secure attribute and it uses my function above anytime that controller..

Send eml files saved on disk

http://stackoverflow.com/questions/1306115/send-eml-files-saved-on-disk

from an established vendor. Following code uses our Rebex Secure Mail component but I'm sure that similar task could be replicated..

LDAP Authentication in ASP.Net MVC

http://stackoverflow.com/questions/1401667/ldap-authentication-in-asp-net-mvc

ADConnectionString connectionProtection Secure connectionUsername domainuser connectionPassword pwd attributeMapUsername..

RSA Encryption, getting bad length

http://stackoverflow.com/questions/1496793/rsa-encryption-getting-bad-length

Block Control+Alt+Delete

http://stackoverflow.com/questions/1660106/block-controlaltdelete

and provides the user interface to logon requests the Secure Action Sequence event. The main logon request is the ctrl alt..

encrypt SQL connectionstring c#

http://stackoverflow.com/questions/2160515/encrypt-sql-connectionstring-c-sharp

There are two ways of doing it 1 You can use Configuration Secure Section to encrypt and decrypt connection strimng from your..

Secure C# Assemblies from unauthorized Callers

http://stackoverflow.com/questions/2806842/secure-c-sharp-assemblies-from-unauthorized-callers

C# Assemblies from unauthorized Callers Is there any way to..

Protect .NET code from reverse engineering?

http://stackoverflow.com/questions/506282/protect-net-code-from-reverse-engineering

the whole codebase again in C is out of the question. Secure certificates can be easily removed from the signed assemblies..