A constructor only for testing.
(String cipherSuiteName, Certificate localCert, Certificate remoteCert)
| 668 | * A constructor only for testing. |
| 669 | */ |
| 670 | public Tls(String cipherSuiteName, Certificate localCert, Certificate remoteCert) { |
| 671 | this.cipherSuiteStandardName = cipherSuiteName; |
| 672 | this.localCert = localCert; |
| 673 | this.remoteCert = remoteCert; |
| 674 | } |
| 675 | |
| 676 | /** |
| 677 | * Creates an instance. |
nothing calls this directly
no test coverage detected