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