com.xebialabs.overthere.gcp.GenerateSshKey Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of overthere Show documentation
Show all versions of overthere Show documentation
Remote file manipulation and process execution framework for Java
package com.xebialabs.overthere.gcp;
/**
* Generate SSH key pair
*/
interface GenerateSshKey {
/**
* Generate SSH key pair for input username and key size.
*
* @param username username that will be part of generated key
* @param keySize size of the key that will be generated
* @return key pair (public and private key)
*/
SshKeyPair generate(String username, int keySize);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy