-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Legacy cipher 지원 종료를 위한 TLS 지원 범위 문서 추가 (#294)
Co-authored-by: Hyeon Kim <[email protected]> Co-authored-by: XiNiHa <[email protected]>
- Loading branch information
1 parent
c98600e
commit cf9aa29
Showing
6 changed files
with
406 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
29 changes: 29 additions & 0 deletions
29
src/content/docs/ko/tip/_assets/tls_support/tls-support-styles.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
table.table-tls-support { | ||
table-layout: auto; | ||
white-space: nowrap; | ||
width: 1%; | ||
} | ||
|
||
table.table-tls-support td { | ||
padding: 0.15rem 0.5rem; | ||
} | ||
|
||
table.table-tls-support td i { | ||
color: gray; | ||
} | ||
|
||
table.table-tls-support td:nth-last-child(1 of td:not([rowspan])) { | ||
font-size: 0.8rem; | ||
padding: 0.05rem 0.4rem; | ||
} | ||
|
||
table.table-tls-support td:is(.supported, .unsupported) { | ||
text-align: center; | ||
font-size: 1.1rem; | ||
font-weight: 200; | ||
} | ||
|
||
table.table-tls-support td.unsupported { | ||
font-weight: 500; | ||
background-color: rgba(255, 0, 0, 0.1); | ||
} |
35 changes: 35 additions & 0 deletions
35
src/content/docs/ko/tip/_components/tls-support/java6-java-security-edit.astro
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<pre | ||
style=" | ||
width: calc(100% - 50px); | ||
overflow-x: scroll; | ||
padding: 1em; | ||
font-size: 0.8em; | ||
background: rgba(0, 0, 0, 0.025); | ||
border-radius: 0.5rem; | ||
"> | ||
<span style="font-weight: bold;background-color: lightyellow"># before</span> | ||
security.provider.1=sun.security.provider.Sun | ||
security.provider.2=sun.security.rsa.SunRsaSign | ||
security.provider.3=com.sun.net.ssl.internal.ssl.Provider | ||
security.provider.4=com.sun.crypto.provider.SunJCE | ||
security.provider.5=sun.security.jgss.SunProvider | ||
security.provider.6=com.sun.security.sasl.Provider | ||
security.provider.7=org.jcp.xml.dsig.internal.dom.XMLDSigRI | ||
security.provider.8=sun.security.smartcardio.SunPCSC | ||
|
||
<span style="font-weight: bold;background-color: lightyellow"># after</span> | ||
<span style="color: gray"># Add provider with higher priority</span> | ||
<span style="color:red;font-weight: bold">security.provider.1=org.bouncycastle.jce.provider.BouncyCastleProvider</span> | ||
<span style="color:red;font-weight: bold">security.provider.2=org.bouncycastle.jsse.provider.BouncyCastleJsseProvider</span> | ||
<span style="color: gray"># Lower priority of existing providers</span> | ||
security.provider.<span style="color:red;font-weight: bold">3</span>=sun.security.provider.Sun | ||
security.provider.<span style="color:red;font-weight: bold">4</span>=sun.security.rsa.SunRsaSign | ||
security.provider.<span style="color:red;font-weight: bold">5</span>=com.sun.net.ssl.internal.ssl.Provider | ||
security.provider.<span style="color:red;font-weight: bold">6</span>=com.sun.crypto.provider.SunJCE | ||
security.provider.<span style="color:red;font-weight: bold">7</span>=sun.security.jgss.SunProvider | ||
security.provider.<span style="color:red;font-weight: bold">8</span>=com.sun.security.sasl.Provider | ||
security.provider.<span style="color:red;font-weight: bold">9</span>=org.jcp.xml.dsig.internal.dom.XMLDSigRI | ||
security.provider.<span style="color:red;font-weight: bold">10</span>=sun.security.smartcardio.SunPCSC | ||
<span style="color: gray"># Change default SocketFactory implementation</span> | ||
<span style="color:red;font-weight: bold">ssl.SocketFactory.provider=org.bouncycastle.jsse.provider.SSLSocketFactoryImpl</span> | ||
</pre> |
Oops, something went wrong.