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

com.southernstorm.noise.protocol.DHState Maven / Gradle / Ivy

There is a newer version: 2.6.0
Show newest version
/*
 * Copyright (C) 2016 Southern Storm Software, Pty Ltd.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the "Software"),
 * to deal in the Software without restriction, including without limitation
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
 * and/or sell copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included
 * in all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
 * DEALINGS IN THE SOFTWARE.
 */

package com.southernstorm.noise.protocol;

/**
 * Interface to a Diffie-Hellman algorithm for the Noise protocol.
 */
public interface DHState extends Destroyable, Cloneable {

	/**
	 * Gets the Noise protocol name for this Diffie-Hellman algorithm.
	 * 
	 * @return The algorithm name.
	 */
	String getDHName();

	/**
	 * Gets the length of public keys for this algorithm.
	 * 
	 * @return The length of public keys in bytes.
	 */
	int getPublicKeyLength();
	
	/**
	 * Gets the length of private keys for this algorithm.
	 * 
	 * @return The length of private keys in bytes.
	 */
	int getPrivateKeyLength();
	
	/**
	 * Gets the length of shared keys for this algorithm.
	 * 
	 * @return The length of shared keys in bytes.
	 */
	int getSharedKeyLength();

	/**
	 * Generates a new random keypair.
	 */
	void generateKeyPair();

	/**
	 * Gets the public key associated with this object.
	 * 
	 * @param key The buffer to copy the public key to.
	 * @param offset The first offset in the key buffer to copy to.
	 */
	void getPublicKey(byte[] key, int offset);

	/**
	 * Sets the public key for this object.
	 * 
	 * @param key The buffer containing the public key.
	 * @param offset The first offset in the buffer that contains the key.
	 * 
	 * If this object previously held a key pair, then this function
	 * will change it into a public key only object.
	 */
	void setPublicKey(byte[] key, int offset);
	
	/**
	 * Gets the private key associated with this object.
	 * 
	 * @param key The buffer to copy the private key to.
	 * @param offset The first offset in the key buffer to copy to.
	 */
	void getPrivateKey(byte[] key, int offset);
	
	/**
	 * Sets the private key for this object.
	 * 
	 * @param key The buffer containing the [rivate key.
	 * @param offset The first offset in the buffer that contains the key.
	 * 
	 * If this object previously held only a public key, then
	 * this function will change it into a key pair.
	 */
	void setPrivateKey(byte[] key, int offset);

	/**
	 * Sets this object to the null public key and clears the private key.
	 */
	void setToNullPublicKey();
	
	/**
	 * Clears the key pair.
	 */
	void clearKey();
	
	/**
	 * Determine if this object contains a public key.
	 * 
	 * @return Returns true if this object contains a public key,
	 * or false if the public key has not yet been set.
	 */
	boolean hasPublicKey();
	
	/**
	 * Determine if this object contains a private key.
	 * 
	 * @return Returns true if this object contains a private key,
	 * or false if the private key has not yet been set.
	 */
	boolean hasPrivateKey();

	/**
	 * Determine if the public key in this object is the special null value.
	 * 
	 * @return Returns true if the public key is the special null value,
	 * or false otherwise.
	 */
	boolean isNullPublicKey();

	/**
	 * Determine if this object contains an optional encoded public key.
	 * 
	 * @return Returns true if this object contains an encoded public key,
	 * or false if the public key has not yet been set.
	 * 
	 * @since 0.9.44 
	 */
	boolean hasEncodedPublicKey();

	/**
	 * Gets the public key associated with this object.
	 * 
	 * @param key The buffer to copy the public key to.
	 * @param offset The first offset in the key buffer to copy to.
	 * 
	 * @since 0.9.44 
	 */
	void getEncodedPublicKey(byte[] key, int offset);

	/**
	 * Performs a Diffie-Hellman calculation with this object as the private key.
	 * 
	 * @param sharedKey Buffer to put the shared key into.
	 * @param offset Offset of the first byte for the shared key.
	 * @param publicDH Object that contains the public key for the calculation.
	 * 
	 * @throws IllegalArgumentException The publicDH object is not the same
	 * type as this object, or one of the objects does not contain a valid key.
	 */
	void calculate(byte[] sharedKey, int offset, DHState publicDH);
	
	/**
	 * Copies the key values from another DH object of the same type.
	 * 
	 * @param other The other DH object to copy from
	 * 
	 * @throws IllegalStateException The other DH object does not have
	 * the same type as this object.
	 */
	void copyFrom(DHState other);

	/**
	 *  I2P
	 *  @since 0.9.44
	 */
	public DHState clone() throws CloneNotSupportedException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy