diff options
author | Tobias Brunner <tobias@strongswan.org> | 2013-08-15 12:42:09 +0200 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2013-09-13 15:23:49 +0200 |
commit | f40e9f4d161d79a5e4c93c4b0423c6535b9553f9 (patch) | |
tree | de138620c88f1473b0bc493fe95ad502f7168310 /src/libstrongswan/plugins/sshkey/sshkey_encoder.h | |
parent | 3b939e20a96984584a941da452513220ef0c38af (diff) | |
download | strongswan-f40e9f4d161d79a5e4c93c4b0423c6535b9553f9.tar.bz2 strongswan-f40e9f4d161d79a5e4c93c4b0423c6535b9553f9.tar.xz |
sshkey: Add encoder for RSA keys
Diffstat (limited to 'src/libstrongswan/plugins/sshkey/sshkey_encoder.h')
-rw-r--r-- | src/libstrongswan/plugins/sshkey/sshkey_encoder.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/libstrongswan/plugins/sshkey/sshkey_encoder.h b/src/libstrongswan/plugins/sshkey/sshkey_encoder.h new file mode 100644 index 000000000..bdd31a6c8 --- /dev/null +++ b/src/libstrongswan/plugins/sshkey/sshkey_encoder.h @@ -0,0 +1,32 @@ +/* + * Copyright (C) 2013 Tobias Brunner + * Hochschule fuer Technik Rapperswil + * + * This program is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by the + * Free Software Foundation; either version 2 of the License, or (at your + * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY + * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * for more details. + */ + +/** + * @defgroup sshkey_encoder sshkey_encoder + * @{ @ingroup sshkey_p + */ + +#ifndef SSHKEY_ENCODER_H_ +#define SSHKEY_ENCODER_H_ + +#include <credentials/cred_encoding.h> + +/** + * Encoding of public keys to RFC 4253 format. + */ +bool sshkey_encoder_encode(cred_encoding_type_t type, chunk_t *encoding, + va_list args); + +#endif /** SSHKEY_ENCODER_H_ @}*/ |