10 references to OpenSslCommand
Templates.Blazor.Tests (10)
src\Shared\CertificateGeneration\UnixCertificateManager.cs (10)
278var isOpenSslAvailable = IsCommandAvailable(OpenSslCommand); 288Log.UnixMissingOpenSslCommand(OpenSslCommand); 353Debug.Assert(IsCommandAvailable(OpenSslCommand), "How did we trust without the openssl command?"); 476if (IsCommandAvailable(OpenSslCommand)) 485Log.UnixMissingOpenSslCommand(OpenSslCommand); 590var commands = new[] { OpenSslCommand, CertUtilCommand }; 928/// It is the caller's responsibility to ensure that <see cref="OpenSslCommand"/> is available. 936var processInfo = new ProcessStartInfo(OpenSslCommand, $"version -d") 970/// It is the caller's responsibility to ensure that <see cref="OpenSslCommand"/> is available. 980var processInfo = new ProcessStartInfo(OpenSslCommand, $"x509 -hash -noout -in {certificatePath}")