diff options
author | Martin Willi <martin@strongswan.org> | 2008-03-19 14:21:56 +0000 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2008-03-19 14:21:56 +0000 |
commit | de7062a280990131df24e2ccb2559fb8f33ca145 (patch) | |
tree | 67b8c473db2f9a93a69ec62ed9b64a6548a30661 /src/libstrongswan/credentials/keys/public_key.h | |
parent | cfede7f6e26351e9edf4a10ab40c292d2f7142bc (diff) | |
download | strongswan-de7062a280990131df24e2ccb2559fb8f33ca145.tar.bz2 strongswan-de7062a280990131df24e2ccb2559fb8f33ca145.tar.xz |
removed unimplemented private/public key function declarations
Diffstat (limited to 'src/libstrongswan/credentials/keys/public_key.h')
-rw-r--r-- | src/libstrongswan/credentials/keys/public_key.h | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/src/libstrongswan/credentials/keys/public_key.h b/src/libstrongswan/credentials/keys/public_key.h index 2083db5a1..02a4410ff 100644 --- a/src/libstrongswan/credentials/keys/public_key.h +++ b/src/libstrongswan/credentials/keys/public_key.h @@ -142,22 +142,4 @@ struct public_key_t { void (*destroy)(public_key_t *this); }; -/** - * Read a public key from a file. - * - * @param type type of the key - * @param filename filename to read key from - * @return loaded public key, NULL if failed - */ -public_key_t *public_key_create_from_file(key_type_t type, char *filename); - -/** - * Create a public key from a chunk. - * - * @param type type of the key - * @param chunk chunk to create key from - * @return loaded public key, NULL if failed - */ -public_key_t *public_key_create_from_chunk(key_type_t type, chunk_t chunk); - #endif /* PUBLIC_KEY_H_ @} */ |