Skip to content

Instantly share code, notes, and snippets.

View vcgato29's full-sized avatar

GitIan-Champion vcgato29

  • Spaceforce LLC
View GitHub Profile
@vcgato29
vcgato29 / Ssh2Converter.java
Created January 16, 2019 10:42 — forked from kaushikthedeveloper/Ssh2Converter.java
Convert OpenSSH public key to RFC 4716 (SSH2) format
/**
* Convert OpenSSH to RFC 4716 (SSH2) format [https://tools.ietf.org/html/rfc4716]
*
* @author KaushikTheDeveloper
* Created on Mar 08, 2018
*/
public class Ssh2Converter {
private static final int MAX_LINE_LENGTH = 70;
private static final String BEGIN_MARKER = "---- BEGIN SSH2 PUBLIC KEY ----\n";