How i can get free X509 Certificates with true public and private key?
I use .net to encrypt and decrypt document.
Its can import pfx
file.
And now how i can create single pfx
file with public & private
for each User?
You need to use makecert and pvk2pfx, both get installed with visual studio.
First run makecert to get a certificate (cer file) and private key file (pvk file)
makecert -sv yourprivatekeyfile.pvk -n "cert name" yourcertfile.cer -b mm/dd/yyyy -e mm/dd/yyyy -r
where:
One you have your two files you can combine them in to a pfx file
PVK2PFX –pvk yourprivatekeyfile.pvk –spc yourcertfile.cer –pfx yourpfxfile.pfx –po yourpfxpassword
where: