2003-07-23 12:12:24 -04:00
|
|
|
/*
|
|
|
|
* $Id$
|
|
|
|
* 'OpenSSL for Ruby' project
|
|
|
|
* Copyright (C) 2001-2002 Michal Rokos <m.rokos@sh.cvut.cz>
|
|
|
|
* All rights reserved.
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
* This program is licenced under the same licence as Ruby.
|
|
|
|
* (See the file 'LICENCE'.)
|
|
|
|
*/
|
|
|
|
#include "ossl.h"
|
|
|
|
|
|
|
|
#define GetDigest(obj, ctx) do { \
|
2011-02-22 07:39:43 -05:00
|
|
|
Data_Get_Struct((obj), EVP_MD_CTX, (ctx)); \
|
|
|
|
if (!(ctx)) { \
|
2003-07-23 12:12:24 -04:00
|
|
|
ossl_raise(rb_eRuntimeError, "Digest CTX wasn't initialized!"); \
|
|
|
|
} \
|
|
|
|
} while (0)
|
|
|
|
#define SafeGetDigest(obj, ctx) do { \
|
2011-02-22 07:39:43 -05:00
|
|
|
OSSL_Check_Kind((obj), cDigest); \
|
|
|
|
GetDigest((obj), (ctx)); \
|
2003-07-23 12:12:24 -04:00
|
|
|
} while (0)
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Classes
|
|
|
|
*/
|
|
|
|
VALUE cDigest;
|
|
|
|
VALUE eDigestError;
|
|
|
|
|
2003-09-05 05:08:40 -04:00
|
|
|
static VALUE ossl_digest_alloc(VALUE klass);
|
|
|
|
|
2003-07-23 12:12:24 -04:00
|
|
|
/*
|
|
|
|
* Public
|
|
|
|
*/
|
|
|
|
const EVP_MD *
|
|
|
|
GetDigestPtr(VALUE obj)
|
|
|
|
{
|
2007-03-29 13:29:03 -04:00
|
|
|
const EVP_MD *md;
|
2011-06-12 22:37:35 -04:00
|
|
|
ASN1_OBJECT *oid = NULL;
|
2007-03-29 13:29:03 -04:00
|
|
|
|
2014-08-02 21:56:01 -04:00
|
|
|
if (RB_TYPE_P(obj, T_STRING)) {
|
2010-02-23 12:33:39 -05:00
|
|
|
const char *name = StringValueCStr(obj);
|
2010-02-23 10:51:01 -05:00
|
|
|
|
2011-06-13 00:09:04 -04:00
|
|
|
md = EVP_get_digestbyname(name);
|
|
|
|
if (!md) {
|
|
|
|
oid = OBJ_txt2obj(name, 0);
|
|
|
|
md = EVP_get_digestbyobj(oid);
|
|
|
|
ASN1_OBJECT_free(oid);
|
|
|
|
}
|
2011-06-12 22:37:35 -04:00
|
|
|
if(!md)
|
2010-02-23 12:33:39 -05:00
|
|
|
ossl_raise(rb_eRuntimeError, "Unsupported digest algorithm (%s).", name);
|
|
|
|
} else {
|
2007-03-29 13:29:03 -04:00
|
|
|
EVP_MD_CTX *ctx;
|
|
|
|
|
|
|
|
SafeGetDigest(obj, ctx);
|
2003-07-23 12:12:24 -04:00
|
|
|
|
2008-02-25 03:51:18 -05:00
|
|
|
md = EVP_MD_CTX_md(ctx);
|
2007-03-29 13:29:03 -04:00
|
|
|
}
|
2003-07-23 12:12:24 -04:00
|
|
|
|
2007-03-29 13:29:03 -04:00
|
|
|
return md;
|
2003-07-23 12:12:24 -04:00
|
|
|
}
|
|
|
|
|
2003-09-05 05:08:40 -04:00
|
|
|
VALUE
|
|
|
|
ossl_digest_new(const EVP_MD *md)
|
2010-04-22 04:04:13 -04:00
|
|
|
{
|
2003-09-05 05:08:40 -04:00
|
|
|
VALUE ret;
|
|
|
|
EVP_MD_CTX *ctx;
|
|
|
|
|
|
|
|
ret = ossl_digest_alloc(cDigest);
|
|
|
|
GetDigest(ret, ctx);
|
2011-07-21 22:21:26 -04:00
|
|
|
if (EVP_DigestInit_ex(ctx, md, NULL) != 1) {
|
|
|
|
ossl_raise(eDigestError, "Digest initialization failed.");
|
|
|
|
}
|
2010-04-22 04:04:13 -04:00
|
|
|
|
2003-09-05 05:08:40 -04:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2003-07-23 12:12:24 -04:00
|
|
|
/*
|
|
|
|
* Private
|
|
|
|
*/
|
|
|
|
static VALUE
|
|
|
|
ossl_digest_alloc(VALUE klass)
|
|
|
|
{
|
|
|
|
EVP_MD_CTX *ctx;
|
|
|
|
VALUE obj;
|
|
|
|
|
|
|
|
ctx = EVP_MD_CTX_create();
|
|
|
|
if (ctx == NULL)
|
|
|
|
ossl_raise(rb_eRuntimeError, "EVP_MD_CTX_create() failed");
|
|
|
|
obj = Data_Wrap_Struct(klass, 0, EVP_MD_CTX_destroy, ctx);
|
2008-02-25 03:51:18 -05:00
|
|
|
|
2003-07-23 12:12:24 -04:00
|
|
|
return obj;
|
|
|
|
}
|
|
|
|
|
|
|
|
VALUE ossl_digest_update(VALUE, VALUE);
|
|
|
|
|
2007-03-29 13:29:03 -04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2011-05-16 19:07:58 -04:00
|
|
|
* Digest.new(string [, data]) -> Digest
|
|
|
|
*
|
|
|
|
* Creates a Digest instance based on +string+, which is either the ln
|
|
|
|
* (long name) or sn (short name) of a supported digest algorithm.
|
|
|
|
* If +data+ (a +String+) is given, it is used as the initial input to the
|
|
|
|
* Digest instance, i.e.
|
|
|
|
* digest = OpenSSL::Digest.new('sha256', 'digestdata')
|
|
|
|
* is equal to
|
|
|
|
* digest = OpenSSL::Digest.new('sha256')
|
|
|
|
* digest.update('digestdata')
|
|
|
|
*
|
|
|
|
* === Example
|
|
|
|
* digest = OpenSSL::Digest.new('sha1')
|
|
|
|
*
|
2007-03-29 13:29:03 -04:00
|
|
|
*
|
|
|
|
*/
|
2003-07-23 12:12:24 -04:00
|
|
|
static VALUE
|
|
|
|
ossl_digest_initialize(int argc, VALUE *argv, VALUE self)
|
|
|
|
{
|
|
|
|
EVP_MD_CTX *ctx;
|
|
|
|
const EVP_MD *md;
|
|
|
|
VALUE type, data;
|
|
|
|
|
|
|
|
rb_scan_args(argc, argv, "11", &type, &data);
|
2008-02-25 03:51:18 -05:00
|
|
|
md = GetDigestPtr(type);
|
2003-07-23 12:12:24 -04:00
|
|
|
if (!NIL_P(data)) StringValue(data);
|
2008-02-25 03:51:18 -05:00
|
|
|
|
2004-12-15 01:35:55 -05:00
|
|
|
GetDigest(self, ctx);
|
2011-07-21 22:21:26 -04:00
|
|
|
if (EVP_DigestInit_ex(ctx, md, NULL) != 1) {
|
|
|
|
ossl_raise(eDigestError, "Digest initialization failed.");
|
|
|
|
}
|
2010-04-22 04:04:13 -04:00
|
|
|
|
2003-07-23 12:12:24 -04:00
|
|
|
if (!NIL_P(data)) return ossl_digest_update(self, data);
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
ossl_digest_copy(VALUE self, VALUE other)
|
|
|
|
{
|
|
|
|
EVP_MD_CTX *ctx1, *ctx2;
|
2010-04-22 04:04:13 -04:00
|
|
|
|
2003-07-23 12:12:24 -04:00
|
|
|
rb_check_frozen(self);
|
|
|
|
if (self == other) return self;
|
|
|
|
|
|
|
|
GetDigest(self, ctx1);
|
|
|
|
SafeGetDigest(other, ctx2);
|
|
|
|
|
|
|
|
if (!EVP_MD_CTX_copy(ctx1, ctx2)) {
|
|
|
|
ossl_raise(eDigestError, NULL);
|
|
|
|
}
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2007-03-29 13:29:03 -04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* digest.reset -> self
|
|
|
|
*
|
2011-05-16 19:07:58 -04:00
|
|
|
* Resets the Digest in the sense that any Digest#update that has been
|
|
|
|
* performed is abandoned and the Digest is set to its initial state again.
|
|
|
|
*
|
2007-03-29 13:29:03 -04:00
|
|
|
*/
|
2003-07-23 12:12:24 -04:00
|
|
|
static VALUE
|
|
|
|
ossl_digest_reset(VALUE self)
|
|
|
|
{
|
|
|
|
EVP_MD_CTX *ctx;
|
|
|
|
|
|
|
|
GetDigest(self, ctx);
|
2011-07-21 22:21:26 -04:00
|
|
|
if (EVP_DigestInit_ex(ctx, EVP_MD_CTX_md(ctx), NULL) != 1) {
|
|
|
|
ossl_raise(eDigestError, "Digest initialization failed.");
|
|
|
|
}
|
2003-07-23 12:12:24 -04:00
|
|
|
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2007-03-29 13:29:03 -04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* digest.update(string) -> aString
|
|
|
|
*
|
2011-05-16 19:07:58 -04:00
|
|
|
* Not every message digest can be computed in one single pass. If a message
|
|
|
|
* digest is to be computed from several subsequent sources, then each may
|
|
|
|
* be passed individually to the Digest instance.
|
|
|
|
*
|
|
|
|
* === Example
|
|
|
|
* digest = OpenSSL::Digest::SHA256.new
|
|
|
|
* digest.update('First input')
|
|
|
|
* digest << 'Second input' # equivalent to digest.update('Second input')
|
|
|
|
* result = digest.digest
|
|
|
|
*
|
2007-03-29 13:29:03 -04:00
|
|
|
*/
|
2003-07-23 12:12:24 -04:00
|
|
|
VALUE
|
|
|
|
ossl_digest_update(VALUE self, VALUE data)
|
|
|
|
{
|
|
|
|
EVP_MD_CTX *ctx;
|
|
|
|
|
|
|
|
StringValue(data);
|
2004-12-15 01:35:55 -05:00
|
|
|
GetDigest(self, ctx);
|
2006-08-31 06:30:33 -04:00
|
|
|
EVP_DigestUpdate(ctx, RSTRING_PTR(data), RSTRING_LEN(data));
|
2003-07-23 12:12:24 -04:00
|
|
|
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2007-03-29 13:29:03 -04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2008-02-25 03:51:18 -05:00
|
|
|
* digest.finish -> aString
|
2007-03-29 13:29:03 -04:00
|
|
|
*
|
|
|
|
*/
|
2003-07-23 12:12:24 -04:00
|
|
|
static VALUE
|
2008-02-25 03:51:18 -05:00
|
|
|
ossl_digest_finish(int argc, VALUE *argv, VALUE self)
|
2003-07-23 12:12:24 -04:00
|
|
|
{
|
|
|
|
EVP_MD_CTX *ctx;
|
2008-02-25 03:51:18 -05:00
|
|
|
VALUE str;
|
2003-07-23 12:12:24 -04:00
|
|
|
|
2008-02-25 03:51:18 -05:00
|
|
|
rb_scan_args(argc, argv, "01", &str);
|
2003-07-23 12:12:24 -04:00
|
|
|
|
|
|
|
GetDigest(self, ctx);
|
|
|
|
|
2008-02-25 03:51:18 -05:00
|
|
|
if (NIL_P(str)) {
|
|
|
|
str = rb_str_new(NULL, EVP_MD_CTX_size(ctx));
|
|
|
|
} else {
|
|
|
|
StringValue(str);
|
|
|
|
rb_str_resize(str, EVP_MD_CTX_size(ctx));
|
|
|
|
}
|
2003-07-23 12:12:24 -04:00
|
|
|
|
2008-07-22 11:34:23 -04:00
|
|
|
EVP_DigestFinal_ex(ctx, (unsigned char *)RSTRING_PTR(str), NULL);
|
2003-07-23 12:12:24 -04:00
|
|
|
|
2008-02-25 03:51:18 -05:00
|
|
|
return str;
|
2003-07-23 12:12:24 -04:00
|
|
|
}
|
|
|
|
|
2007-03-29 13:29:03 -04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2008-02-25 03:51:18 -05:00
|
|
|
* digest.name -> string
|
2007-03-29 13:29:03 -04:00
|
|
|
*
|
2011-05-16 19:07:58 -04:00
|
|
|
* Returns the sn of this Digest instance.
|
|
|
|
*
|
|
|
|
* === Example
|
|
|
|
* digest = OpenSSL::Digest::SHA512.new
|
|
|
|
* puts digest.name # => SHA512
|
|
|
|
*
|
2007-03-29 13:29:03 -04:00
|
|
|
*/
|
2003-07-23 12:12:24 -04:00
|
|
|
static VALUE
|
2008-02-25 03:51:18 -05:00
|
|
|
ossl_digest_name(VALUE self)
|
2003-07-23 12:12:24 -04:00
|
|
|
{
|
|
|
|
EVP_MD_CTX *ctx;
|
|
|
|
|
2004-12-15 01:35:55 -05:00
|
|
|
GetDigest(self, ctx);
|
2003-07-23 12:12:24 -04:00
|
|
|
|
2008-02-25 03:51:18 -05:00
|
|
|
return rb_str_new2(EVP_MD_name(EVP_MD_CTX_md(ctx)));
|
2003-07-23 12:12:24 -04:00
|
|
|
}
|
|
|
|
|
2007-03-29 13:29:03 -04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2011-05-16 19:07:58 -04:00
|
|
|
* digest.digest_length -> integer
|
|
|
|
*
|
|
|
|
* Returns the output size of the digest, i.e. the length in bytes of the
|
|
|
|
* final message digest result.
|
|
|
|
*
|
|
|
|
* === Example
|
|
|
|
* digest = OpenSSL::Digest::SHA1.new
|
|
|
|
* puts digest.digest_length # => 20
|
2007-03-29 13:29:03 -04:00
|
|
|
*
|
|
|
|
*/
|
2003-07-23 12:12:24 -04:00
|
|
|
static VALUE
|
2008-02-25 03:51:18 -05:00
|
|
|
ossl_digest_size(VALUE self)
|
2003-07-23 12:12:24 -04:00
|
|
|
{
|
|
|
|
EVP_MD_CTX *ctx;
|
|
|
|
|
|
|
|
GetDigest(self, ctx);
|
|
|
|
|
2008-02-25 03:51:18 -05:00
|
|
|
return INT2NUM(EVP_MD_CTX_size(ctx));
|
2003-07-23 12:12:24 -04:00
|
|
|
}
|
|
|
|
|
2011-05-16 19:07:58 -04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* digest.block_length -> integer
|
|
|
|
*
|
|
|
|
* Returns the block length of the digest algorithm, i.e. the length in bytes
|
2011-06-12 22:37:35 -04:00
|
|
|
* of an individual block. Most modern algorithms partition a message to be
|
|
|
|
* digested into a sequence of fix-sized blocks that are processed
|
|
|
|
* consecutively.
|
2011-05-16 19:07:58 -04:00
|
|
|
*
|
|
|
|
* === Example
|
|
|
|
* digest = OpenSSL::Digest::SHA1.new
|
|
|
|
* puts digest.block_length # => 64
|
|
|
|
*/
|
2003-07-23 12:12:24 -04:00
|
|
|
static VALUE
|
2008-02-25 03:51:18 -05:00
|
|
|
ossl_digest_block_length(VALUE self)
|
2003-07-23 12:12:24 -04:00
|
|
|
{
|
|
|
|
EVP_MD_CTX *ctx;
|
|
|
|
|
|
|
|
GetDigest(self, ctx);
|
|
|
|
|
2008-02-25 03:51:18 -05:00
|
|
|
return INT2NUM(EVP_MD_CTX_block_size(ctx));
|
2003-07-23 12:12:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* INIT
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
Init_ossl_digest()
|
|
|
|
{
|
2008-02-25 03:51:18 -05:00
|
|
|
rb_require("digest");
|
|
|
|
|
2010-12-05 19:54:44 -05:00
|
|
|
#if 0
|
|
|
|
mOSSL = rb_define_module("OpenSSL"); /* let rdoc know about mOSSL */
|
2007-03-11 22:01:19 -04:00
|
|
|
#endif
|
|
|
|
|
2011-05-16 19:07:58 -04:00
|
|
|
/* Document-class: OpenSSL::Digest
|
|
|
|
*
|
|
|
|
* OpenSSL::Digest allows you to compute message digests (sometimes
|
|
|
|
* interchangeably called "hashes") of arbitrary data that are
|
|
|
|
* cryptographically secure, i.e. a Digest implements a secure one-way
|
|
|
|
* function.
|
|
|
|
*
|
|
|
|
* One-way functions offer some useful properties. E.g. given two
|
|
|
|
* distinct inputs the probability that both yield the same output
|
|
|
|
* is highly unlikely. Combined with the fact that every message digest
|
|
|
|
* algorithm has a fixed-length output of just a few bytes, digests are
|
|
|
|
* often used to create unique identifiers for arbitrary data. A common
|
|
|
|
* example is the creation of a unique id for binary documents that are
|
|
|
|
* stored in a database.
|
|
|
|
*
|
|
|
|
* Another useful characteristic of one-way functions (and thus the name)
|
|
|
|
* is that given a digest there is no indication about the original
|
|
|
|
* data that produced it, i.e. the only way to identify the original input
|
|
|
|
* is to "brute-force" through every possible combination of inputs.
|
|
|
|
*
|
|
|
|
* These characteristics make one-way functions also ideal companions
|
|
|
|
* for public key signature algorithms: instead of signing an entire
|
|
|
|
* document, first a hash of the document is produced with a considerably
|
|
|
|
* faster message digest algorithm and only the few bytes of its output
|
|
|
|
* need to be signed using the slower public key algorithm. To validate
|
|
|
|
* the integrity of a signed document, it suffices to re-compute the hash
|
|
|
|
* and verify that it is equal to that in the signature.
|
|
|
|
*
|
|
|
|
* Among the supported message digest algorithms are:
|
2011-05-21 18:55:48 -04:00
|
|
|
* * SHA, SHA1, SHA224, SHA256, SHA384 and SHA512
|
2011-05-16 19:07:58 -04:00
|
|
|
* * MD2, MD4, MDC2 and MD5
|
|
|
|
* * RIPEMD160
|
2011-05-21 18:55:48 -04:00
|
|
|
* * DSS, DSS1 (Pseudo algorithms to be used for DSA signatures. DSS is
|
|
|
|
* equal to SHA and DSS1 is equal to SHA1)
|
2011-05-16 19:07:58 -04:00
|
|
|
*
|
|
|
|
* For each of these algorithms, there is a sub-class of Digest that
|
|
|
|
* can be instantiated as simply as e.g.
|
|
|
|
*
|
|
|
|
* digest = OpenSSL::Digest::SHA1.new
|
|
|
|
*
|
|
|
|
* === Mapping between Digest class and sn/ln
|
|
|
|
*
|
2011-05-18 20:07:25 -04:00
|
|
|
* The sn (short names) and ln (long names) are defined in
|
|
|
|
* <openssl/object.h> and <openssl/obj_mac.h>. They are textual
|
2011-05-16 19:07:58 -04:00
|
|
|
* representations of ASN.1 OBJECT IDENTIFIERs. Each supported digest
|
|
|
|
* algorithm has an OBJECT IDENTIFIER associated to it and those again
|
|
|
|
* have short/long names assigned to them.
|
|
|
|
* E.g. the OBJECT IDENTIFIER for SHA-1 is 1.3.14.3.2.26 and its
|
|
|
|
* sn is "SHA1" and its ln is "sha1".
|
|
|
|
* ==== MD2
|
|
|
|
* * sn: MD2
|
|
|
|
* * ln: md2
|
|
|
|
* ==== MD4
|
|
|
|
* * sn: MD4
|
|
|
|
* * ln: md4
|
|
|
|
* ==== MD5
|
|
|
|
* * sn: MD5
|
|
|
|
* * ln: md5
|
|
|
|
* ==== SHA
|
|
|
|
* * sn: SHA
|
|
|
|
* * ln: SHA
|
|
|
|
* ==== SHA-1
|
|
|
|
* * sn: SHA1
|
|
|
|
* * ln: sha1
|
|
|
|
* ==== SHA-224
|
|
|
|
* * sn: SHA224
|
|
|
|
* * ln: sha224
|
|
|
|
* ==== SHA-256
|
|
|
|
* * sn: SHA256
|
|
|
|
* * ln: sha256
|
|
|
|
* ==== SHA-384
|
|
|
|
* * sn: SHA384
|
|
|
|
* * ln: sha384
|
|
|
|
* ==== SHA-512
|
|
|
|
* * sn: SHA512
|
|
|
|
* * ln: sha512
|
|
|
|
*
|
|
|
|
* "Breaking" a message digest algorithm means defying its one-way
|
|
|
|
* function characteristics, i.e. producing a collision or finding a way
|
|
|
|
* to get to the original data by means that are more efficient than
|
|
|
|
* brute-forcing etc. Most of the supported digest algorithms can be
|
|
|
|
* considered broken in this sense, even the very popular MD5 and SHA1
|
|
|
|
* algorithms. Should security be your highest concern, then you should
|
|
|
|
* probably rely on SHA224, SHA256, SHA384 or SHA512.
|
|
|
|
*
|
|
|
|
* === Hashing a file
|
|
|
|
*
|
|
|
|
* data = File.read('document')
|
|
|
|
* sha256 = OpenSSL::Digest::SHA256.new
|
|
|
|
* digest = sha256.digest(data)
|
|
|
|
*
|
|
|
|
* === Hashing several pieces of data at once
|
|
|
|
*
|
|
|
|
* data1 = File.read('file1')
|
|
|
|
* data2 = File.read('file2')
|
|
|
|
* data3 = File.read('file3')
|
|
|
|
* sha256 = OpenSSL::Digest::SHA256.new
|
|
|
|
* sha256 << data1
|
|
|
|
* sha256 << data2
|
|
|
|
* sha256 << data3
|
|
|
|
* digest = sha256.digest
|
2011-08-24 20:29:02 -04:00
|
|
|
*
|
|
|
|
* === Reuse a Digest instance
|
|
|
|
*
|
|
|
|
* data1 = File.read('file1')
|
|
|
|
* sha256 = OpenSSL::Digest::SHA256.new
|
|
|
|
* digest1 = sha256.digest(data1)
|
2011-11-04 03:19:23 -04:00
|
|
|
*
|
2011-08-24 20:29:02 -04:00
|
|
|
* data2 = File.read('file2')
|
|
|
|
* sha256.reset
|
|
|
|
* digest2 = sha256.digest(data2)
|
|
|
|
*
|
2011-05-16 19:07:58 -04:00
|
|
|
*/
|
2008-02-25 03:51:18 -05:00
|
|
|
cDigest = rb_define_class_under(mOSSL, "Digest", rb_path2class("Digest::Class"));
|
2011-05-16 19:07:58 -04:00
|
|
|
/* Document-class: OpenSSL::Digest::DigestError
|
|
|
|
*
|
|
|
|
* Generic Exception class that is raised if an error occurs during a
|
|
|
|
* Digest operation.
|
|
|
|
*/
|
2007-04-05 01:59:22 -04:00
|
|
|
eDigestError = rb_define_class_under(cDigest, "DigestError", eOSSLError);
|
2010-04-22 04:21:01 -04:00
|
|
|
|
2003-07-23 12:12:24 -04:00
|
|
|
rb_define_alloc_func(cDigest, ossl_digest_alloc);
|
2008-02-25 03:51:18 -05:00
|
|
|
|
2003-07-23 12:12:24 -04:00
|
|
|
rb_define_method(cDigest, "initialize", ossl_digest_initialize, -1);
|
|
|
|
rb_define_copy_func(cDigest, ossl_digest_copy);
|
2008-02-25 03:51:18 -05:00
|
|
|
rb_define_method(cDigest, "reset", ossl_digest_reset, 0);
|
2003-07-23 12:12:24 -04:00
|
|
|
rb_define_method(cDigest, "update", ossl_digest_update, 1);
|
|
|
|
rb_define_alias(cDigest, "<<", "update");
|
2008-02-25 03:51:18 -05:00
|
|
|
rb_define_private_method(cDigest, "finish", ossl_digest_finish, -1);
|
|
|
|
rb_define_method(cDigest, "digest_length", ossl_digest_size, 0);
|
|
|
|
rb_define_method(cDigest, "block_length", ossl_digest_block_length, 0);
|
|
|
|
|
2003-07-23 12:12:24 -04:00
|
|
|
rb_define_method(cDigest, "name", ossl_digest_name, 0);
|
|
|
|
}
|