10 references to OpenSslCommand
Templates.Blazor.Tests (10)
src\Shared\CertificateGeneration\UnixCertificateManager.cs (10)
273var isOpenSslAvailable = IsCommandAvailable(OpenSslCommand); 283Log.UnixMissingOpenSslCommand(OpenSslCommand); 348Debug.Assert(IsCommandAvailable(OpenSslCommand), "How did we trust without the openssl command?"); 406if (IsCommandAvailable(OpenSslCommand)) 415Log.UnixMissingOpenSslCommand(OpenSslCommand); 520var commands = new[] { OpenSslCommand, CertUtilCommand }; 796/// It is the caller's responsibility to ensure that <see cref="OpenSslCommand"/> is available. 804var processInfo = new ProcessStartInfo(OpenSslCommand, $"version -d") 838/// It is the caller's responsibility to ensure that <see cref="OpenSslCommand"/> is available. 848var processInfo = new ProcessStartInfo(OpenSslCommand, $"x509 -hash -noout -in {certificatePath}")