How to secure a WCF service with a public / private key pair without using any certificates

I want to protect my WCF service.

For example, if I want to create a public / private key pair without the participation of any third-party certification authority.

What is the way and the way to do this?

Any idea or any other approach.

+5
source share
1 answer

You can create test certificates using the "makecert" commands, as shown here . You can bypass certificate verification checks using a configuration such as the following, although this is not recommended in a production environment:

<authentication certificateValidationMode="None"
                      revocationMode="NoCheck" />

CodePlex, .

+1

All Articles