password-scheme-cram-md5.c revision edf7428147facc11ddb43b9a874a99b96486d42d
/* Copyright (C) 2003 Timo Sirainen / Joshua Goodall */
#include "lib.h"
#include "hmac-md5.h"
#include "hex-binary.h"
#include "password-scheme.h"
const char *password_generate_cram_md5(const char *plaintext)
{
struct hmac_md5_context ctx;
unsigned char context_digest[32];
}