From 4f670845ff9ab6c48bcb5f7bf4d4ef6dc3c3064b Mon Sep 17 00:00:00 2001 From: manuel Date: Tue, 27 Mar 2012 11:51:08 +0200 Subject: reorganize file structure to match the upstream requirements --- pintos-progos/tests/arc4.h | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 pintos-progos/tests/arc4.h (limited to 'pintos-progos/tests/arc4.h') diff --git a/pintos-progos/tests/arc4.h b/pintos-progos/tests/arc4.h deleted file mode 100644 index 61c533a..0000000 --- a/pintos-progos/tests/arc4.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef TESTS_ARC4_H -#define TESTS_ARC4_H - -#include -#include - -/* Alleged RC4 algorithm encryption state. */ -struct arc4 - { - uint8_t s[256]; - uint8_t i, j; - }; - -void arc4_init (struct arc4 *, const void *, size_t); -void arc4_crypt (struct arc4 *, void *, size_t); - -#endif /* tests/arc4.h */ -- cgit v1.2.3