Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 37 additions & 8 deletions docset/windows/tls/get-tlsecccurve.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ title: Get-TlsEccCurve
# Get-TlsEccCurve

## SYNOPSIS
{{Fill in the Synopsis}}
Gets the list of Elliptic Curve Cryptography (ECC) cipher suites available for TLS for a computer.

## SYNTAX

Expand All @@ -27,26 +27,48 @@ Get-TlsEccCurve [[-Name] <String>]
```

## DESCRIPTION
{{Fill in the Description}}
Gets the list of Elliptic Curve Cryptography (ECC) cipher suites available for TLS for a computer.

## EXAMPLES

### Example 1
### Example 1: Get all ECC curves
```powershell
Get-TlsEccCurve
```
PS C:\> {{ Add example code here }}

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
```powershell
Get-TlsEccCurve -Name 'Nist'
```

This generates the following output:

```
NistP256
NistP384
```

{{ Add example description here }}
This command gets all the ECC curves that have names that contain the string 'Nist' (case-sensitive).

## PARAMETERS

### -Name
{{Fill Name Description}}
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.

```yaml
Type: String
Parameter Sets: (All)
Aliases:
Aliases: None

Required: False
Position: 0
Expand All @@ -55,6 +77,9 @@ 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 (http://go.microsoft.com/fwlink/?LinkID=113216).

## INPUTS

### System.String
Expand All @@ -67,4 +92,8 @@ Accept wildcard characters: False
## NOTES

## RELATED LINKS

```
Online Version: https://technet.microsoft.com/en-us/itpro/powershell/windows/tls/get-tlsecccurve
Enable-TlsEccCurve
Disable-TlsEccCurve
```