
com.mps.deepviolet.api.samples.PrintServerCiphersuites Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of DeepViolet Show documentation
Show all versions of DeepViolet Show documentation
TLS/SSL security introspection API
The newest version!
package com.mps.deepviolet.api.samples;
import java.net.URL;
import java.util.HashMap;
import com.mps.deepviolet.api.DVFactory;
import com.mps.deepviolet.api.IDVCipherSuite;
import com.mps.deepviolet.api.IDVEng;
import com.mps.deepviolet.api.IDVSession;
public class PrintServerCiphersuites {
public PrintServerCiphersuites() throws Exception {
URL url = new URL("https://github.com/");
IDVSession session = DVFactory.initializeSession(url);
IDVEng eng = DVFactory.getDVEng(session);
IDVCipherSuite[] ciphers = eng.getCipherSuites();
HashMap tmap = new HashMap();
// Print out a list of ciphersuites supported by the server.
System.out.println("Ciphers supported by host "+url.toString());
for( IDVCipherSuite cipher : ciphers ) {
// If cipher's in the map then skip since we already printed it. We only want a unique
// list of ciphers. API will return ciphers enumerated by handshake protocol (TLS1.0,TLS1.1,etc)
// Handy if you need to know cipher suite support by protocol.
if( !tmap.containsKey(cipher) ) {
StringBuffer buff = new StringBuffer();
buff.append(cipher.getSuiteName());
buff.append('(');
buff.append(cipher.getStrengthEvaluation());
buff.append(',');
buff.append(cipher.getHandshakeProtocol());
buff.append(')');
System.out.println(buff.toString());
tmap.put(cipher, cipher);
}
}
System.out.flush();
}
public static final void main(String[] args) {
try {
new PrintServerCiphersuites();
}catch(Throwable t){
t.printStackTrace();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy