aboutsummaryrefslogtreecommitdiffstats
path: root/sshlib/src/main/java/com/trilead/ssh2/AuthAgentCallback.java
blob: 17dcbb4e60f6a9b0d2312600242496745bdb9da2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
package com.trilead.ssh2;

import java.security.KeyPair;
import java.util.Map;

/**
 * AuthAgentCallback.
 *
 * @author Kenny Root
 * @version $Id$
 */
public interface AuthAgentCallback {

	/**
	 * @return array of blobs containing the OpenSSH-format encoded public keys
	 */
	Map<String,byte[]> retrieveIdentities();

	/**
	 * @param pair A <code>RSAPrivateKey</code>, <code>ECPrivateKey</code>, or
	 *             <code>DSAPrivateKey</code> containing a DSA, EC, or RSA private
	 *             and corresponding <code>PublicKey</code>.
	 * @param comment comment associated with this key
	 * @param confirmUse whether to prompt before using this key
	 * @param lifetime lifetime in seconds for key to be remembered
	 * @return success or failure
	 */
	boolean addIdentity(KeyPair pair, String comment, boolean confirmUse, int lifetime);

	/**
	 * @param publicKey byte blob containing the OpenSSH-format encoded public key
	 * @return success or failure
	 */
	boolean removeIdentity(byte[] publicKey);

	/**
	 * @return success or failure
	 */
	boolean removeAllIdentities();

	/**
	 * @param publicKey byte blob containing the OpenSSH-format encoded public key
	 * @return A <code>RSAPrivateKey</code> or <code>DSAPrivateKey</code>
	 *         containing a DSA or RSA private key of
	 *         the user in Trilead object format.
	 */
	KeyPair getKeyPair(byte[] publicKey);

	/**
	 * @return
	 */
	boolean isAgentLocked();

	/**
	 * @param lockPassphrase
	 */
	boolean setAgentLock(String lockPassphrase);

	/**
	 * @param unlockPassphrase
	 * @return
	 */
	boolean requestAgentUnlock(String unlockPassphrase);
}