All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mps.deepviolet.api.MutableDVCipherSuite Maven / Gradle / Ivy

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;
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy