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

com.sshtools.synergy.ssh.components.SshKeyExchange Maven / Gradle / Ivy

package com.sshtools.synergy.ssh.components;

/*-
 * #%L
 * Common API
 * %%
 * Copyright (C) 2002 - 2024 JADAPTIVE Limited
 * %%
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as
 * published by the Free Software Foundation, either version 3 of the
 * License, or (at your option) any later version.
 * 
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Lesser Public License for more details.
 * 
 * You should have received a copy of the GNU General Lesser Public
 * License along with this program.  If not, see
 * .
 * #L%
 */

import java.io.IOException;
import java.math.BigInteger;

import com.sshtools.common.ssh.SecureComponent;
import com.sshtools.common.ssh.SshException;
import com.sshtools.common.ssh.components.SshComponent;
import com.sshtools.common.ssh.components.SshPrivateKey;
import com.sshtools.common.ssh.components.SshPublicKey;
import com.sshtools.synergy.ssh.SshContext;
import com.sshtools.synergy.ssh.SshTransport;

/**
 * Base interface for SSH2 key exchange implementations. 
 * @author Lee David Painter
 *
 */
public interface SshKeyExchange extends SshComponent, SecureComponent {

	String getHashAlgorithm();
	
	void test() throws IOException, SshException;
	
    public void init(SshTransport transport, String clientId, String serverId, byte[] clientKexInit,
            byte[] serverKexInit, SshPrivateKey prvkey, SshPublicKey pubkey, boolean firstPacketFollows,
            boolean useFirstPacket) throws IOException, SshException;

	public void setReceivedNewKeys(boolean b);

	public boolean processMessage(byte[] msg) throws SshException, IOException;

	public void setSentNewKeys(boolean b);

	public byte[] getExchangeHash();

	public boolean hasReceivedNewKeys();

	public boolean hasSentNewKeys();

	public BigInteger getSecret();

	public String getAlgorithm();

	public byte[] getHostKey();
	
	String getProvider();

	byte[] getSignature();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy