X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=sha1.c;h=b0e955ec9a3e10aec90a71467c05615b69aa3233;hp=bc2ec336fe353de3c2bb3853203e659b0a73385e;hb=312eca6bf2f4b4d9ee9081e3c213883bfe194a96;hpb=f6f50d03a09d6bc423324206d274336e9905bbb4 diff --git a/sha1.c b/sha1.c index bc2ec336..b0e955ec 100644 --- a/sha1.c +++ b/sha1.c @@ -1,14 +1,20 @@ -#include "para.h" -#include +/* + * Copyright (C) 2007-2011 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 valure from. + * \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. *