Ruby  2.5.0dev(2017-10-22revision60238)
digest.h
Go to the documentation of this file.
1 /************************************************
2 
3  digest.h - header file for ruby digest modules
4 
5  $Author$
6  created at: Fri May 25 08:54:56 JST 2001
7 
8 
9  Copyright (C) 2001-2006 Akinori MUSHA
10 
11  $RoughId: digest.h,v 1.3 2001/07/13 15:38:27 knu Exp $
12  $Id$
13 
14 ************************************************/
15 
16 #include "ruby.h"
17 
18 #define RUBY_DIGEST_API_VERSION 3
19 
20 typedef int (*rb_digest_hash_init_func_t)(void *);
21 typedef void (*rb_digest_hash_update_func_t)(void *, unsigned char *, size_t);
22 typedef int (*rb_digest_hash_finish_func_t)(void *, unsigned char *);
23 
24 typedef struct {
26  size_t digest_len;
27  size_t block_len;
28  size_t ctx_size;
33 
34 #define DEFINE_UPDATE_FUNC_FOR_UINT(name) \
35 void \
36 rb_digest_##name##_update(void *ctx, unsigned char *ptr, size_t size) \
37 { \
38  const unsigned int stride = 16384; \
39  \
40  for (; size > stride; size -= stride, ptr += stride) { \
41  name##_Update(ctx, ptr, stride); \
42  } \
43  if (size > 0) name##_Update(ctx, ptr, size); \
44 }
45 
46 #define DEFINE_FINISH_FUNC_FROM_FINAL(name) \
47 int \
48 rb_digest_##name##_finish(void *ctx, unsigned char *ptr) \
49 { \
50  return name##_Final(ptr, ctx); \
51 }
rb_digest_hash_update_func_t update_func
Definition: digest.h:30
size_t digest_len
Definition: digest.h:26
rb_digest_hash_finish_func_t finish_func
Definition: digest.h:31
int(* rb_digest_hash_finish_func_t)(void *, unsigned char *)
Definition: digest.h:22
size_t block_len
Definition: digest.h:27
rb_digest_hash_init_func_t init_func
Definition: digest.h:29
void(* rb_digest_hash_update_func_t)(void *, unsigned char *, size_t)
Definition: digest.h:21
int(* rb_digest_hash_init_func_t)(void *)
Definition: digest.h:20