123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- /* <!-- copyright */
- /*
- * aria2 - a simple utility for downloading files faster
- *
- * Copyright (C) 2006 Tatsuhiro Tsujikawa
- *
- * 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; either version 2 of the License, or
- * (at your option) any later version.
- *
- * 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- */
- /* copyright --> */
- #ifndef _D_MESSAGE_DIGEST_H_
- #define _D_MESSAGE_DIGEST_H_
- #include "common.h"
- #ifdef ENABLE_SSL
- #define MAX_MD_LENGTH (16+20)
- #ifdef HAVE_LIBSSL
- #include <openssl/evp.h>
- #endif // HAVE_LIBSSL
- #ifdef HAVE_LIBGCRYPT
- #include <gcrypt.h>
- #endif // HAVE_LIBGCRYPT
- class MessageDigestContext {
- public:
- #ifdef HAVE_LIBSSL
- typedef const EVP_MD* DigestAlgo;
- # define DIGEST_ALGO_MD5 EVP_md5()
- # define DIGEST_ALGO_SHA1 EVP_sha1()
- #endif // HAVE_LIBSSL
- #ifdef HAVE_LIBGCRYPT
- typedef int DigestAlgo;
- # define DIGEST_ALGO_MD5 GCRY_MD_MD5
- # define DIGEST_ALGO_SHA1 GCRY_MD_SHA1
- #endif // HAVE_LIBGCRYPT
- private:
- #ifdef HAVE_LIBSSL
- EVP_MD_CTX ctx;
- #endif // HAVE_LIBSSL
- #ifdef HAVE_LIBGCRYPT
- gcry_md_hd_t ctx;
- #endif // HAVE_LIBGCRYPT
- DigestAlgo algo;
- public:
- MessageDigestContext():
- algo(DIGEST_ALGO_SHA1) {}
- MessageDigestContext(DigestAlgo algo):
- algo(algo) {}
- #ifdef HAVE_LIBSSL
- void digestInit() {
- EVP_MD_CTX_init(&ctx);
- digestReset();
- }
- void digestReset() {
- EVP_DigestInit_ex(&ctx, algo, 0);
- }
- void digestUpdate(const void* data, int length) {
- EVP_DigestUpdate(&ctx, data, length);
- }
- void digestFinal(unsigned char* md) {
- int len;
- EVP_DigestFinal_ex(&ctx, md, (unsigned int*)&len);
- }
- void digestFree() {
- EVP_MD_CTX_cleanup(&ctx);
- }
- int digestLength() const {
- return digestLength(algo);
- }
- static int digestLength(DigestAlgo algo) {
- return EVP_MD_size(algo);
- }
- #endif // HAVE_LIBSSL
- #ifdef HAVE_LIBGCRYPT
- void digestInit() {
- gcry_md_open(&ctx, algo, 0);
- }
- void digestReset() {
- gcry_md_reset(ctx);
- }
- void digestUpdate(const void* data, int length) {
- gcry_md_write(ctx, data, length);
- }
- void digestFinal(unsigned char* md) {
- gcry_md_final(ctx);
- memcpy(md, gcry_md_read(ctx, 0), gcry_md_get_algo_dlen(algo));
- }
- void digestFree() {
- gcry_md_close(ctx);
- }
- int digestLength() const {
- return digestLength(algo);
- }
- static int digestLength(DigestAlgo algo) {
- return gcry_md_get_algo_dlen(algo);
- }
- #endif // HAVE_LIBGCRYPT
- };
- #endif // ENABLE_SSL
- #endif // _D_MESSAGE_DIGEST_H_
|