name static method

String name(
  1. int id
)

Implementation

static String name(int id) {
  switch (id) {
    case ED25519:
      return 'ssh-ed25519';
    case ECDSA_SHA2_NISTP256:
      return 'ecdsa-sha2-nistp256';
    case ECDSA_SHA2_NISTP384:
      return 'ecdsa-sha2-nistp384';
    case ECDSA_SHA2_NISTP521:
      return 'ecdsa-sha2-nistp521';
    case RSA:
      return 'ssh-rsa';
    default:
      return '';
  }
}