Skip to content

Commit

Permalink
removed imports for .bc. package
Browse files Browse the repository at this point in the history
  • Loading branch information
dghgit committed Mar 1, 2017
1 parent 330a10f commit 502230c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 11 deletions.
5 changes: 0 additions & 5 deletions tls/src/main/java/org/bouncycastle/tls/TlsAuthentication.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@

import java.io.IOException;

import org.bouncycastle.tls.crypto.impl.bc.BcDefaultTlsCredentialedAgreement;
import org.bouncycastle.tls.crypto.impl.bc.BcDefaultTlsCredentialedDecryptor;

/**
* Base interface to provide TLS authentication credentials.
*/
Expand All @@ -25,8 +22,6 @@ void notifyServerCertificate(Certificate serverCertificate)
* be null, or else it MUST implement <em>exactly one</em> of {@link TlsCredentialedAgreement},
* {@link TlsCredentialedDecryptor}, or {@link TlsCredentialedSigner}, depending on the key
* exchange that was negotiated and the details of the {@link CertificateRequest}.
*
* @see {@link BcDefaultTlsCredentialedAgreement}, {@link BcDefaultTlsCredentialedDecryptor}
*
* @param certificateRequest
* details of the certificate request
Expand Down
7 changes: 1 addition & 6 deletions tls/src/main/java/org/bouncycastle/tls/TlsServer.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@
import java.util.Hashtable;
import java.util.Vector;

import org.bouncycastle.tls.crypto.impl.bc.BcDefaultTlsCredentialedAgreement;
import org.bouncycastle.tls.crypto.impl.bc.BcDefaultTlsCredentialedDecryptor;

/**
* Interface describing a TLS server endpoint.
*/
Expand Down Expand Up @@ -50,9 +47,7 @@ Vector getServerSupplementalData()
* Return server credentials to use. The returned value may be null, or else it MUST implement
* <em>exactly one</em> of {@link TlsCredentialedAgreement}, {@link TlsCredentialedDecryptor}, or
* {@link TlsCredentialedSigner}, depending on the key exchange that was negotiated.
*
* @see {@link BcDefaultTlsCredentialedAgreement}, {@link BcDefaultTlsCredentialedDecryptor},
* {@link BcDefaultTlsCredentialedSigner}
*
* @return a TlsCredentials object or null for anonymous key exchanges
* @throws IOException
*/
Expand Down

0 comments on commit 502230c

Please sign in to comment.