Browse Source

sshd: add missing javadoc in SshTestGitServer

Change-Id: Ie2e207eb05e0f6da8018153f8a5dd636e8f35f4c
Signed-off-by: Thomas Wolf <thomas.wolf@paranor.ch>
tags/v5.5.0.201908280940-m3
Thomas Wolf 4 years ago
parent
commit
3a3c8de85c

+ 10
- 0
org.eclipse.jgit.junit.ssh/src/org/eclipse/jgit/junit/ssh/SshTestGitServer.java View File

@@ -338,6 +338,16 @@ public class SshTestGitServer {
server.stop(true);
}

/**
* Sets the test user's public key on the server.
*
* @param key
* to set
* @throws IOException
* if the file cannot be read
* @throws GeneralSecurityException
* if the public key cannot be extracted from the file
*/
public void setTestUserPublicKey(Path key)
throws IOException, GeneralSecurityException {
this.testKey = AuthorizedKeyEntry.readAuthorizedKeys(key).get(0)

Loading…
Cancel
Save