Get-TlsEccCurve
Gets the list of Elliptic Curve Cryptography (ECC) cipher suites available for TLS for a computer.
Syntax
Get-TlsEccCurve
[[-Name] <String>]
[<CommonParameters>]
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
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'
NistP256
NistP384
This command gets all the ECC curves that have names that contain the string 'Nist' (case-sensitive).
Parameters
-Name
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 |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |