X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=sha1.c;h=af4dbc654c70008f3d89c7ddf093ffc8d18694ee;hp=4cbbee3ece029e2ae217c63e9b6f1f5fa1c02242;hb=68f0d202714b85c9b5e649dcefc41df58fe8e31e;hpb=57385d313c47bb37b3ac73940a43d47612a2c593 diff --git a/sha1.c b/sha1.c index 4cbbee3e..af4dbc65 100644 --- a/sha1.c +++ b/sha1.c @@ -1,14 +1,20 @@ -#include "para.h" -#include +/* + * Copyright (C) 2007-2008 Andre Noll + * + * Licensed under the GPL v2. For licencing details see COPYING. + */ /** \file sha1.c Secure Hash Algorithm, provided by openssl. */ +#include "para.h" +#include + /** * Compute the sha1 hash. * * \param data Pointer to the data to compute the hash value from. * \param len The length of \a data in bytes. - * \param sha1 Result pointer + * \param sha1 Result pointer. * * \a sha1 must point to an area at least 20 bytes large. *