| 1 |
/* Mixmaster version 3 -- (C) 1999 Anonymizer Inc.
|
| 2 |
|
| 3 |
Mixmaster may be redistributed and modified under certain conditions.
|
| 4 |
This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF
|
| 5 |
ANY KIND, either express or implied. See the file COPYRIGHT for
|
| 6 |
details.
|
| 7 |
|
| 8 |
Process Mixmaster 3 remailer messages
|
| 9 |
$Id: rem3.c,v 1.1 2001/10/31 08:19:53 rabbi Exp $ */
|
| 10 |
|
| 11 |
|
| 12 |
#include "mix3.h"
|
| 13 |
|
| 14 |
int v3_magic(byte *b)
|
| 15 |
{
|
| 16 |
return (b[0] == MAGIC0 && b[1] == MAGIC1);
|
| 17 |
}
|
| 18 |
|
| 19 |
int mix3_decrypt(BUFFER *m)
|
| 20 |
{
|
| 21 |
NOT_IMPLEMENTED;
|
| 22 |
}
|