Skip to content

Commit

Permalink
Legacy cipher 지원 종료를 위한 TLS 지원 범위 문서 추가 (#294)
Browse files Browse the repository at this point in the history
Co-authored-by: Hyeon Kim <[email protected]>
Co-authored-by: XiNiHa <[email protected]>
  • Loading branch information
3 people authored Mar 26, 2024
1 parent c98600e commit cf9aa29
Show file tree
Hide file tree
Showing 6 changed files with 406 additions and 3 deletions.
3 changes: 0 additions & 3 deletions .remarkrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,10 @@ export default {
},
],
"remark-lint-checkbox-content-indent",
"remark-lint-definition-case",
"remark-lint-definition-spacing",
["remark-lint-emphasis-marker", "_"],
"remark-lint-fenced-code-flag",
["remark-lint-fenced-code-marker", "`"],
"remark-lint-final-definition",
"remark-lint-final-newline",
["remark-lint-first-heading-level", 2],
"remark-lint-hard-break-spaces",
Expand Down Expand Up @@ -49,7 +47,6 @@ export default {
["remark-lint-no-missing-blank-lines", { exceptTightLists: true }],
"remark-lint-no-paragraph-content-indent",
"remark-lint-no-shortcut-reference-image",
"remark-lint-no-shortcut-reference-link",
"remark-lint-no-table-indentation",
"remark-lint-no-tabs",
"remark-lint-no-undefined-references",
Expand Down
1 change: 1 addition & 0 deletions src/content/docs/ko/_nav.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -296,6 +296,7 @@
- /ko/tip/flow
- /ko/tip/agency-and-tier
- /ko/tip/redirect
- /ko/tip/tls-support
- /ko/faq/undefined

- label: V2 연동하기
Expand Down
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 src/content/docs/ko/tip/_assets/tls_support/tls-support-styles.css
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);
}
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>
Loading

0 comments on commit cf9aa29

Please sign in to comment.