shun-iwasawa 82a8f5
/*
shun-iwasawa 82a8f5
 * Copyright (C)2013, 2016 D. R. Commander.  All Rights Reserved.
shun-iwasawa 82a8f5
 *
shun-iwasawa 82a8f5
 * Redistribution and use in source and binary forms, with or without
shun-iwasawa 82a8f5
 * modification, are permitted provided that the following conditions are met:
shun-iwasawa 82a8f5
 *
shun-iwasawa 82a8f5
 * - Redistributions of source code must retain the above copyright notice,
shun-iwasawa 82a8f5
 *   this list of conditions and the following disclaimer.
shun-iwasawa 82a8f5
 * - Redistributions in binary form must reproduce the above copyright notice,
shun-iwasawa 82a8f5
 *   this list of conditions and the following disclaimer in the documentation
shun-iwasawa 82a8f5
 *   and/or other materials provided with the distribution.
shun-iwasawa 82a8f5
 * - Neither the name of the libjpeg-turbo Project nor the names of its
shun-iwasawa 82a8f5
 *   contributors may be used to endorse or promote products derived from this
shun-iwasawa 82a8f5
 *   software without specific prior written permission.
shun-iwasawa 82a8f5
 *
shun-iwasawa 82a8f5
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS",
shun-iwasawa 82a8f5
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
shun-iwasawa 82a8f5
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
shun-iwasawa 82a8f5
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
shun-iwasawa 82a8f5
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
shun-iwasawa 82a8f5
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
shun-iwasawa 82a8f5
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
shun-iwasawa 82a8f5
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
shun-iwasawa 82a8f5
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
shun-iwasawa 82a8f5
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
shun-iwasawa 82a8f5
 * POSSIBILITY OF SUCH DAMAGE.
shun-iwasawa 82a8f5
 */
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
#include <stdio.h></stdio.h>
shun-iwasawa 82a8f5
#include <string.h></string.h>
shun-iwasawa 82a8f5
#include "./md5.h"
shun-iwasawa 82a8f5
#include "../tjutil.h"
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
int main(int argc, char *argv[])
shun-iwasawa 82a8f5
{
shun-iwasawa 82a8f5
  char *md5sum = NULL, buf[65];
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
  if (argc < 3) {
shun-iwasawa 82a8f5
    fprintf(stderr, "USAGE: %s <correct md5="" sum=""> <file>\n", argv[0]);</file></correct>
shun-iwasawa 82a8f5
    return -1;
shun-iwasawa 82a8f5
  }
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
  if (strlen(argv[1]) != 32)
shun-iwasawa 82a8f5
    fprintf(stderr, "WARNING: MD5 hash size is wrong.\n");
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
  md5sum = MD5File(argv[2], buf);
shun-iwasawa 82a8f5
  if (!md5sum) {
shun-iwasawa 82a8f5
    perror("Could not obtain MD5 sum");
shun-iwasawa 82a8f5
    return -1;
shun-iwasawa 82a8f5
  }
shun-iwasawa 82a8f5
shun-iwasawa 82a8f5
  if (!strcasecmp(md5sum, argv[1])) {
shun-iwasawa 82a8f5
    fprintf(stderr, "%s: OK\n", argv[2]);
shun-iwasawa 82a8f5
    return 0;
shun-iwasawa 82a8f5
  } else {
shun-iwasawa 82a8f5
    fprintf(stderr, "%s: FAILED.  Checksum is %s\n", argv[2], md5sum);
shun-iwasawa 82a8f5
    return -1;
shun-iwasawa 82a8f5
  }
shun-iwasawa 82a8f5
}