Difference between revisions of "Ciphers"

From UVOO Tech Wiki
Jump to navigation Jump to search
(Created page with "https://github.mktp.io/mische/cipher-suites")
 
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
https://github.mktp.io/mische/cipher-suites
+
 
 +
https://raymii.org/s/tutorials/Strong_SSL_Security_On_nginx.html
 +
```
 +
ssl_protocols TLSv1.2 TLSv1.3; # Requires nginx >= 1.13.0 else use TLSv1.2
 +
ssl_ciphers ECDHE-RSA-AES256-GCM-SHA512:DHE-RSA-AES256-GCM-SHA512:ECDHE-RSA-AES256-GCM-SHA384:DHE-RSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-SHA384;
 +
```
 +
 
 +
 
 +
Operating Systems
 +
```
 +
Get-ItemPropertyValue -Path HKLM:\SYSTEM\CurrentControlSet\Control\Cryptography\Configuration\Local\SSL\00010002 -Name Functions
 +
```

Latest revision as of 17:16, 4 March 2022

https://raymii.org/s/tutorials/Strong_SSL_Security_On_nginx.html

ssl_protocols TLSv1.2 TLSv1.3; # Requires nginx >= 1.13.0 else use TLSv1.2
ssl_ciphers ECDHE-RSA-AES256-GCM-SHA512:DHE-RSA-AES256-GCM-SHA512:ECDHE-RSA-AES256-GCM-SHA384:DHE-RSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-SHA384;

Operating Systems

Get-ItemPropertyValue -Path HKLM:\SYSTEM\CurrentControlSet\Control\Cryptography\Configuration\Local\SSL\00010002 -Name Functions