273
|
1 /*
|
|
2 * Copyright (c) 2006-2011 Christian Plattner. All rights reserved.
|
|
3 * Please refer to the LICENSE.txt for licensing details.
|
|
4 */
|
|
5 package ch.ethz.ssh2.auth;
|
|
6
|
|
7 public interface AgentIdentity {
|
|
8 String getAlgName();
|
|
9 byte[] getPublicKeyBlob();
|
|
10 byte[] sign(byte[] data);
|
|
11 }
|