Enable-TlsEccCurve
Enables Elliptic Curve Cryptography (ECC) cipher suites available for TLS.
Syntax
Enable-TlsEccCurve
[[-Position] <UInt32>]
[-Name] <String>
[-WhatIf]
[-Confirm]
Description
Enables Elliptic Curve Cryptography (ECC) cipher suites available for TLS for a computer.
Examples
Example 1
PS C:\> Enable-TlsEccCurve "NistP384" -Position 0
This command enables Elliptic Curve Cryptography cipher suite named "NistP384" at position 0, which is the highest priority.
Parameters
-Confirm
Prompts you for confirmation before running the cmdlet.
Type: | SwitchParameter |
Aliases: | cf |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-Name
Specifies the name of the ECC cipher suite to enable.
Type: | String |
Position: | 0 |
Default value: | None |
Required: | True |
Accept pipeline input: | True |
Accept wildcard characters: | False |
-Position
Specifies the position at which to insert the cipher suite in the ordered list of ECC cipher suites. The cmdlet inserts the cipher suite at the position that this parameter specifies, ahead of any existing cipher suites.
Specify a value of 0 or CRYPT_PRIORITY_TOP to insert the function at the top of the list. Specify a value of 4294967295 or 0xFFFFFFFF or CRYPT_PRIORITY_BOTTOM to insert the function at the end of the list.
Type: | UInt32 |
Position: | 1 |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-WhatIf
Shows what would happen if the cmdlet runs. The cmdlet is not run.
Type: | SwitchParameter |
Aliases: | wi |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |