Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. /* Key type when certifying */
  2. static u_int cert_key_type = SSH2_CERT_TYPE_USER; // L105
  3.  
  4. /* If -h is set, set certificate type to Host and set cert flags to none. */
  5. case 'h': // L2573
  6. cert_key_type = SSH2_CERT_TYPE_HOST;
  7. certflags_flags = 0;
  8. break;
  9.  
  10. /* Set the certificate type to whatever value was set before */
  11. public->cert->type = cert_key_type; // L1744
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement