]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/src/lib/md5.c
Update copyrights
[bacula/bacula] / bacula / src / lib / md5.c
index 0725dc5eaa8b37483d7213857f00eaaadd57e026..d6135367f35def852e87a781d55eb61601f15d18 100644 (file)
    prototypes) to maintain the tradition that Netfone will compile
    with Sun's original "cc". */
 
+/*
+   Bacula® - The Network Backup Solution
+
+   Copyright (C) 2000-2006 Free Software Foundation Europe e.V.
+
+   The main author of Bacula is Kern Sibbald, with contributions from
+   many others, a complete list can be found in the file AUTHORS.
+   This program is Free Software; you can redistribute it and/or
+   modify it under the terms of version two of the GNU General Public
+   License as published by the Free Software Foundation plus additions
+   that are listed in the file LICENSE.
+
+   This program is distributed in the hope that it will be useful, but
+   WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+   General Public License for more details.
+
+   You should have received a copy of the GNU General Public License
+   along with this program; if not, write to the Free Software
+   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+   02110-1301, USA.
+
+   Bacula® is a registered trademark of John Walker.
+   The licensor of Bacula is the Free Software Foundation Europe
+   (FSFE), Fiduciary Program, Sumatrastrasse 25, 8006 Zürich,
+   Switzerland, email:ftf@fsfeurope.org.
+*/
+
+
 #include "bacula.h"
 
 #ifndef HAVE_BIGENDIAN
@@ -298,7 +327,7 @@ int main(int argc, char *argv[])
       exit(1);
    }
 
-   fd = fopen(argv[0], "r");
+   fd = fopen(argv[0], "rb");
    if (!fd) {
       printf("Could not open %s: ERR=%s\n", argv[0], strerror(errno));
       exit(1);
@@ -317,7 +346,7 @@ int main(int argc, char *argv[])
 #ifdef OUTPUT_BASE64
    char MD5buf[40];                 /* 24 should do */ 
    memset(MD5buf, 0, 40);
-   bin_to_base64(MD5buf, (char *)signature, 16); /* encode 16 bytes */
+   bin_to_base64(MD5buf, sizeof(MD5buf), (char *)signature, 16, true); /* encode 16 bytes */
    printf("  %s", MD5buf);
 #endif
    printf("  %s\n", argv[0]);
@@ -347,7 +376,7 @@ decode_it:
       }
       signature[16] = 0;
       printf("%s", buf);
-      bin_to_base64(bin, (char *)signature, 16);
+      bin_to_base64(bin, sizeof(bin), (char *)signature, 16, true);
       printf("%s\n", bin);
    }
 }