/* * Copyright (C) 2008 Martin Willi * 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 . * * 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 agent_private_key agent_private_key * @{ @ingroup agent_p */ #ifndef AGENT_PRIVATE_KEY_H_ #define AGENT_PRIVATE_KEY_H_ #include typedef struct agent_private_key_t agent_private_key_t; /** * private_key_t implementation using an ssh-agent. */ struct agent_private_key_t { /** * Implements private_key_t interface */ private_key_t interface; }; /** * Create the builder for a private key. * * @param type type of the key * @return builder instance */ builder_t *agent_private_key_builder(key_type_t type); #endif /*AGENT_PRIVATE_KEY_H_ @}*/