Compare commits
23 commits
df63e7e759
...
e0bc58a731
Author | SHA1 | Date | |
---|---|---|---|
e0bc58a731 | |||
d4ef916b40 | |||
ee94b144b5 | |||
186ea1f272 | |||
|
332b2a8b7c | ||
|
e965a9aca7 | ||
ace85e64a0 | |||
81bcf3ea87 | |||
|
c28c2d16d0 | ||
|
558f509281 | ||
874ded8084 | |||
cdaa1e0196 | |||
|
94ab593654 | ||
|
74746a91b4 | ||
|
e516595eb2 | ||
|
94a4e5332a | ||
|
8d171fe0c6 | ||
|
0ee32c8a84 | ||
|
fda4ee592d | ||
|
88ee99b37c | ||
|
8c997087e9 | ||
|
df9f09d9df | ||
|
b8670dfe62 |
21 changed files with 498 additions and 383 deletions
3
.vscode/settings.json
vendored
3
.vscode/settings.json
vendored
|
@ -13,7 +13,8 @@
|
||||||
"array": "c",
|
"array": "c",
|
||||||
"md2.h": "c",
|
"md2.h": "c",
|
||||||
"io.h": "c",
|
"io.h": "c",
|
||||||
"md2_0.h": "c"
|
"md2_0.h": "c",
|
||||||
|
"md2_common.h": "c"
|
||||||
},
|
},
|
||||||
"editor.formatOnSave": true,
|
"editor.formatOnSave": true,
|
||||||
"C_Cpp.default.includePath": [
|
"C_Cpp.default.includePath": [
|
||||||
|
|
2
Implementierung/.gitignore
vendored
2
Implementierung/.gitignore
vendored
|
@ -1,3 +1,3 @@
|
||||||
build
|
build
|
||||||
md2
|
md2
|
||||||
testfile*
|
t
|
|
@ -1,10 +1,12 @@
|
||||||
|
|
||||||
|
|
||||||
SRC = src/main.c src/helper.c src/io.c src/md2.c src/md2_impls/md2_common.c src/md2_impls/md2_0.c src/md2_impls/md2_2.c
|
SRC = src/main.c src/helper.c src/io.c src/md2.c src/md2_impls/md2_common.c src/md2_impls/md2_0.c src/md2_impls/md2_1.c src/md2_impls/md2_2.c src/md2_impls/md2_3.c src/md2_impls/md2_reference/md2_reference.c
|
||||||
OBJ = ${subst src,build,${SRC:.c=.o}}
|
OBJ = ${subst src,build,${SRC:.c=.o}}
|
||||||
CC = gcc
|
CC = gcc
|
||||||
CFLAGS = -Ilib -ggdb -std=c11 -g -Wall -Wextra -no-pie -O3
|
CFLAGS = -Ilib -ggdb -std=c11 -g -Wall -Wextra -no-pie -O3
|
||||||
LDFLAGS =
|
LDFLAGS = -pthread
|
||||||
|
TESTFILES = t/1 t/2 t/5 t/10 t/20 t/50 t/100 t/1000 t/2000 t/5000 t/10000
|
||||||
|
TESTFILES_SIZES = ${subst t/,,${TESTFILES}}
|
||||||
|
|
||||||
all: md2
|
all: md2
|
||||||
|
|
||||||
|
@ -18,15 +20,51 @@ help:
|
||||||
@echo - all: build everything
|
@echo - all: build everything
|
||||||
@echo - clean: clean distfiles
|
@echo - clean: clean distfiles
|
||||||
@echo - help: show this help
|
@echo - help: show this help
|
||||||
|
@echo - benchmarks: run benchmarks (only works on linux!)
|
||||||
build:
|
|
||||||
mkdir build
|
|
||||||
|
|
||||||
build/%.o: src/%.c
|
build/%.o: src/%.c
|
||||||
@mkdir -p build/md2_impls
|
@mkdir -p build/md2_impls/md2_reference
|
||||||
${CC} -c ${CFLAGS} -o $@ $<
|
${CC} -c ${CFLAGS} -o $@ $<
|
||||||
|
|
||||||
md2: ${OBJ}
|
md2: ${OBJ}
|
||||||
${CC} -o $@ $(OBJ) ${LDFLAGS}
|
${CC} -o $@ $(OBJ) ${LDFLAGS}
|
||||||
|
|
||||||
.PHONY: all clean help
|
t/%:
|
||||||
|
@echo
|
||||||
|
@echo "=== Generating ${subst t/,,$@}MB of random data... ==="
|
||||||
|
dd if=/dev/random of=$@ bs=1M count=${subst t/,,$@} status=progress
|
||||||
|
@echo "=== done ==="
|
||||||
|
@echo
|
||||||
|
|
||||||
|
benchmarks.csv: md2 ${TESTFILES}
|
||||||
|
@rm -f $@
|
||||||
|
@echo -n "Implementierung" > $@
|
||||||
|
@for t in $(TESTFILES_SIZES); do \
|
||||||
|
echo -n ";$$t" >> $@; \
|
||||||
|
done
|
||||||
|
@echo "" >> $@
|
||||||
|
|
||||||
|
@for i in 0 1 2 3 4; do \
|
||||||
|
echo ;\
|
||||||
|
echo "=== Testing implementation $$i ===";\
|
||||||
|
echo -n "Implementierung-$$i" >> $@; \
|
||||||
|
for t in $(TESTFILES_SIZES); do \
|
||||||
|
echo -n "- with $${t}MB ... "; \
|
||||||
|
if ! rr=$$(./md2 t/$${t} -B1 -V$${i}); then \
|
||||||
|
echo; \
|
||||||
|
echo "SKIPPED!"; \
|
||||||
|
echo -n ";0" >> $@; \
|
||||||
|
else \
|
||||||
|
r=$$(echo $$rr | xargs | sed -e 's/.*took \(.*\) seconds.*/\1/'); \
|
||||||
|
echo "$${r}s"; \
|
||||||
|
echo -n ";$${r}" >> $@; \
|
||||||
|
fi; \
|
||||||
|
done; \
|
||||||
|
echo "" >> $@; \
|
||||||
|
echo "=== done ===";\
|
||||||
|
echo;\
|
||||||
|
done
|
||||||
|
|
||||||
|
benchmarks: benchmarks.csv
|
||||||
|
|
||||||
|
.PHONY: all clean help benchmarks
|
6
Implementierung/benchmarks.csv
Normal file
6
Implementierung/benchmarks.csv
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
Implementierung;1;2;5;10;20;50;100
|
||||||
|
Implementierung-0;0.092604;0.172133;0.422083;0.845732;1.687540;4.232703;8.501036
|
||||||
|
Implementierung-1;0.084314;0.167799;0.431772;0.843568;1.708024;5.208127;10.147011
|
||||||
|
Implementierung-2;0.097700;0.203661;0.567091;1.062895;2.141933;5.440520;10.342529
|
||||||
|
Implementierung-3;0.099547;0.206932;0.546978;1.017148;2.077730;5.067994;9.962873
|
||||||
|
Implementierung-4;0.117680;0.239349;0.616783;1.200482;2.356915;5.856234;11.647842
|
|
|
@ -9,6 +9,7 @@
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
|
#include <sys/sysinfo.h>
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Open a file and load its stats
|
* @brief Open a file and load its stats
|
||||||
|
|
14
Implementierung/lib/md2_impls/md2_1.h
Normal file
14
Implementierung/lib/md2_impls/md2_1.h
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
#ifndef MD2_1_H
|
||||||
|
#define MD2_1_H
|
||||||
|
|
||||||
|
#include <stdbool.h>
|
||||||
|
#include <stdint.h>
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <string.h>
|
||||||
|
#include <sys/types.h>
|
||||||
|
|
||||||
|
void md2_hash_1(size_t len, const uint8_t buf[len], uint8_t out[16]);
|
||||||
|
void md2_checksum_1(size_t len, uint8_t* buf);
|
||||||
|
|
||||||
|
#endif // MD2_1_H
|
|
@ -18,6 +18,5 @@
|
||||||
* @param out
|
* @param out
|
||||||
*/
|
*/
|
||||||
void md2_hash_2(size_t len, const uint8_t buf[len], uint8_t out[16]);
|
void md2_hash_2(size_t len, const uint8_t buf[len], uint8_t out[16]);
|
||||||
void md2_checksum_2(size_t len, uint8_t* buf);
|
|
||||||
|
|
||||||
#endif // MD2_2_H
|
#endif // MD2_2_H
|
15
Implementierung/lib/md2_impls/md2_3.h
Normal file
15
Implementierung/lib/md2_impls/md2_3.h
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
#ifndef MD2_3_H
|
||||||
|
#define MD2_3_H
|
||||||
|
|
||||||
|
#include <pthread.h>
|
||||||
|
#include <stdbool.h>
|
||||||
|
#include <stdint.h>
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <string.h>
|
||||||
|
#include <sys/types.h>
|
||||||
|
#include <unistd.h>
|
||||||
|
|
||||||
|
void md2_hash_3(size_t len, const uint8_t buf[len], uint8_t out[16]);
|
||||||
|
|
||||||
|
#endif // MD2_3_H
|
|
@ -1,6 +1,7 @@
|
||||||
#ifndef MD2_COMMON_H
|
#ifndef MD2_COMMON_H
|
||||||
#define MD2_COMMON_H
|
#define MD2_COMMON_H
|
||||||
|
|
||||||
|
#include <errno.h>
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
54
Implementierung/lib/md2_impls/md2_reference/md2_reference.h
Normal file
54
Implementierung/lib/md2_impls/md2_reference/md2_reference.h
Normal file
|
@ -0,0 +1,54 @@
|
||||||
|
#ifndef MD2_REF_H
|
||||||
|
#define MD2_REF_H
|
||||||
|
|
||||||
|
/***********************************************************
|
||||||
|
* WICHTIG:
|
||||||
|
* Diese Implementierung wurde nicht von uns geschrieben,
|
||||||
|
* sondern zu vergleichszwechen von der Referenz übernommen.
|
||||||
|
* Quelle: https://datatracker.ietf.org/doc/html/rfc1319
|
||||||
|
**********************************************************/
|
||||||
|
|
||||||
|
#ifndef PROTOTYPES
|
||||||
|
#define PROTOTYPES 0
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* POINTER defines a generic pointer type */
|
||||||
|
typedef unsigned char *POINTER;
|
||||||
|
|
||||||
|
/* UINT2 defines a two byte word */
|
||||||
|
typedef unsigned short int UINT2;
|
||||||
|
|
||||||
|
/* UINT4 defines a four byte word */
|
||||||
|
typedef unsigned long int UINT4;
|
||||||
|
|
||||||
|
/* PROTO_LIST is defined depending on how PROTOTYPES is defined above.
|
||||||
|
If using PROTOTYPES, then PROTO_LIST returns the list, otherwise it
|
||||||
|
returns an empty list.
|
||||||
|
*/
|
||||||
|
#if PROTOTYPES
|
||||||
|
#define PROTO_LIST(list) list
|
||||||
|
#else
|
||||||
|
#define PROTO_LIST(list) ()
|
||||||
|
#endif
|
||||||
|
|
||||||
|
typedef struct {
|
||||||
|
unsigned char state[16]; /* state */
|
||||||
|
unsigned char checksum[16]; /* checksum */
|
||||||
|
unsigned int count; /* number of bytes, modulo 16 */
|
||||||
|
unsigned char buffer[16]; /* input buffer */
|
||||||
|
} MD2_CTX;
|
||||||
|
|
||||||
|
void MD2Init PROTO_LIST((MD2_CTX *));
|
||||||
|
void MD2Update PROTO_LIST((MD2_CTX *, unsigned char *, unsigned int));
|
||||||
|
void MD2Final PROTO_LIST((unsigned char[16], MD2_CTX *));
|
||||||
|
|
||||||
|
#include <stdbool.h>
|
||||||
|
#include <stdint.h>
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <string.h>
|
||||||
|
#include <sys/types.h>
|
||||||
|
|
||||||
|
void md2_hash_ref(size_t len, const uint8_t buf[len], uint8_t out[16]);
|
||||||
|
|
||||||
|
#endif // MD2_REF_H
|
|
@ -1,22 +0,0 @@
|
||||||
#ifndef PROTOTYPES
|
|
||||||
#define PROTOTYPES 0
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* POINTER defines a generic pointer type */
|
|
||||||
typedef unsigned char *POINTER;
|
|
||||||
|
|
||||||
/* UINT2 defines a two byte word */
|
|
||||||
typedef unsigned short int UINT2;
|
|
||||||
|
|
||||||
/* UINT4 defines a four byte word */
|
|
||||||
typedef unsigned long int UINT4;
|
|
||||||
|
|
||||||
/* PROTO_LIST is defined depending on how PROTOTYPES is defined above.
|
|
||||||
If using PROTOTYPES, then PROTO_LIST returns the list, otherwise it
|
|
||||||
returns an empty list.
|
|
||||||
*/
|
|
||||||
#if PROTOTYPES
|
|
||||||
#define PROTO_LIST(list) list
|
|
||||||
#else
|
|
||||||
#define PROTO_LIST(list) ()
|
|
||||||
#endif
|
|
|
@ -1,36 +0,0 @@
|
||||||
typedef struct {
|
|
||||||
unsigned char state[16]; /* state */
|
|
||||||
unsigned char checksum[16]; /* checksum */
|
|
||||||
unsigned int count; /* number of bytes, modulo 16 */
|
|
||||||
unsigned char buffer[16]; /* input buffer */
|
|
||||||
} MD2_CTX;
|
|
||||||
|
|
||||||
void MD2Init PROTO_LIST ((MD2_CTX *));
|
|
||||||
void MD2Update PROTO_LIST
|
|
||||||
((MD2_CTX *, unsigned char *, unsigned int));
|
|
||||||
void MD2Final PROTO_LIST ((unsigned char [16], MD2_CTX *));
|
|
||||||
|
|
||||||
|
|
||||||
#ifndef MD2_REF_H
|
|
||||||
#define MD2_REF_H
|
|
||||||
|
|
||||||
#include <stdbool.h>
|
|
||||||
#include <stdint.h>
|
|
||||||
#include <stdio.h>
|
|
||||||
#include <stdlib.h>
|
|
||||||
#include <string.h>
|
|
||||||
#include <sys/types.h>
|
|
||||||
|
|
||||||
#include "../io.h"
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @brief This implementation is the reference implementation
|
|
||||||
*
|
|
||||||
* @param _ unused
|
|
||||||
* @param filename name of the file to load
|
|
||||||
* @param out
|
|
||||||
*/
|
|
||||||
void md2_hash_ref(size_t len, const uint8_t buf[len], uint8_t out[16]);
|
|
||||||
void md2_checksum_ref(size_t len, uint8_t* buf);
|
|
||||||
|
|
||||||
#endif // MD2_REF_H
|
|
|
@ -33,7 +33,18 @@ uint8_t* read_file(const char* path, size_t* size) {
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
struct sysinfo info;
|
||||||
|
int r = sysinfo(&info);
|
||||||
|
if (r != 0 || info.freeram < (unsigned long)statOfFile.st_size * 2) {
|
||||||
|
errno = ENOMEM;
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
uint8_t* data = malloc(statOfFile.st_size);
|
uint8_t* data = malloc(statOfFile.st_size);
|
||||||
|
if (data == NULL) {
|
||||||
|
fclose(f);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
size_t bytesRead =
|
size_t bytesRead =
|
||||||
fread(data, statOfFile.st_blksize, statOfFile.st_blocks, f);
|
fread(data, statOfFile.st_blksize, statOfFile.st_blocks, f);
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
|
#include <sys/resource.h>
|
||||||
|
|
||||||
#include "../lib/helper.h"
|
#include "../lib/helper.h"
|
||||||
#include "../lib/io.h"
|
#include "../lib/io.h"
|
||||||
#include "../lib/md2.h"
|
#include "../lib/md2.h"
|
||||||
|
|
||||||
// Returns true when val is approx. equal to exp.
|
|
||||||
static bool runTest(struct configuration* c, const char* message,
|
static bool runTest(struct configuration* c, const char* message,
|
||||||
const char* expectedHash) {
|
const char* expectedHash) {
|
||||||
uint8_t out[16];
|
uint8_t out[16];
|
||||||
|
@ -139,8 +139,10 @@ int main(int argc, char** argv) {
|
||||||
char hash[32];
|
char hash[32];
|
||||||
if (!calculate_hash(c, hash)) {
|
if (!calculate_hash(c, hash)) {
|
||||||
if (errno != 0) {
|
if (errno != 0) {
|
||||||
fprintf(stderr, "\n\033[0;31mAn error occured: %s\033[0m\n",
|
fprintf(stderr, "\n\033[1;31mAn error occured: %s\033[0m\n",
|
||||||
strerror(errno));
|
strerror(errno));
|
||||||
|
if (errno == ENOMEM)
|
||||||
|
fprintf(stderr, "\033[1;36mPlease try to use -V2!\033[0m\n");
|
||||||
}
|
}
|
||||||
return EXIT_FAILURE;
|
return EXIT_FAILURE;
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,7 +2,10 @@
|
||||||
|
|
||||||
// include all implementations
|
// include all implementations
|
||||||
#include "../lib/md2_impls/md2_0.h"
|
#include "../lib/md2_impls/md2_0.h"
|
||||||
|
#include "../lib/md2_impls/md2_1.h"
|
||||||
#include "../lib/md2_impls/md2_2.h"
|
#include "../lib/md2_impls/md2_2.h"
|
||||||
|
#include "../lib/md2_impls/md2_3.h"
|
||||||
|
#include "../lib/md2_impls/md2_reference/md2_reference.h"
|
||||||
|
|
||||||
md2_hash_func md2_hash;
|
md2_hash_func md2_hash;
|
||||||
md2_checksum_func md2_checksum;
|
md2_checksum_func md2_checksum;
|
||||||
|
@ -23,9 +26,24 @@ bool md2_choose_implementation(int i) {
|
||||||
md2_checksum = md2_checksum_0;
|
md2_checksum = md2_checksum_0;
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
|
case 1:
|
||||||
|
md2_hash = md2_hash_1;
|
||||||
|
md2_checksum = md2_checksum_1;
|
||||||
|
return true;
|
||||||
|
|
||||||
case 2:
|
case 2:
|
||||||
md2_hash = md2_hash_2;
|
md2_hash = md2_hash_2;
|
||||||
md2_checksum = md2_checksum_2;
|
md2_checksum = NULL;
|
||||||
|
return true;
|
||||||
|
|
||||||
|
case 3:
|
||||||
|
md2_hash = md2_hash_3;
|
||||||
|
md2_checksum = NULL;
|
||||||
|
return true;
|
||||||
|
|
||||||
|
case 4:
|
||||||
|
md2_hash = md2_hash_ref;
|
||||||
|
md2_checksum = NULL;
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
|
|
|
@ -25,7 +25,9 @@ void md2_hash_0(size_t len, const uint8_t buf[len], uint8_t out[16]) {
|
||||||
|
|
||||||
// +16 for the checksum
|
// +16 for the checksum
|
||||||
uint8_t* newBuf = calloc(len + 16, sizeof(uint8_t));
|
uint8_t* newBuf = calloc(len + 16, sizeof(uint8_t));
|
||||||
// TODO: null check
|
if (newBuf == NULL) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
memcpy(newBuf, buf, len - paddingNeeded);
|
memcpy(newBuf, buf, len - paddingNeeded);
|
||||||
|
|
||||||
// printBuf(len + 16, newBuf);
|
// printBuf(len + 16, newBuf);
|
||||||
|
@ -45,7 +47,10 @@ void md2_hash_0(size_t len, const uint8_t buf[len], uint8_t out[16]) {
|
||||||
|
|
||||||
// === step 3 ===
|
// === step 3 ===
|
||||||
uint8_t* messageDigestBuf = calloc(48, sizeof(uint8_t));
|
uint8_t* messageDigestBuf = calloc(48, sizeof(uint8_t));
|
||||||
// TODO: add null check
|
if (messageDigestBuf == NULL) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// === step 4 ===
|
// === step 4 ===
|
||||||
// <= because we need to hash the last block too
|
// <= because we need to hash the last block too
|
||||||
|
|
102
Implementierung/src/md2_impls/md2_1.c
Normal file
102
Implementierung/src/md2_impls/md2_1.c
Normal file
|
@ -0,0 +1,102 @@
|
||||||
|
#include "../../lib/md2_impls/md2_1.h"
|
||||||
|
|
||||||
|
#include "../../lib/md2_impls/md2_common.h"
|
||||||
|
#include <immintrin.h>
|
||||||
|
|
||||||
|
|
||||||
|
void md2_checksum_1(size_t len, uint8_t *buf)
|
||||||
|
{
|
||||||
|
uint8_t l = 0;
|
||||||
|
|
||||||
|
for (size_t i = 0; i < len / 16; i++)
|
||||||
|
{
|
||||||
|
for (int j = 0; j < 16; j++)
|
||||||
|
{
|
||||||
|
u_int8_t c = buf[i * 16 + j];
|
||||||
|
// reference is wrong. It says: Set C[j] to S[c xor L]. But it should be:
|
||||||
|
buf[len + j] ^= MD2_PI_SUBST[c ^ l];
|
||||||
|
l = buf[len + j];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static uint8_t PADDING[17][16] = {
|
||||||
|
{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
|
||||||
|
{1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
|
||||||
|
{2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
|
||||||
|
{3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
|
||||||
|
{4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
|
||||||
|
{5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
|
||||||
|
{6, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
|
||||||
|
{7, 7, 7, 7, 7, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0},
|
||||||
|
{8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0},
|
||||||
|
{9, 9, 9, 9, 9, 9, 9, 9, 9, 0, 0, 0, 0, 0, 0, 0},
|
||||||
|
{10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 0, 0, 0, 0, 0, 0},
|
||||||
|
{11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 0, 0, 0, 0, 0},
|
||||||
|
{12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 0, 0, 0, 0},
|
||||||
|
{13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 0, 0, 0},
|
||||||
|
{14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 0, 0},
|
||||||
|
{15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0},
|
||||||
|
{16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16}};
|
||||||
|
|
||||||
|
void md2_hash_1(size_t len, const uint8_t buf[len], uint8_t out[16])
|
||||||
|
{
|
||||||
|
// === step 1 ===
|
||||||
|
int paddingNeeded = 16 - (len & 15);
|
||||||
|
len += paddingNeeded;
|
||||||
|
|
||||||
|
uint8_t* newBuf = aligned_alloc(16, sizeof(uint8_t)*(len + 16));
|
||||||
|
if (newBuf == NULL) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
for(size_t i = 0; i < 16; i++) {
|
||||||
|
newBuf[len + i] = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
memcpy(newBuf, buf, len - paddingNeeded);
|
||||||
|
|
||||||
|
memcpy(newBuf + len - paddingNeeded, PADDING + paddingNeeded, paddingNeeded);
|
||||||
|
|
||||||
|
// === step 2 ===
|
||||||
|
md2_checksum_1(len, newBuf);
|
||||||
|
|
||||||
|
// === step 3 ===
|
||||||
|
uint8_t *messageDigestBuf = aligned_alloc(16, sizeof(uint8_t) * 48);
|
||||||
|
if (messageDigestBuf == NULL) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
for (size_t i = 0; i < 48; i++) {
|
||||||
|
messageDigestBuf[i] = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
// === step 4 ===
|
||||||
|
__m128i vx;
|
||||||
|
__m128i vy;
|
||||||
|
for (size_t i = 0; i <= (len + 16) / 16 - 1; i++)
|
||||||
|
{
|
||||||
|
vx = _mm_load_si128((__m128i*) (newBuf + i * 16));
|
||||||
|
_mm_store_si128((__m128i*) (messageDigestBuf + 16), vx);
|
||||||
|
vy = _mm_load_si128((__m128i*) (messageDigestBuf));
|
||||||
|
vy = _mm_xor_si128(vy, vx);
|
||||||
|
_mm_store_si128((__m128i*) (messageDigestBuf + 32), vy);
|
||||||
|
|
||||||
|
|
||||||
|
u_int8_t t = 0;
|
||||||
|
|
||||||
|
for (int j = 0; j < 18; j++)
|
||||||
|
{
|
||||||
|
for (int k = 0; k < 48; k++)
|
||||||
|
{
|
||||||
|
t = messageDigestBuf[k] = messageDigestBuf[k] ^ MD2_PI_SUBST[t];
|
||||||
|
}
|
||||||
|
t = (t + j) & 255;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
memcpy(out, messageDigestBuf, 16);
|
||||||
|
|
||||||
|
free(messageDigestBuf);
|
||||||
|
free(newBuf);
|
||||||
|
}
|
|
@ -38,9 +38,6 @@ void apply_padding(size_t len, uint8_t buf[16]) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// unused!
|
|
||||||
void md2_checksum_2(size_t, uint8_t*) {}
|
|
||||||
|
|
||||||
void md2_hash_2(size_t len, const uint8_t buf[len], uint8_t out[16]) {
|
void md2_hash_2(size_t len, const uint8_t buf[len], uint8_t out[16]) {
|
||||||
FILE* file;
|
FILE* file;
|
||||||
struct stat file_stat;
|
struct stat file_stat;
|
||||||
|
@ -50,20 +47,29 @@ void md2_hash_2(size_t len, const uint8_t buf[len], uint8_t out[16]) {
|
||||||
|
|
||||||
// === step 3 ===
|
// === step 3 ===
|
||||||
uint8_t* messageDigestBuf = calloc(48, sizeof(uint8_t));
|
uint8_t* messageDigestBuf = calloc(48, sizeof(uint8_t));
|
||||||
|
if (messageDigestBuf == NULL) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
// === step 4 ===
|
// === step 4 ===
|
||||||
uint8_t l = 0;
|
uint8_t l = 0;
|
||||||
uint8_t* checksum = calloc(16, sizeof(uint8_t));
|
uint8_t* checksum = calloc(16, sizeof(uint8_t));
|
||||||
|
if (checksum == NULL) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
uint8_t* data = malloc(16);
|
uint8_t* data = malloc(16);
|
||||||
|
if (data == NULL) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
size_t bytes_left_to_read = file_stat.st_size;
|
size_t bytes_left_to_read = file_stat.st_size;
|
||||||
size_t bytes_left_to_process = 0;
|
size_t bytes_left_to_process = 0;
|
||||||
|
|
||||||
while (bytes_left_to_read != 0) {
|
while (bytes_left_to_read != 0) {
|
||||||
bytes_left_to_process = bytes_left_to_read >= 16 ? 16 : bytes_left_to_read;
|
bytes_left_to_process = bytes_left_to_read >= 16 ? 16 : bytes_left_to_read;
|
||||||
|
|
||||||
fread(data, 1, bytes_left_to_process, file);
|
size_t size = fread(data, 1, bytes_left_to_process, file);
|
||||||
if (ferror(file) || feof(file)) {
|
if (size == 0 || ferror(file) || feof(file)) {
|
||||||
if (errno == 0) errno = EIO;
|
if (errno == 0) errno = EIO;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
114
Implementierung/src/md2_impls/md2_3.c
Normal file
114
Implementierung/src/md2_impls/md2_3.c
Normal file
|
@ -0,0 +1,114 @@
|
||||||
|
#include "../../lib/md2_impls/md2_3.h"
|
||||||
|
|
||||||
|
#include "../../lib/md2_impls/md2_common.h"
|
||||||
|
|
||||||
|
struct thread_args {
|
||||||
|
size_t len;
|
||||||
|
const uint8_t* buf;
|
||||||
|
};
|
||||||
|
|
||||||
|
void process_nothread_hash(size_t len, const uint8_t buf[len],
|
||||||
|
uint8_t messageDigestBuf[48]) {
|
||||||
|
for (size_t i = 0; i < (len + 16) / 16 - 1; i++) {
|
||||||
|
for (int j = 0; j < 16; j++) {
|
||||||
|
messageDigestBuf[16 + j] = buf[i * 16 + j];
|
||||||
|
messageDigestBuf[32 + j] =
|
||||||
|
(messageDigestBuf[16 + j] ^ messageDigestBuf[j]);
|
||||||
|
}
|
||||||
|
|
||||||
|
u_int8_t t = 0;
|
||||||
|
|
||||||
|
for (int j = 0; j < 18; j++) {
|
||||||
|
for (int k = 0; k < 48; k++) {
|
||||||
|
t = messageDigestBuf[k] = messageDigestBuf[k] ^ MD2_PI_SUBST[t];
|
||||||
|
}
|
||||||
|
t = (t + j) % 256;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void* process_hash(void* threadArgs) {
|
||||||
|
struct thread_args* args = (struct thread_args*)threadArgs;
|
||||||
|
|
||||||
|
uint8_t* messageDigestBuf = calloc(48, sizeof(uint8_t));
|
||||||
|
if (messageDigestBuf == NULL) {
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
process_nothread_hash(args->len, args->buf, messageDigestBuf);
|
||||||
|
pthread_exit(messageDigestBuf);
|
||||||
|
}
|
||||||
|
|
||||||
|
void* process_checksum(void* threasdArgs) {
|
||||||
|
struct thread_args* args = (struct thread_args*)threasdArgs;
|
||||||
|
|
||||||
|
uint8_t* checksum = calloc(16, sizeof(uint8_t));
|
||||||
|
if (checksum == NULL) {
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
uint8_t l = 0;
|
||||||
|
|
||||||
|
for (size_t i = 0; i < args->len / 16; i++) {
|
||||||
|
for (int j = 0; j < 16; j++) {
|
||||||
|
u_int8_t c = args->buf[i * 16 + j];
|
||||||
|
// reference is wrong. It says: Set C[j] to S[c xor L]. But it should be:
|
||||||
|
l = checksum[j] ^= MD2_PI_SUBST[c ^ l];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
pthread_exit(checksum);
|
||||||
|
}
|
||||||
|
|
||||||
|
void md2_hash_3(size_t len, const uint8_t buf[len], uint8_t out[16]) {
|
||||||
|
int paddingNeeded = 16 - (len % 16);
|
||||||
|
uint8_t originalPadding = paddingNeeded;
|
||||||
|
len += paddingNeeded;
|
||||||
|
|
||||||
|
uint8_t* newBuf = calloc(len + 16, sizeof(uint8_t));
|
||||||
|
if (newBuf == NULL) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
memcpy(newBuf, buf, len - paddingNeeded);
|
||||||
|
|
||||||
|
while (paddingNeeded > 0) {
|
||||||
|
newBuf[len - paddingNeeded] = originalPadding;
|
||||||
|
paddingNeeded--;
|
||||||
|
}
|
||||||
|
|
||||||
|
pthread_t thread_1, thread_2;
|
||||||
|
|
||||||
|
struct thread_args thread_args = {len, newBuf};
|
||||||
|
|
||||||
|
if (pthread_create(&thread_1, NULL, process_hash, (void*)&thread_args) != 0) {
|
||||||
|
printf("Error creating thread 1\n");
|
||||||
|
if (errno == 0) errno = EAGAIN;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (pthread_create(&thread_2, NULL, process_checksum, (void*)&thread_args) !=
|
||||||
|
0) {
|
||||||
|
printf("Error creating thread 2\n");
|
||||||
|
if (errno == 0) errno = EAGAIN;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
u_int8_t* messageDigestBuf;
|
||||||
|
u_int8_t* checksum;
|
||||||
|
|
||||||
|
if (pthread_join(thread_1, (void**)&messageDigestBuf) != 0) {
|
||||||
|
printf("Error joining thread 1\n");
|
||||||
|
if (errno == 0) errno = EINVAL;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (pthread_join(thread_2, (void**)&checksum) != 0) {
|
||||||
|
printf("Error joining thread 2\n");
|
||||||
|
if (errno == 0) errno = EINVAL;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
process_nothread_hash(16, checksum, messageDigestBuf);
|
||||||
|
memcpy(out, messageDigestBuf, 16);
|
||||||
|
|
||||||
|
free(messageDigestBuf);
|
||||||
|
free(checksum);
|
||||||
|
}
|
|
@ -1,6 +1,13 @@
|
||||||
/* MD2C.C - RSA Data Security, Inc., MD2 message-digest algorithm
|
/* MD2C.C - RSA Data Security, Inc., MD2 message-digest algorithm
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/***********************************************************
|
||||||
|
* WICHTIG:
|
||||||
|
* Diese Implementierung wurde nicht von uns geschrieben,
|
||||||
|
* sondern zu vergleichszwechen von der Referenz übernommen.
|
||||||
|
* Quelle: https://datatracker.ietf.org/doc/html/rfc1319
|
||||||
|
**********************************************************/
|
||||||
|
|
||||||
/* Copyright (C) 1990-2, RSA Data Security, Inc. Created 1990. All
|
/* Copyright (C) 1990-2, RSA Data Security, Inc. Created 1990. All
|
||||||
rights reserved.
|
rights reserved.
|
||||||
|
|
||||||
|
@ -19,37 +26,35 @@
|
||||||
documentation and/or software.
|
documentation and/or software.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "global.h"
|
#include "../../../lib/md2_impls/md2_reference/md2_reference.h"
|
||||||
#include "md2_reference.h"
|
|
||||||
|
|
||||||
static void MD2Transform PROTO_LIST
|
static void MD2Transform PROTO_LIST((unsigned char[16], unsigned char[16],
|
||||||
((unsigned char [16], unsigned char [16], unsigned char [16]));
|
unsigned char[16]));
|
||||||
static void MD2_memcpy PROTO_LIST ((POINTER, POINTER, unsigned int));
|
static void MD2_memcpy PROTO_LIST((POINTER, POINTER, unsigned int));
|
||||||
static void MD2_memset PROTO_LIST ((POINTER, int, unsigned int));
|
static void MD2_memset PROTO_LIST((POINTER, int, unsigned int));
|
||||||
|
|
||||||
/* Permutation of 0..255 constructed from the digits of pi. It gives a
|
/* Permutation of 0..255 constructed from the digits of pi. It gives a
|
||||||
"random" nonlinear byte substitution operation.
|
"random" nonlinear byte substitution operation.
|
||||||
*/
|
*/
|
||||||
static unsigned char PI_SUBST[256] = {
|
static unsigned char PI_SUBST[256] = {
|
||||||
41, 46, 67, 201, 162, 216, 124, 1, 61, 54, 84, 161, 236, 240, 6,
|
41, 46, 67, 201, 162, 216, 124, 1, 61, 54, 84, 161, 236, 240, 6,
|
||||||
19, 98, 167, 5, 243, 192, 199, 115, 140, 152, 147, 43, 217, 188,
|
19, 98, 167, 5, 243, 192, 199, 115, 140, 152, 147, 43, 217, 188, 76,
|
||||||
76, 130, 202, 30, 155, 87, 60, 253, 212, 224, 22, 103, 66, 111, 24,
|
130, 202, 30, 155, 87, 60, 253, 212, 224, 22, 103, 66, 111, 24, 138,
|
||||||
138, 23, 229, 18, 190, 78, 196, 214, 218, 158, 222, 73, 160, 251,
|
23, 229, 18, 190, 78, 196, 214, 218, 158, 222, 73, 160, 251, 245, 142,
|
||||||
245, 142, 187, 47, 238, 122, 169, 104, 121, 145, 21, 178, 7, 63,
|
187, 47, 238, 122, 169, 104, 121, 145, 21, 178, 7, 63, 148, 194, 16,
|
||||||
148, 194, 16, 137, 11, 34, 95, 33, 128, 127, 93, 154, 90, 144, 50,
|
137, 11, 34, 95, 33, 128, 127, 93, 154, 90, 144, 50, 39, 53, 62,
|
||||||
39, 53, 62, 204, 231, 191, 247, 151, 3, 255, 25, 48, 179, 72, 165,
|
204, 231, 191, 247, 151, 3, 255, 25, 48, 179, 72, 165, 181, 209, 215,
|
||||||
181, 209, 215, 94, 146, 42, 172, 86, 170, 198, 79, 184, 56, 210,
|
94, 146, 42, 172, 86, 170, 198, 79, 184, 56, 210, 150, 164, 125, 182,
|
||||||
150, 164, 125, 182, 118, 252, 107, 226, 156, 116, 4, 241, 69, 157,
|
118, 252, 107, 226, 156, 116, 4, 241, 69, 157, 112, 89, 100, 113, 135,
|
||||||
112, 89, 100, 113, 135, 32, 134, 91, 207, 101, 230, 45, 168, 2, 27,
|
32, 134, 91, 207, 101, 230, 45, 168, 2, 27, 96, 37, 173, 174, 176,
|
||||||
96, 37, 173, 174, 176, 185, 246, 28, 70, 97, 105, 52, 64, 126, 15,
|
185, 246, 28, 70, 97, 105, 52, 64, 126, 15, 85, 71, 163, 35, 221,
|
||||||
85, 71, 163, 35, 221, 81, 175, 58, 195, 92, 249, 206, 186, 197,
|
81, 175, 58, 195, 92, 249, 206, 186, 197, 234, 38, 44, 83, 13, 110,
|
||||||
234, 38, 44, 83, 13, 110, 133, 40, 132, 9, 211, 223, 205, 244, 65,
|
133, 40, 132, 9, 211, 223, 205, 244, 65, 129, 77, 82, 106, 220, 55,
|
||||||
129, 77, 82, 106, 220, 55, 200, 108, 193, 171, 250, 36, 225, 123,
|
200, 108, 193, 171, 250, 36, 225, 123, 8, 12, 189, 177, 74, 120, 136,
|
||||||
8, 12, 189, 177, 74, 120, 136, 149, 139, 227, 99, 232, 109, 233,
|
149, 139, 227, 99, 232, 109, 233, 203, 213, 254, 59, 0, 29, 57, 242,
|
||||||
203, 213, 254, 59, 0, 29, 57, 242, 239, 183, 14, 102, 88, 208, 228,
|
239, 183, 14, 102, 88, 208, 228, 166, 119, 114, 248, 235, 117, 75, 10,
|
||||||
166, 119, 114, 248, 235, 117, 75, 10, 49, 68, 80, 180, 143, 237,
|
49, 68, 80, 180, 143, 237, 31, 26, 219, 153, 141, 51, 159, 17, 131,
|
||||||
31, 26, 219, 153, 141, 51, 159, 17, 131, 20
|
20};
|
||||||
};
|
|
||||||
|
|
||||||
static unsigned char *PADDING[] = {
|
static unsigned char *PADDING[] = {
|
||||||
(unsigned char *)"",
|
(unsigned char *)"",
|
||||||
|
@ -65,33 +70,35 @@ static unsigned char *PADDING[] = {
|
||||||
(unsigned char *)"\012\012\012\012\012\012\012\012\012\012",
|
(unsigned char *)"\012\012\012\012\012\012\012\012\012\012",
|
||||||
(unsigned char *)"\013\013\013\013\013\013\013\013\013\013\013",
|
(unsigned char *)"\013\013\013\013\013\013\013\013\013\013\013",
|
||||||
(unsigned char *)"\014\014\014\014\014\014\014\014\014\014\014\014",
|
(unsigned char *)"\014\014\014\014\014\014\014\014\014\014\014\014",
|
||||||
(unsigned char *)
|
(unsigned char *)"\015\015\015\015\015\015\015\015\015\015\015\015\015",
|
||||||
"\015\015\015\015\015\015\015\015\015\015\015\015\015",
|
(unsigned char *)"\016\016\016\016\016\016\016\016\016\016\016\016\016\016",
|
||||||
(unsigned char *)
|
(unsigned char
|
||||||
"\016\016\016\016\016\016\016\016\016\016\016\016\016\016",
|
*)"\017\017\017\017\017\017\017\017\017\017\017\017\017\017\017",
|
||||||
(unsigned char *)
|
(unsigned char
|
||||||
"\017\017\017\017\017\017\017\017\017\017\017\017\017\017\017",
|
*)"\020\020\020\020\020\020\020\020\020\020\020\020\020\020\020\020"};
|
||||||
(unsigned char *)
|
|
||||||
"\020\020\020\020\020\020\020\020\020\020\020\020\020\020\020\020"
|
void md2_hash_ref(size_t len, const uint8_t buf[len], uint8_t out[16]) {
|
||||||
};
|
MD2_CTX context;
|
||||||
|
|
||||||
|
MD2Init(&context);
|
||||||
|
MD2Update(&context, buf, len);
|
||||||
|
MD2Final(out, &context);
|
||||||
|
}
|
||||||
|
|
||||||
/* MD2 initialization. Begins an MD2 operation, writing a new context.
|
/* MD2 initialization. Begins an MD2 operation, writing a new context.
|
||||||
*/
|
*/
|
||||||
void MD2Init (context)
|
void MD2Init(context) MD2_CTX *context; /* context */
|
||||||
MD2_CTX *context; /* context */
|
|
||||||
{
|
{
|
||||||
context->count = 0;
|
context->count = 0;
|
||||||
MD2_memset ((POINTER)context->state, 0, sizeof (context->state));
|
MD2_memset((POINTER)context->state, 0, sizeof(context->state));
|
||||||
MD2_memset
|
MD2_memset((POINTER)context->checksum, 0, sizeof(context->checksum));
|
||||||
((POINTER)context->checksum, 0, sizeof (context->checksum));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* MD2 block update operation. Continues an MD2 message-digest
|
/* MD2 block update operation. Continues an MD2 message-digest
|
||||||
operation, processing another message block, and updating the
|
operation, processing another message block, and updating the
|
||||||
context.
|
context.
|
||||||
*/
|
*/
|
||||||
void MD2Update (context, input, inputLen)
|
void MD2Update(context, input, inputLen) MD2_CTX *context; /* context */
|
||||||
MD2_CTX *context; /* context */
|
|
||||||
unsigned char *input; /* input block */
|
unsigned char *input; /* input block */
|
||||||
unsigned int inputLen; /* length of input block */
|
unsigned int inputLen; /* length of input block */
|
||||||
{
|
{
|
||||||
|
@ -106,30 +113,27 @@ unsigned int inputLen; /* length of input block */
|
||||||
/* Transform as many times as possible.
|
/* Transform as many times as possible.
|
||||||
*/
|
*/
|
||||||
if (inputLen >= partLen) {
|
if (inputLen >= partLen) {
|
||||||
MD2_memcpy
|
MD2_memcpy((POINTER)&context->buffer[index], (POINTER)input, partLen);
|
||||||
((POINTER)&context->buffer[index], (POINTER)input, partLen);
|
MD2Transform(context->state, context->checksum, context->buffer);
|
||||||
MD2Transform (context->state, context->checksum, context->buffer);
|
|
||||||
|
|
||||||
for (i = partLen; i + 15 < inputLen; i += 16)
|
for (i = partLen; i + 15 < inputLen; i += 16)
|
||||||
MD2Transform (context->state, context->checksum, &input[i]);
|
MD2Transform(context->state, context->checksum, &input[i]);
|
||||||
|
|
||||||
index = 0;
|
index = 0;
|
||||||
}
|
} else
|
||||||
else
|
|
||||||
i = 0;
|
i = 0;
|
||||||
|
|
||||||
/* Buffer remaining input */
|
/* Buffer remaining input */
|
||||||
MD2_memcpy
|
MD2_memcpy((POINTER)&context->buffer[index], (POINTER)&input[i],
|
||||||
((POINTER)&context->buffer[index], (POINTER)&input[i],
|
inputLen - i);
|
||||||
inputLen-i);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* MD2 finalization. Ends an MD2 message-digest operation, writing the
|
/* MD2 finalization. Ends an MD2 message-digest operation, writing the
|
||||||
message digest and zeroizing the context.
|
message digest and zeroizing the context.
|
||||||
*/
|
*/
|
||||||
void MD2Final (digest, context)
|
void MD2Final(digest, context)
|
||||||
|
|
||||||
unsigned char digest[16]; /* message digest */
|
unsigned char digest[16]; /* message digest */
|
||||||
MD2_CTX *context; /* context */
|
MD2_CTX *context; /* context */
|
||||||
{
|
{
|
||||||
unsigned int index, padLen;
|
unsigned int index, padLen;
|
||||||
|
@ -138,24 +142,23 @@ MD2_CTX *context; /* context */
|
||||||
*/
|
*/
|
||||||
index = context->count;
|
index = context->count;
|
||||||
padLen = 16 - index;
|
padLen = 16 - index;
|
||||||
MD2Update (context, PADDING[padLen], padLen);
|
MD2Update(context, PADDING[padLen], padLen);
|
||||||
|
|
||||||
/* Extend with checksum */
|
/* Extend with checksum */
|
||||||
MD2Update (context, context->checksum, 16);
|
MD2Update(context, context->checksum, 16);
|
||||||
|
|
||||||
/* Store state in digest */
|
/* Store state in digest */
|
||||||
MD2_memcpy ((POINTER)digest, (POINTER)context->state, 16);
|
MD2_memcpy((POINTER)digest, (POINTER)context->state, 16);
|
||||||
|
|
||||||
/* Zeroize sensitive information.
|
/* Zeroize sensitive information.
|
||||||
*/
|
*/
|
||||||
MD2_memset ((POINTER)context, 0, sizeof (*context));
|
MD2_memset((POINTER)context, 0, sizeof(*context));
|
||||||
}
|
}
|
||||||
|
|
||||||
/* MD2 basic transformation. Transforms state and updates checksum
|
/* MD2 basic transformation. Transforms state and updates checksum
|
||||||
based on block.
|
based on block.
|
||||||
*/
|
*/
|
||||||
static void MD2Transform (state, checksum, block)
|
static void MD2Transform(state, checksum, block) unsigned char state[16];
|
||||||
unsigned char state[16];
|
|
||||||
unsigned char checksum[16];
|
unsigned char checksum[16];
|
||||||
unsigned char block[16];
|
unsigned char block[16];
|
||||||
{
|
{
|
||||||
|
@ -164,57 +167,49 @@ unsigned char block[16];
|
||||||
|
|
||||||
/* Form encryption block from state, block, state ^ block.
|
/* Form encryption block from state, block, state ^ block.
|
||||||
*/
|
*/
|
||||||
MD2_memcpy ((POINTER)x, (POINTER)state, 16);
|
MD2_memcpy((POINTER)x, (POINTER)state, 16);
|
||||||
MD2_memcpy ((POINTER)x+16, (POINTER)block, 16);
|
MD2_memcpy((POINTER)x + 16, (POINTER)block, 16);
|
||||||
for (i = 0; i < 16; i++)
|
for (i = 0; i < 16; i++) x[i + 32] = state[i] ^ block[i];
|
||||||
x[i+32] = state[i] ^ block[i];
|
|
||||||
|
|
||||||
/* Encrypt block (18 rounds).
|
/* Encrypt block (18 rounds).
|
||||||
*/
|
*/
|
||||||
t = 0;
|
t = 0;
|
||||||
for (i = 0; i < 18; i++) {
|
for (i = 0; i < 18; i++) {
|
||||||
for (j = 0; j < 48; j++)
|
for (j = 0; j < 48; j++) t = x[j] ^= PI_SUBST[t];
|
||||||
t = x[j] ^= PI_SUBST[t];
|
|
||||||
t = (t + i) & 0xff;
|
t = (t + i) & 0xff;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Save new state */
|
||||||
/* Save new state */
|
MD2_memcpy((POINTER)state, (POINTER)x, 16);
|
||||||
MD2_memcpy ((POINTER)state, (POINTER)x, 16);
|
|
||||||
|
|
||||||
/* Update checksum.
|
/* Update checksum.
|
||||||
*/
|
*/
|
||||||
t = checksum[15];
|
t = checksum[15];
|
||||||
for (i = 0; i < 16; i++)
|
for (i = 0; i < 16; i++) t = checksum[i] ^= PI_SUBST[block[i] ^ t];
|
||||||
t = checksum[i] ^= PI_SUBST[block[i] ^ t];
|
|
||||||
|
|
||||||
/* Zeroize sensitive information.
|
/* Zeroize sensitive information.
|
||||||
*/
|
*/
|
||||||
MD2_memset ((POINTER)x, 0, sizeof (x));
|
MD2_memset((POINTER)x, 0, sizeof(x));
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Note: Replace "for loop" with standard memcpy if possible.
|
/* Note: Replace "for loop" with standard memcpy if possible.
|
||||||
*/
|
*/
|
||||||
static void MD2_memcpy (output, input, len)
|
static void MD2_memcpy(output, input, len) POINTER output;
|
||||||
POINTER output;
|
|
||||||
POINTER input;
|
POINTER input;
|
||||||
unsigned int len;
|
unsigned int len;
|
||||||
{
|
{
|
||||||
unsigned int i;
|
unsigned int i;
|
||||||
|
|
||||||
for (i = 0; i < len; i++)
|
for (i = 0; i < len; i++) output[i] = input[i];
|
||||||
output[i] = input[i];
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Note: Replace "for loop" with standard memset if possible.
|
/* Note: Replace "for loop" with standard memset if possible.
|
||||||
*/
|
*/
|
||||||
static void MD2_memset (output, value, len)
|
static void MD2_memset(output, value, len) POINTER output;
|
||||||
POINTER output;
|
|
||||||
int value;
|
int value;
|
||||||
unsigned int len;
|
unsigned int len;
|
||||||
{
|
{
|
||||||
unsigned int i;
|
unsigned int i;
|
||||||
|
|
||||||
for (i = 0; i < len; i++)
|
for (i = 0; i < len; i++) ((char *)output)[i] = (char)value;
|
||||||
((char *)output)[i] = (char)value;
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,209 +0,0 @@
|
||||||
/* MDDRIVER.C - test driver for MD2, MD4 and MD5
|
|
||||||
*/
|
|
||||||
|
|
||||||
/* Copyright (C) 1990-2, RSA Data Security, Inc. Created 1990. All
|
|
||||||
rights reserved.
|
|
||||||
RSA Data Security, Inc. makes no representations concerning either
|
|
||||||
the merchantability of this software or the suitability of this
|
|
||||||
software for any particular purpose. It is provided "as is"
|
|
||||||
without express or implied warranty of any kind.
|
|
||||||
|
|
||||||
These notices must be retained in any copies of any part of this
|
|
||||||
documentation and/or software.
|
|
||||||
*/
|
|
||||||
|
|
||||||
/* The following makes MD default to MD5 if it has not already been
|
|
||||||
defined with C compiler flags.
|
|
||||||
*/
|
|
||||||
#ifndef MD
|
|
||||||
#define MD MD5
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include <stdio.h>
|
|
||||||
#include <time.h>
|
|
||||||
#include <string.h>
|
|
||||||
#include "global.h"
|
|
||||||
#if MD == 2
|
|
||||||
#include "md2_reference.h"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* Length of test block, number of test blocks.
|
|
||||||
*/
|
|
||||||
#define TEST_BLOCK_LEN 1000
|
|
||||||
#define TEST_BLOCK_COUNT 1000
|
|
||||||
|
|
||||||
static void MDString PROTO_LIST ((char *));
|
|
||||||
static void MDTimeTrial PROTO_LIST ((void));
|
|
||||||
static void MDTestSuite PROTO_LIST ((void));
|
|
||||||
static void MDFile PROTO_LIST ((char *));
|
|
||||||
static void MDFilter PROTO_LIST ((void));
|
|
||||||
static void MDPrint PROTO_LIST ((unsigned char [16]));
|
|
||||||
|
|
||||||
#if MD == 2
|
|
||||||
#define MD_CTX MD2_CTX
|
|
||||||
#define MDInit MD2Init
|
|
||||||
#define MDUpdate MD2Update
|
|
||||||
#define MDFinal MD2Final
|
|
||||||
#endif
|
|
||||||
|
|
||||||
|
|
||||||
/* Main driver.
|
|
||||||
|
|
||||||
Arguments (may be any combination):
|
|
||||||
-sstring - digests string
|
|
||||||
-t - runs time trial
|
|
||||||
-x - runs test script
|
|
||||||
filename - digests file
|
|
||||||
(none) - digests standard input
|
|
||||||
*/
|
|
||||||
int main (argc, argv)
|
|
||||||
int argc;
|
|
||||||
char *argv[];
|
|
||||||
{
|
|
||||||
int i;
|
|
||||||
|
|
||||||
if (argc > 1)
|
|
||||||
for (i = 1; i < argc; i++)
|
|
||||||
if (argv[i][0] == '-' && argv[i][1] == 's')
|
|
||||||
MDString (argv[i] + 2);
|
|
||||||
else if (strcmp (argv[i], "-t") == 0)
|
|
||||||
MDTimeTrial ();
|
|
||||||
else if (strcmp (argv[i], "-x") == 0)
|
|
||||||
MDTestSuite ();
|
|
||||||
else
|
|
||||||
MDFile (argv[i]);
|
|
||||||
else
|
|
||||||
MDFilter ();
|
|
||||||
|
|
||||||
return (0);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Digests a string and prints the result.
|
|
||||||
*/
|
|
||||||
static void MDString (string)
|
|
||||||
char *string;
|
|
||||||
|
|
||||||
{
|
|
||||||
MD_CTX context;
|
|
||||||
unsigned char digest[16];
|
|
||||||
unsigned int len = strlen (string);
|
|
||||||
|
|
||||||
MDInit (&context);
|
|
||||||
MDUpdate (&context, string, len);
|
|
||||||
MDFinal (digest, &context);
|
|
||||||
|
|
||||||
printf ("MD%d (\"%s\") = ", MD, string);
|
|
||||||
MDPrint (digest);
|
|
||||||
printf ("\n");
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Measures the time to digest TEST_BLOCK_COUNT TEST_BLOCK_LEN-byte
|
|
||||||
blocks.
|
|
||||||
*/
|
|
||||||
static void MDTimeTrial ()
|
|
||||||
{
|
|
||||||
MD_CTX context;
|
|
||||||
time_t endTime, startTime;
|
|
||||||
unsigned char block[TEST_BLOCK_LEN], digest[16];
|
|
||||||
unsigned int i;
|
|
||||||
|
|
||||||
printf
|
|
||||||
("MD%d time trial. Digesting %d %d-byte blocks ...", MD,
|
|
||||||
TEST_BLOCK_LEN, TEST_BLOCK_COUNT);
|
|
||||||
|
|
||||||
/* Initialize block */
|
|
||||||
for (i = 0; i < TEST_BLOCK_LEN; i++)
|
|
||||||
block[i] = (unsigned char)(i & 0xff);
|
|
||||||
|
|
||||||
/* Start timer */
|
|
||||||
time (&startTime);
|
|
||||||
|
|
||||||
/* Digest blocks */
|
|
||||||
MDInit (&context);
|
|
||||||
for (i = 0; i < TEST_BLOCK_COUNT; i++)
|
|
||||||
MDUpdate (&context, block, TEST_BLOCK_LEN);
|
|
||||||
MDFinal (digest, &context);
|
|
||||||
|
|
||||||
/* Stop timer */
|
|
||||||
time (&endTime);
|
|
||||||
|
|
||||||
printf (" done\n");
|
|
||||||
printf ("Digest = ");
|
|
||||||
MDPrint (digest);
|
|
||||||
printf ("\nTime = %ld seconds\n", (long)(endTime-startTime));
|
|
||||||
printf
|
|
||||||
("Speed = %ld bytes/second\n",
|
|
||||||
(long)TEST_BLOCK_LEN * (long)TEST_BLOCK_COUNT/(endTime-startTime));
|
|
||||||
}
|
|
||||||
/* Digests a reference suite of strings and prints the results.
|
|
||||||
*/
|
|
||||||
static void MDTestSuite ()
|
|
||||||
{
|
|
||||||
printf ("MD%d test suite:\n", MD);
|
|
||||||
|
|
||||||
MDString ("");
|
|
||||||
MDString ("a");
|
|
||||||
MDString ("abc");
|
|
||||||
MDString ("message digest");
|
|
||||||
MDString ("abcdefghijklmnopqrstuvwxyz");
|
|
||||||
MDString
|
|
||||||
("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789");
|
|
||||||
MDString
|
|
||||||
("1234567890123456789012345678901234567890\
|
|
||||||
1234567890123456789012345678901234567890");
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Digests a file and prints the result.
|
|
||||||
*/
|
|
||||||
static void MDFile (filename)
|
|
||||||
char *filename;
|
|
||||||
{
|
|
||||||
FILE *file;
|
|
||||||
MD_CTX context;
|
|
||||||
int len;
|
|
||||||
unsigned char buffer[1024], digest[16];
|
|
||||||
|
|
||||||
if ((file = fopen (filename, "rb")) == NULL)
|
|
||||||
printf ("%s can't be opened\n", filename);
|
|
||||||
|
|
||||||
else {
|
|
||||||
MDInit (&context);
|
|
||||||
while (len = fread (buffer, 1, 1024, file))
|
|
||||||
MDUpdate (&context, buffer, len);
|
|
||||||
MDFinal (digest, &context);
|
|
||||||
|
|
||||||
fclose (file);
|
|
||||||
|
|
||||||
printf ("MD%d (%s) = ", MD, filename);
|
|
||||||
MDPrint (digest);
|
|
||||||
printf ("\n");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Digests the standard input and prints the result.
|
|
||||||
*/
|
|
||||||
static void MDFilter ()
|
|
||||||
{
|
|
||||||
MD_CTX context;
|
|
||||||
int len;
|
|
||||||
unsigned char buffer[16], digest[16];
|
|
||||||
|
|
||||||
MDInit (&context);
|
|
||||||
while (len = fread (buffer, 1, 16, stdin))
|
|
||||||
MDUpdate (&context, buffer, len);
|
|
||||||
MDFinal (digest, &context);
|
|
||||||
|
|
||||||
MDPrint (digest);
|
|
||||||
printf ("\n");
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Prints a message digest in hexadecimal.
|
|
||||||
*/
|
|
||||||
static void MDPrint (digest)
|
|
||||||
unsigned char digest[16];
|
|
||||||
{
|
|
||||||
unsigned int i;
|
|
||||||
|
|
||||||
for (i = 0; i < 16; i++)
|
|
||||||
printf ("%02x", digest[i]);
|
|
||||||
}
|
|
Loading…
Reference in a new issue