Reputation: 1986
I have a web service with Message security mode, and UserName client credential type. At client side in the endpoint config i have
<endpoint ...>
<identity>
<certificate encodedValue="VeryVeryBigRsaKey" />
<identity>
</endpoint>
I generated my key using pluralsight self cert, and exported it into a *.cer file with Base 64 encoding. And opened generated *.cer with notepad, and that gave me the rsa key (VeryVeryBigRsaKey)
My questions are:
VeryVeryBigRsaKey
, if yes how to prevent it, if no what are securing mechanisms in wcf to prevent it?Upvotes: 2
Views: 200
Reputation: 364249
Most of your questions are answered in another question. Details of the description doesn't have to be exactly correct but the idea and mechanism is correct.
You don't have to be afraid.
Upvotes: 2