10 references to OpenSslCommand
Templates.Blazor.WebAssembly.Tests (10)
src\Shared\CertificateGeneration\UnixCertificateManager.cs (10)
259
var isOpenSslAvailable = IsCommandAvailable(
OpenSslCommand
);
269
Log.UnixMissingOpenSslCommand(
OpenSslCommand
);
334
Debug.Assert(IsCommandAvailable(
OpenSslCommand
), "How did we trust without the openssl command?");
392
if (IsCommandAvailable(
OpenSslCommand
))
401
Log.UnixMissingOpenSslCommand(
OpenSslCommand
);
506
var commands = new[] {
OpenSslCommand
, CertUtilCommand };
782
/// It is the caller's responsibility to ensure that <see cref="
OpenSslCommand
"/> is available.
790
var processInfo = new ProcessStartInfo(
OpenSslCommand
, $"version -d")
824
/// It is the caller's responsibility to ensure that <see cref="
OpenSslCommand
"/> is available.
834
var processInfo = new ProcessStartInfo(
OpenSslCommand
, $"x509 -hash -noout -in {certificatePath}")