Hello everyone,
I am doing self-signing certificate in my test environment. Here is more details about what I am doing.
http://www.hanselman.com/blog/SigningPowerShellScripts.aspx
My brief steps are (the purpose is to establish trust connection between computer C and computer A based on certificate),
- Making computer A a root CA by using makecert.exe;
- Self sign a certificate B which is issued by computer A as root CA;
- Install certificate B on computer A as certificate used to do communication;
- Install/trust root CA (compter A) into computer C;
- Then computer C will trust computer A's communication using certificate B.
My confusion is, computer C trusts computer A without installing certificate B? I think both root CA's certificate and the other party's certificate are needed to be installed. Any comments or ideas?
thanks in advance, George