├── .gitignore ├── Readme.md ├── deploy.ps1 ├── icon.png ├── openssl-wizard.nuspec ├── openssl-wizard.sln ├── src ├── App.xaml ├── App.xaml.cs ├── Help.rtf ├── OpenSsl │ ├── CertificateSignRequest.cs │ ├── CertificateSignRequestNewKey.cs │ ├── CombineCertificate.cs │ ├── ConvertCertificate.cs │ ├── CreateRootCert.cs │ ├── ECDSAKey.cs │ ├── GenerateCode.cs │ ├── OpenSslCommand.cs │ ├── OpenSslVersion.cs │ ├── RSAKey.cs │ ├── SelfSignedCert.cs │ └── SignCertificate.cs ├── PageViewModel.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── RelayCommand.cs ├── Views │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Progress.xaml │ └── Progress.xaml.cs ├── Wizard.cs ├── icon.ico ├── openssl-wizard.csproj └── openssl-wizard.sln └── tools ├── LICENSE.txt └── VERIFICATION.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deviousasti/openssl-wizard/HEAD/.gitignore -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deviousasti/openssl-wizard/HEAD/Readme.md -------------------------------------------------------------------------------- /deploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deviousasti/openssl-wizard/HEAD/deploy.ps1 -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deviousasti/openssl-wizard/HEAD/icon.png -------------------------------------------------------------------------------- /openssl-wizard.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deviousasti/openssl-wizard/HEAD/openssl-wizard.nuspec -------------------------------------------------------------------------------- /openssl-wizard.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deviousasti/openssl-wizard/HEAD/openssl-wizard.sln -------------------------------------------------------------------------------- /src/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deviousasti/openssl-wizard/HEAD/src/App.xaml -------------------------------------------------------------------------------- /src/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deviousasti/openssl-wizard/HEAD/src/App.xaml.cs -------------------------------------------------------------------------------- /src/Help.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deviousasti/openssl-wizard/HEAD/src/Help.rtf -------------------------------------------------------------------------------- /src/OpenSsl/CertificateSignRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deviousasti/openssl-wizard/HEAD/src/OpenSsl/CertificateSignRequest.cs -------------------------------------------------------------------------------- /src/OpenSsl/CertificateSignRequestNewKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deviousasti/openssl-wizard/HEAD/src/OpenSsl/CertificateSignRequestNewKey.cs -------------------------------------------------------------------------------- /src/OpenSsl/CombineCertificate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deviousasti/openssl-wizard/HEAD/src/OpenSsl/CombineCertificate.cs -------------------------------------------------------------------------------- /src/OpenSsl/ConvertCertificate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deviousasti/openssl-wizard/HEAD/src/OpenSsl/ConvertCertificate.cs -------------------------------------------------------------------------------- /src/OpenSsl/CreateRootCert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deviousasti/openssl-wizard/HEAD/src/OpenSsl/CreateRootCert.cs -------------------------------------------------------------------------------- /src/OpenSsl/ECDSAKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deviousasti/openssl-wizard/HEAD/src/OpenSsl/ECDSAKey.cs -------------------------------------------------------------------------------- /src/OpenSsl/GenerateCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deviousasti/openssl-wizard/HEAD/src/OpenSsl/GenerateCode.cs -------------------------------------------------------------------------------- /src/OpenSsl/OpenSslCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deviousasti/openssl-wizard/HEAD/src/OpenSsl/OpenSslCommand.cs -------------------------------------------------------------------------------- /src/OpenSsl/OpenSslVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deviousasti/openssl-wizard/HEAD/src/OpenSsl/OpenSslVersion.cs -------------------------------------------------------------------------------- /src/OpenSsl/RSAKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deviousasti/openssl-wizard/HEAD/src/OpenSsl/RSAKey.cs -------------------------------------------------------------------------------- /src/OpenSsl/SelfSignedCert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deviousasti/openssl-wizard/HEAD/src/OpenSsl/SelfSignedCert.cs -------------------------------------------------------------------------------- /src/OpenSsl/SignCertificate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deviousasti/openssl-wizard/HEAD/src/OpenSsl/SignCertificate.cs -------------------------------------------------------------------------------- /src/PageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deviousasti/openssl-wizard/HEAD/src/PageViewModel.cs -------------------------------------------------------------------------------- /src/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deviousasti/openssl-wizard/HEAD/src/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deviousasti/openssl-wizard/HEAD/src/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deviousasti/openssl-wizard/HEAD/src/Properties/Resources.resx -------------------------------------------------------------------------------- /src/RelayCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deviousasti/openssl-wizard/HEAD/src/RelayCommand.cs -------------------------------------------------------------------------------- /src/Views/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deviousasti/openssl-wizard/HEAD/src/Views/MainWindow.xaml -------------------------------------------------------------------------------- /src/Views/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deviousasti/openssl-wizard/HEAD/src/Views/MainWindow.xaml.cs -------------------------------------------------------------------------------- /src/Views/Progress.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deviousasti/openssl-wizard/HEAD/src/Views/Progress.xaml -------------------------------------------------------------------------------- /src/Views/Progress.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deviousasti/openssl-wizard/HEAD/src/Views/Progress.xaml.cs -------------------------------------------------------------------------------- /src/Wizard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deviousasti/openssl-wizard/HEAD/src/Wizard.cs -------------------------------------------------------------------------------- /src/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deviousasti/openssl-wizard/HEAD/src/icon.ico -------------------------------------------------------------------------------- /src/openssl-wizard.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deviousasti/openssl-wizard/HEAD/src/openssl-wizard.csproj -------------------------------------------------------------------------------- /src/openssl-wizard.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deviousasti/openssl-wizard/HEAD/src/openssl-wizard.sln -------------------------------------------------------------------------------- /tools/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deviousasti/openssl-wizard/HEAD/tools/LICENSE.txt -------------------------------------------------------------------------------- /tools/VERIFICATION.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deviousasti/openssl-wizard/HEAD/tools/VERIFICATION.txt --------------------------------------------------------------------------------