Edit

Share via


Get-TlsEccCurve

Gets the list of Elliptic Curve Cryptography (ECC) cipher suites available for TLS for a computer.

Syntax

Default (Default)

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.

Parameter properties

Type:String
Default value:None
Supports wildcards:False
DontShow:False
Aliases:None

Parameter sets

(All)
Position:0
Mandatory:False
Value from pipeline:True
Value from pipeline by property name:True
Value from remaining arguments:False

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, -ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

Inputs

String

Outputs

Object