Skip to content

Latest commit

 

History

History
95 lines (66 loc) · 2.04 KB

Get-TlsEccCurve.md

File metadata and controls

95 lines (66 loc) · 2.04 KB
description external help file Module Name ms.date online version schema title
Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell.
Microsoft.WindowsAuthenticationProtocols.Commands.dll-Help.xml
TLS
05/09/2017
2.0.0
Get-TlsEccCurve

Get-TlsEccCurve

SYNOPSIS

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: System.String
Parameter Sets: (All)
Aliases: None

Required: False
Position: 0
Default value: None
Accept pipeline input: True (ByPropertyName, ByValue)
Accept wildcard characters: False

CommonParameters

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

INPUTS

System.String

OUTPUTS

System.Object

NOTES

RELATED LINKS

Enable-TlsEccCurve

Disable-TlsEccCurve