Last change
on this file since 4253 was
4253,
checked in by Sam Hocevar, 11 years ago
|
Fix copyright information and remove Id tag everywhere.
|
-
Property svn:keywords set to
Id
|
File size:
688 bytes
|
Line | |
---|
1 | /* |
---|
2 | * zzuf - general purpose fuzzer |
---|
3 | * Copyright (c) 2002-2010 Sam Hocevar <sam@hocevar.net> |
---|
4 | * All Rights Reserved |
---|
5 | * |
---|
6 | * This program is free software. It comes without any warranty, to |
---|
7 | * the extent permitted by applicable law. You can redistribute it |
---|
8 | * and/or modify it under the terms of the Do What The Fuck You Want |
---|
9 | * To Public License, Version 2, as published by Sam Hocevar. See |
---|
10 | * http://sam.zoy.org/wtfpl/COPYING for more details. |
---|
11 | */ |
---|
12 | |
---|
13 | /* |
---|
14 | * md5.h: MD5 computation |
---|
15 | */ |
---|
16 | |
---|
17 | struct md5; |
---|
18 | |
---|
19 | extern struct md5 *_zz_md5_init(void); |
---|
20 | extern void _zz_md5_add(struct md5 *ctx, uint8_t *buf, unsigned len); |
---|
21 | extern void _zz_md5_fini(uint8_t *digest, struct md5 *ctx); |
---|
22 | |
---|
Note: See
TracBrowser
for help on using the repository browser.