#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <openssl/des.h>
#include <openssl/mdc2.h>
#include <openssl/crypto.h>
Go to the source code of this file.
Value:(l =((DES_LONG)(*((c)++))) , \
l|=((DES_LONG)(*((c)++)))<< 8L, \
l|=((DES_LONG)(*((
c)++)))<<16L, \
l|=((DES_LONG)(*((c)++)))<<24L)
Definition at line 67 of file mdc2dgst.c.
Value:(*((
c)++)=(
unsigned char)(((l) )&0xff), \
*((
c)++)=(
unsigned char)(((l)>> 8L)&0xff), \
*((
c)++)=(
unsigned char)(((l)>>16L)&0xff), \
*((
c)++)=(
unsigned char)(((l)>>24L)&0xff))
Definition at line 73 of file mdc2dgst.c.
int MDC2_Final |
( |
unsigned char * |
md, |
|
|
MDC2_CTX * |
c |
|
) |
| |
int MDC2_Update |
( |
MDC2_CTX * |
c, |
|
|
const unsigned char * |
in, |
|
|
size_t |
len |
|
) |
| |