diff options
author | Goraf <22941576+Goraf@users.noreply.github.com> | 2018-01-10 13:27:54 +0100 |
---|---|---|
committer | Goraf <22941576+Goraf@users.noreply.github.com> | 2018-01-19 01:39:33 +0100 |
commit | 97bb7e79c15952e7f9bf47caef4e3c09dd63c8df (patch) | |
tree | b501cec701c8f98f738b3157f9195c090981d072 /protocols/Gadu-Gadu/src/libgadu/sha1.cpp | |
parent | 7f1d5f6915ecfbb804319d33e4712455def63182 (diff) |
Gadu-Gadu: complete update to libgadu-1.10.1-post
Diffstat (limited to 'protocols/Gadu-Gadu/src/libgadu/sha1.cpp')
-rw-r--r-- | protocols/Gadu-Gadu/src/libgadu/sha1.cpp | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/protocols/Gadu-Gadu/src/libgadu/sha1.cpp b/protocols/Gadu-Gadu/src/libgadu/sha1.cpp index b01b77a00c..155aa85dfd 100644 --- a/protocols/Gadu-Gadu/src/libgadu/sha1.cpp +++ b/protocols/Gadu-Gadu/src/libgadu/sha1.cpp @@ -1,5 +1,4 @@ -/* coding: UTF-8 */
-/* $Id: sha1.c,v 1.4 2007-07-20 23:00:50 wojtekka Exp $ */
+/* $Id$ */
/*
* (C) Copyright 2007 Wojtek Kaniewski <wojtekka@irc.pl>
@@ -24,7 +23,7 @@ /**
* \file sha1.c
*
- * \brief Funkcje wyznaczania skrĂłtu SHA1
+ * \brief Funkcje wyznaczania skrótu SHA1
*/
#include <string.h>
@@ -38,11 +37,11 @@ #include "libgadu.h"
/**
- * \internal Liczy skrĂłt SHA1 z ziarna i hasĹa.
+ * \internal Liczy skrót SHA1 z ziarna i hasła.
*
- * \param password HasĹo
+ * \param password Hasło
* \param seed Ziarno
- * \param result Bufor na wynik funkcji skrĂłtu (20 bajtĂłw)
+ * \param result Bufor na wynik funkcji skrótu (20 bajtów)
*/
void gg_login_hash_sha1(const char *password, uint32_t seed, uint8_t *result)
{
@@ -56,10 +55,10 @@ void gg_login_hash_sha1(const char *password, uint32_t seed, uint8_t *result) }
/**
- * \internal Liczy skrĂłt SHA1 z pliku.
+ * \internal Liczy skrót SHA1 z pliku.
*
* \param fd Deskryptor pliku
- * \param result WskaĹşnik na skrĂłt
+ * \param result WskaĹşnik na skrót
*
* \return 0 lub -1
*/
|