summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/luatexdir/luapplib/src/util/utilcryptdef.h
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/texk/web2c/luatexdir/luapplib/src/util/utilcryptdef.h')
-rw-r--r--Build/source/texk/web2c/luatexdir/luapplib/src/util/utilcryptdef.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/Build/source/texk/web2c/luatexdir/luapplib/src/util/utilcryptdef.h b/Build/source/texk/web2c/luatexdir/luapplib/src/util/utilcryptdef.h
deleted file mode 100644
index d43ea2e5b53..00000000000
--- a/Build/source/texk/web2c/luatexdir/luapplib/src/util/utilcryptdef.h
+++ /dev/null
@@ -1,32 +0,0 @@
-
-#ifndef UTIL_CRYPTDEF_H
-#define UTIL_CRYPTDEF_H
-
-struct rc4_state {
- union {
- rc4_map *map;
- uint8_t *smap;
- };
- int i, j;
- int flush;
- int flags;
-};
-
-struct aes_state {
- size_t keylength;
- int rounds;
- //int keywords;
- union {
- aes_block block;
- uint8_t data[16];
- };
- aes_keyblock *keyblock;
- uint8_t iv[16];
- uint8_t buffered;
- int flush;
- int flags;
-};
-
-typedef union { rc4_state *rc4state; aes_state *aesstate; void *voidstate; } crypt_state_pointer; // to avoid 'dereferencing type-puned ...' warnings
-
-#endif \ No newline at end of file