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