1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
|
/*
* Copyright (C) 2006-2008 Vincent Hanquez <tab@snarc.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published
* by the Free Software Foundation; version 2 only.
*
* 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.
*
* SHA1 implementation as describe in wikipedia.
*/
#include <unistd.h>
#include <fcntl.h>
#include "sha1.h"
static inline int sha1_file(char *filename, sha1_digest *digest)
{
#define BLKSIZE 4096
unsigned char buf[BLKSIZE];
int fd; ssize_t n;
struct sha1_ctx ctx;
fd = open(filename, O_RDONLY);
if (fd == -1)
return 1;
sha1_init(&ctx);
while ((n = read(fd, buf, BLKSIZE)) > 0)
sha1_update(&ctx, buf, n);
if (n == 0)
sha1_finalize(&ctx, digest);
close(fd);
return n < 0;
#undef BLKSIZE
}
/* this part implement the OCaml binding */
#include <caml/mlvalues.h>
#include <caml/memory.h>
#include <caml/alloc.h>
#include <caml/custom.h>
#include <caml/fail.h>
#define GET_CTX_STRUCT(a) ((struct sha1_ctx *) a)
CAMLexport value stub_sha1_init(value unit)
{
CAMLparam1(unit);
CAMLlocal1(result);
result = caml_alloc(sizeof(struct sha1_ctx), Abstract_tag);
sha1_init(GET_CTX_STRUCT(result));
CAMLreturn(result);
}
CAMLprim value stub_sha1_update(value ctx, value data, value ofs, value len)
{
CAMLparam4(ctx, data, ofs, len);
sha1_update(GET_CTX_STRUCT(ctx), (unsigned char *) data + Int_val(ofs),
Int_val(len));
CAMLreturn(Val_unit);
}
CAMLprim value stub_sha1_finalize(value ctx)
{
CAMLparam1(ctx);
CAMLlocal1(result);
result = caml_alloc(sizeof(sha1_digest), Abstract_tag);
sha1_finalize(GET_CTX_STRUCT(ctx), (sha1_digest *) result);
CAMLreturn(result);
}
CAMLprim value stub_sha1_file(value name)
{
CAMLparam1(name);
CAMLlocal1(result);
result = caml_alloc(sizeof(sha1_digest), Abstract_tag);
if (sha1_file(String_val(name), (sha1_digest *) result))
caml_failwith("file error");
CAMLreturn(result);
}
CAMLprim value stub_sha1_to_hex(value digest)
{
CAMLparam1(digest);
CAMLlocal1(result);
result = caml_alloc_string(40);
sha1_to_hex((sha1_digest *) digest, String_val(result));
CAMLreturn(result);
}
|