com.mps.deepviolet.api.MutableDVCipherSuite 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;
class MutableDVCipherSuite implements IDVCipherSuite {
private String name;
private String eval;
private String protocol;
MutableDVCipherSuite( String name, String eval, String protocol ) {
this.name = name;
this.eval = eval;
this.protocol = protocol;
}
public String getSuiteName() {
return name;
}
public String getStrengthEvaluation() {
return eval;
}
public String getHandshakeProtocol() {
return protocol;
}
}