Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
1e5be8cf
Kaydet (Commit)
1e5be8cf
authored
Haz 21, 2012
tarafından
doko@ubuntu.com
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
sha1_{init,process,done}: make static
üst
1e3398a5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
sha1module.c
Modules/sha1module.c
+6
-3
No files found.
Modules/sha1module.c
Dosyayı görüntüle @
1e5be8cf
...
@@ -184,7 +184,8 @@ static void sha1_compress(struct sha1_state *sha1, unsigned char *buf)
...
@@ -184,7 +184,8 @@ static void sha1_compress(struct sha1_state *sha1, unsigned char *buf)
Initialize the hash state
Initialize the hash state
@param sha1 The hash state you wish to initialize
@param sha1 The hash state you wish to initialize
*/
*/
void
sha1_init
(
struct
sha1_state
*
sha1
)
static
void
sha1_init
(
struct
sha1_state
*
sha1
)
{
{
assert
(
sha1
!=
NULL
);
assert
(
sha1
!=
NULL
);
sha1
->
state
[
0
]
=
0x67452301UL
;
sha1
->
state
[
0
]
=
0x67452301UL
;
...
@@ -202,7 +203,8 @@ void sha1_init(struct sha1_state *sha1)
...
@@ -202,7 +203,8 @@ void sha1_init(struct sha1_state *sha1)
@param in The data to hash
@param in The data to hash
@param inlen The length of the data (octets)
@param inlen The length of the data (octets)
*/
*/
void
sha1_process
(
struct
sha1_state
*
sha1
,
static
void
sha1_process
(
struct
sha1_state
*
sha1
,
const
unsigned
char
*
in
,
Py_ssize_t
inlen
)
const
unsigned
char
*
in
,
Py_ssize_t
inlen
)
{
{
Py_ssize_t
n
;
Py_ssize_t
n
;
...
@@ -237,7 +239,8 @@ void sha1_process(struct sha1_state *sha1,
...
@@ -237,7 +239,8 @@ void sha1_process(struct sha1_state *sha1,
@param sha1 The hash state
@param sha1 The hash state
@param out [out] The destination of the hash (20 bytes)
@param out [out] The destination of the hash (20 bytes)
*/
*/
void
sha1_done
(
struct
sha1_state
*
sha1
,
unsigned
char
*
out
)
static
void
sha1_done
(
struct
sha1_state
*
sha1
,
unsigned
char
*
out
)
{
{
int
i
;
int
i
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment