| Server IP : 82.208.35.60 / Your IP : 216.73.216.89 Web Server : Apache/2.4.55 (FreeBSD) OpenSSL/1.1.1q-freebsd PHP/7.3.31 System : FreeBSD server7.d2m.cz 12.4-RELEASE-p9 FreeBSD 12.4-RELEASE-p9 GENERIC amd64 User : studiokobylisy_cz ( 1008) PHP Version : 7.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /usr/ports/security/pgpin/files/ |
Upload File : |
--- crypto.c.orig Tue Jan 20 09:54:51 1998
+++ crypto.c Sun Dec 8 11:43:11 2002
@@ -181,7 +181,7 @@
if (timestamp != NULL) {
/* first, fill array in external byte order: */
put_word32(t, timestamp);
- convert_byteorder(timestamp,4);
+ convert_byteorder(timestamp,SIZEOF_TIMESTAMP);
/* convert to internal byteorder */
}
@@ -850,11 +850,11 @@
LANG("\n\007Error: System clock/calendar is set wrong.\n"));
return -1;
}
- convert_byteorder(timestamp,4); /* convert to external form */
+ convert_byteorder(timestamp,SIZEOF_TIMESTAMP); /* convert to external form */
/* Finish off message digest calculation with this information */
MD_addbuffer (MD, &class, 1, 0);
- MD_addbuffer (MD, timestamp, 4, md5buf);
+ MD_addbuffer (MD, timestamp, SIZEOF_TIMESTAMP, md5buf);
/* We wrote the digest to a static variable because we want to keep it around
for random number generation later. Also make a note of that fact. */
already_have_md5 = 1;