X-Git-Url: http://git.silcnet.org/gitweb/?a=blobdiff_plain;f=lib%2Fsilccrypt%2Fsilcpkcs.h;h=978da199882dc82c95cac8b3a2e4d24de3f60eab;hb=6d23bd9afca4d3552444229d89f1208c132198db;hp=fa3230eea55b9671f183c36ca16b5d6933e5ff6a;hpb=e6e28318e7a4a4846d7dc98d73645e30e6e966f6;p=silc.git diff --git a/lib/silccrypt/silcpkcs.h b/lib/silccrypt/silcpkcs.h index fa3230ee..978da199 100644 --- a/lib/silccrypt/silcpkcs.h +++ b/lib/silccrypt/silcpkcs.h @@ -675,7 +675,6 @@ SilcAsyncOperation silc_pkcs_sign(SilcPrivateKey private_key, * unsigned char *data, * SilcUInt32 data_len, * SilcHash hash, - * SilcRng rng, * SilcPKCSVerifyCb verify_cb, * void *context); * @@ -687,9 +686,8 @@ SilcAsyncOperation silc_pkcs_sign(SilcPrivateKey private_key, * before verification. If the `hash' is NULL, then the hash algorithm * to be used is retrieved from the signature. If it isn't present in the * signature the verification is done as is without hashing. The `rng' - * is usually not needed, however some algorithms might need it so it is - * wise to provide it. If this returns NULL the asynchronous operation - * cannot be controlled. + * is usually not needed and may be NULL. If this returns NULL the + * asynchronous operation cannot be controlled. * ***/ SilcAsyncOperation silc_pkcs_verify(SilcPublicKey public_key, @@ -698,7 +696,6 @@ SilcAsyncOperation silc_pkcs_verify(SilcPublicKey public_key, unsigned char *data, SilcUInt32 data_len, SilcHash hash, - SilcRng rng, SilcPKCSVerifyCb verify_cb, void *context);