X-Git-Url: http://git.tuebingen.mpg.de/?a=blobdiff_plain;f=crypt.h;h=2e094ced9ee760ced8a7647217a5046bc58e0c20;hb=refs%2Fheads%2Fpu;hp=5578cd563fae4dc24d673e653dcf21329eba90bc;hpb=fdeca7261696df2bd189faff26b6cbf3004c808e;p=paraslash.git diff --git a/crypt.h b/crypt.h index 5578cd56..2e094ced 100644 --- a/crypt.h +++ b/crypt.h @@ -20,18 +20,18 @@ struct asymmetric_key; * \param pub: The public key. * \param inbuf The input buffer. * \param len The length of \a inbuf. - * \param outbuf The output buffer. + * \param outbuf The output buffer will be allocated by the callee. * * \return The size of the encrypted data on success, negative on errors. */ int apc_pub_encrypt(struct asymmetric_key *pub, unsigned char *inbuf, - unsigned len, unsigned char *outbuf); + unsigned len, unsigned char **outbuf); /** * Decrypt a buffer using a private key. * * \param key_file Full path of the key. - * \param outbuf The output buffer. + * \param outbuf The output buffer is allocated by the callee. * \param inbuf The encrypted input buffer. * \param inlen The length of \a inbuf. * @@ -39,7 +39,7 @@ int apc_pub_encrypt(struct asymmetric_key *pub, unsigned char *inbuf, * * \return The size of the recovered plaintext on success, negative on errors. */ -int apc_priv_decrypt(const char *key_file, unsigned char *outbuf, +int apc_priv_decrypt(const char *key_file, unsigned char **outbuf, unsigned char *inbuf, int inlen); /**