10 references to OpenSslCommand
aspire (10)
Certificates\CertificateGeneration\UnixCertificateManager.cs (10)
303var isOpenSslAvailable = IsCommandAvailable(OpenSslCommand); 313Log.UnixMissingOpenSslCommand(OpenSslCommand); 378Debug.Assert(IsCommandAvailable(OpenSslCommand), "How did we trust without the openssl command?"); 504if (IsCommandAvailable(OpenSslCommand)) 510Log.UnixMissingOpenSslCommand(OpenSslCommand); 618var commands = new[] { OpenSslCommand, CertificateHelpers.CertUtilCommand }; 924/// It is the caller's responsibility to ensure that <see cref="OpenSslCommand"/> is available. 932var processInfo = new ProcessStartInfo(OpenSslCommand, $"version -d") 963/// It is the caller's responsibility to ensure that <see cref="OpenSslCommand"/> is available. 973var processInfo = new ProcessStartInfo(OpenSslCommand, $"x509 -hash -noout -in {certificatePath}")