view liboctave/oct-md5.cc @ 6375:5fced7a5eee8

[project @ 2007-03-01 17:23:39 by dbateman]
author dbateman
date Thu, 01 Mar 2007 17:23:40 +0000
parents
children 65e9cf5c7718
line wrap: on
line source

/*

Copyright (C) 2007 David Bateman

This file is part of Octave.

Octave 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, or (at your option) any
later version.

Octave 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 Octave; see the file COPYING.  If not, write to the Free
Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301, USA.

*/

#include <string>
#include <vector>

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#include "oct-md5.h"
#include "md5.h"
 
std::string
oct_md5 (const std::string str)
{
  md5_state_t state;

  OCTAVE_LOCAL_BUFFER (md5_byte_t, digest, 16);
  md5_init (&state);
  md5_append (&state, reinterpret_cast<const md5_byte_t *>(str.c_str()),
	      str.length());
  md5_finish (&state, digest);

  OCTAVE_LOCAL_BUFFER (char, tmp, 33);
  for (octave_idx_type i = 0; i < 16; i++)
    sprintf (&tmp[2*i], "%02x", digest[i]);
  tmp[32] = 0;
  return std::string (tmp);
}
	  
/*
;;; Local Variables: ***
;;; mode: C++ ***
;;; End: ***
*/