Mercurial > dropbear
view signkey_ossh.h @ 1920:1489449eceb1
Check authorized_keys permissions as the user
This is necessary on NFS with squash root.
Based on work from Chris Dragan
This commit also tidies some trailing whitespace.
Fixes github pull #107
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Wed, 30 Mar 2022 12:56:09 +0800 |
parents | ced53051e200 |
children |
line wrap: on
line source
#ifndef DROPBEAR_SIGNKEY_OSSH_H_ #define DROPBEAR_SIGNKEY_OSSH_H_ #include "signkey.h" /* Helpers for OpenSSH format keys in dropbearconvert */ void buf_put_rsa_priv_ossh(buffer *buf, const sign_key *akey); int buf_get_rsa_priv_ossh(buffer *buf, sign_key *akey); void buf_put_ed25519_priv_ossh(buffer *buf, const sign_key *akey); int buf_get_ed25519_priv_ossh(buffer *buf, sign_key *akey); void buf_put_ecdsa_priv_ossh(buffer *buf, const sign_key *akey); int buf_get_ecdsa_priv_ossh(buffer *buf, sign_key *akey); #endif /* DROPBEAR_SIGNKEY_OSSH_H_ */