X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;f=ucw%2Fsha1.h;h=2527e09a72f5e5204bef389aca83d1dda956428f;hb=ba7d341ccf72d0e29554802fc399a24ea3aaaa3a;hp=55809ee00c3ec631ebcca2adb9d3bddca538cfcf;hpb=b5b7b2641b00a18b53c48a1335846133f1d53168;p=libucw.git diff --git a/ucw/sha1.h b/ucw/sha1.h index 55809ee0..2527e09a 100644 --- a/ucw/sha1.h +++ b/ucw/sha1.h @@ -30,12 +30,12 @@ void sha1_init(sha1_context *hd); /** Initialize new algorithm run in the @hd co * Push another @inlen bytes of data pointed to by @inbuf onto the * SHA1 hash currently in @hd. You can call this any times you want on * the same hash (and you do not need to reinitialize it by - * sha1_init()). It has the same effect as concatenating all the data + * @sha1_init()). It has the same effect as concatenating all the data * together and passing them at once. */ void sha1_update(sha1_context *hd, const byte *inbuf, uns inlen); /** - * No more sha1_update() calls will be done. This terminates the hash + * No more @sha1_update() calls will be done. This terminates the hash * and returns a pointer to it. * * Note that the pointer points into data in the @hd context. If it ceases