Web Api From Start to End
From Logic Wiki
Contents
Where to get Certificates from ?
Create yourself
makecert.exe
-r // self signed -n "CN-DevRoot" // name -sv DevRoot.pvk // name of the private key file -iv DevRoot.pvk // name of the private key file -a sha1 // hashing algorithm -len 2048 // key length -b 01/21/2010 //valid from -e 01/21/2030 //valid to -cy authority // certificate type Devroot.cer // name of certificate file ...