Get-Tls
Ecc
Curve
Syntax
Get-TlsEccCurve
[[-Name] <String>]
Description
Gets the list of Elliptic Curve Cryptography (ECC) cipher suites available for TLS for a computer.
Examples
Example 1: Get all ECC curves
Get-TlsEccCurve
This generates the following output:
curve25519 NistP256 NistP384
This command gets all ECC curves for the computer.
Example 2: Get the ECC curves that match a string
Get-TlsEccCurve -Name 'Nist'
This generates the following output:
NistP256 NistP384
This command gets all the ECC curves that have names that contain the string 'Nist' (case-sensitive).
Optional Parameters
Specifies the name of the ECC curve to get. The cmdlet gets ECC curves that match the string that this cmdlet specifies, so you can specify a partial name. This parameter is case-sensitive.
| Type: | String |
| Aliases: | None |
| Position: | 0 |
| Default value: | None |
| Accept pipeline input: | True (ByPropertyName, ByValue) |
| Accept wildcard characters: | False |
Inputs
System.String
Outputs
System.Object