• This project
    • Loading...
  • Sign in

K'van / Tales of MajEyal · Files

GitLab

  • Go to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • Forks
  • Network
  • t-engine4
  • src
  • luamd5
  • md5.h
  • let's use our lua instead of trying to use a system lua. If this doesn't work on… ...
    5eb35001
    … all platforms we'll have to work on that.
    
    git-svn-id: http://svn.net-core.org/repos/t-engine4@2191 51575b47-30f0-44d4-a5cc-537603b46e54
    neil authored
    2010-12-27 16:54:03 +0000  
    Browse Files »
md5.h 312 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/**
*  $Id: md5.h,v 1.2 2006/03/03 15:04:49 tomas Exp $
*  Cryptographic module for Lua.
*  @author  Roberto Ierusalimschy
*/


#ifndef md5_h
#define md5_h

#include "../lua/lua.h"


#define HASHSIZE       16

void md5 (const char *message, long len, char *output);
int luaopen_md5_core (lua_State *L);


#endif