io.netty.handler.ssl.OpenSsl.isBoringSSL()方法的使用及代码示例

x33g5p2x  于2022-01-25 转载在 其他  
字(2.8k)|赞(0)|评价(0)|浏览(288)

本文整理了Java中io.netty.handler.ssl.OpenSsl.isBoringSSL()方法的一些代码示例,展示了OpenSsl.isBoringSSL()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。OpenSsl.isBoringSSL()方法的具体详情如下:
包路径:io.netty.handler.ssl.OpenSsl
类名称:OpenSsl
方法名:isBoringSSL

OpenSsl.isBoringSSL介绍

暂无

代码示例

代码示例来源:origin: redisson/redisson

  1. @Override
  2. public final void setEnabledCipherSuites(String[] cipherSuites) {
  3. checkNotNull(cipherSuites, "cipherSuites");
  4. final StringBuilder buf = new StringBuilder();
  5. final StringBuilder bufTLSv13 = new StringBuilder();
  6. CipherSuiteConverter.convertToCipherStrings(Arrays.asList(cipherSuites), buf, bufTLSv13, OpenSsl.isBoringSSL());
  7. final String cipherSuiteSpec = buf.toString();
  8. final String cipherSuiteSpecTLSv13 = bufTLSv13.toString();
  9. if (!OpenSsl.isTlsv13Supported() && !cipherSuiteSpecTLSv13.isEmpty()) {
  10. throw new IllegalArgumentException("TLSv1.3 is not supported by this java version.");
  11. }
  12. synchronized (this) {
  13. if (!isDestroyed()) {
  14. // TODO: Should we also adjust the protocols based on if there are any ciphers left that can be used
  15. // for TLSv1.3 or for previor SSL/TLS versions ?
  16. try {
  17. // Set non TLSv1.3 ciphers.
  18. SSL.setCipherSuites(ssl, cipherSuiteSpec, false);
  19. if (OpenSsl.isTlsv13Supported()) {
  20. // Set TLSv1.3 ciphers.
  21. SSL.setCipherSuites(ssl, cipherSuiteSpecTLSv13, true);
  22. }
  23. } catch (Exception e) {
  24. throw new IllegalStateException("failed to enable cipher suites: " + cipherSuiteSpec, e);
  25. }
  26. } else {
  27. throw new IllegalStateException("failed to enable cipher suites: " + cipherSuiteSpec);
  28. }
  29. }
  30. }

代码示例来源:origin: redisson/redisson

  1. unmodifiableCiphers, cipherBuilder, cipherTLSv13Builder, OpenSsl.isBoringSSL());

代码示例来源:origin: io.netty/netty-handler

  1. @Override
  2. public final void setEnabledCipherSuites(String[] cipherSuites) {
  3. checkNotNull(cipherSuites, "cipherSuites");
  4. final StringBuilder buf = new StringBuilder();
  5. final StringBuilder bufTLSv13 = new StringBuilder();
  6. CipherSuiteConverter.convertToCipherStrings(Arrays.asList(cipherSuites), buf, bufTLSv13, OpenSsl.isBoringSSL());
  7. final String cipherSuiteSpec = buf.toString();
  8. final String cipherSuiteSpecTLSv13 = bufTLSv13.toString();
  9. if (!OpenSsl.isTlsv13Supported() && !cipherSuiteSpecTLSv13.isEmpty()) {
  10. throw new IllegalArgumentException("TLSv1.3 is not supported by this java version.");
  11. }
  12. synchronized (this) {
  13. if (!isDestroyed()) {
  14. // TODO: Should we also adjust the protocols based on if there are any ciphers left that can be used
  15. // for TLSv1.3 or for previor SSL/TLS versions ?
  16. try {
  17. // Set non TLSv1.3 ciphers.
  18. SSL.setCipherSuites(ssl, cipherSuiteSpec, false);
  19. if (OpenSsl.isTlsv13Supported()) {
  20. // Set TLSv1.3 ciphers.
  21. SSL.setCipherSuites(ssl, cipherSuiteSpecTLSv13, true);
  22. }
  23. } catch (Exception e) {
  24. throw new IllegalStateException("failed to enable cipher suites: " + cipherSuiteSpec, e);
  25. }
  26. } else {
  27. throw new IllegalStateException("failed to enable cipher suites: " + cipherSuiteSpec);
  28. }
  29. }
  30. }

代码示例来源:origin: io.netty/netty-handler

  1. unmodifiableCiphers, cipherBuilder, cipherTLSv13Builder, OpenSsl.isBoringSSL());

相关文章