Original MSDN Link: https://msdn.microsoft.com/en-us/library/ff699202.aspx…
--Refer to https://superuser.com/questions/126121/how-to-create-my-own-certificate-chain for detail. --like ROOT -> A -> B -> C ROOT certificate is: openssl req -new -newkey rsa:1024 -nodes -out ca.csr -keyout ca.key openssl x509 -trustout -signk…
Different Platforms & Devices requires SSL certificates in different formatseg:- A Windows Server uses .pfx filesAn Apache Server uses .crt, .cer files NOTE: Only way to tell the difference between PEM .cer and DER .cer is to open the file in a Text…
The Windows Azure Management Portal provides two ways for you to create and deploy a cloud service: Quick Create and Custom Create. This topic explains how to use the Quick Create method to create a new cloud service and then use Upload to upload and…
Create a Certificate Authority private key (this is your most important key): $ openssl req -new -newkey rsa: -nodes -out ca.csr -keyout ca.key Create your CA self-signed certificate: $ openssl x509 -trustout -signkey ca.key -days -req -in ca.csr -ou…
OpenSSL Convert PFX Convert PFX to PEM openssl pkcs12 -in certificate.pfx -out certificate.cer -nodes 引用自:https://www.sslshopper.com/ssl-converter.html 下载OpenSSL:http://gnuwin32.sourceforge.net/packages/openssl.htm 解压Binaries.zip中openssl.exe,可单独运行…
OpenSSL Command-Line HOWTO The openssl application that ships with the OpenSSL libraries can perform a wide range of crypto operations. This HOWTO provides some cookbook-style recipes for using it. Paul Heinlein | November 10, 2015 https://www.madboa…
本文分两部分,第一部分是手动计划任务的方式构建Github上的Docker程序,第二部分是用Github webhook Trigger一个自动构建任务. Jenkins采用2.5版本Docker采用1.7.1代码托管使用的Github官网系统为IBM Bluemix提供的Cent6.7,服务器地址在美国南加州 1.1 创建一个Freestyle Project, let's say jenkins-docker 1.2 Set workplace to /var/lib/jenkins/job…
Create a certificate for package signing 2017/2/8 3 min to read [ Updated for UWP apps on Windows 10. For Windows 8.x articles, see the archive ] This article explains how to create and export a certificate for app package signing using PowerShell to…
https://novemberfive.co/blog/windows-jenkins-cake-tutorial/ Where we started, or: why Cake took the cake Before we started using Cake to build our Windows 10 applications, we used a similar setup, but instead of Cake we used an MSBuild script. What w…