summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/luatexdir/luapplib/src/util/utilsha.h
diff options
context:
space:
mode:
authorLuigi Scarso <luigi.scarso@gmail.com>2020-04-21 18:43:36 +0000
committerLuigi Scarso <luigi.scarso@gmail.com>2020-04-21 18:43:36 +0000
commit7c0b908f1a6e1489834fbdb0789766eed8a37b49 (patch)
treecb55d631b861bfcf95fe853713af6f760227ba0f /Build/source/texk/web2c/luatexdir/luapplib/src/util/utilsha.h
parente783b071ded7eef421d0333416b47142bc5542cb (diff)
pplib under libs -- WORK IN PROGRSS grep '?' out
git-svn-id: svn://tug.org/texlive/trunk@54824 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c/luatexdir/luapplib/src/util/utilsha.h')
-rw-r--r--Build/source/texk/web2c/luatexdir/luapplib/src/util/utilsha.h79
1 files changed, 0 insertions, 79 deletions
diff --git a/Build/source/texk/web2c/luatexdir/luapplib/src/util/utilsha.h b/Build/source/texk/web2c/luatexdir/luapplib/src/util/utilsha.h
deleted file mode 100644
index 6c9b1bdc9c0..00000000000
--- a/Build/source/texk/web2c/luatexdir/luapplib/src/util/utilsha.h
+++ /dev/null
@@ -1,79 +0,0 @@
-/* sha2 implementation excerpted from code by Aaron D. Gifford */
-
-#ifndef UTIL_SHA_H
-#define UTIL_SHA_H
-
-#include <stddef.h>
-#include <stdint.h>
-#include "utildecl.h"
-
-#define SHA256_BLOCK_LENGTH 64
-#define SHA256_DIGEST_LENGTH 32
-#define SHA256_STRING_LENGTH (SHA256_DIGEST_LENGTH * 2 + 1)
-#define SHA384_BLOCK_LENGTH 128
-#define SHA384_DIGEST_LENGTH 48
-#define SHA384_STRING_LENGTH (SHA384_DIGEST_LENGTH * 2 + 1)
-#define SHA512_BLOCK_LENGTH 128
-#define SHA512_DIGEST_LENGTH 64
-#define SHA512_STRING_LENGTH (SHA512_DIGEST_LENGTH * 2 + 1)
-
-//#define sha256_state sha256_state_t
-//#define sha384_state sha384_state_t
-//#define sha512_state sha512_state_t
-
-typedef struct {
- uint32_t words[8];
- uint64_t bitcount;
- union {
- uint8_t buffer[SHA256_BLOCK_LENGTH];
- uint32_t buffer32[SHA256_BLOCK_LENGTH / sizeof(uint32_t)];
- uint64_t buffer64[SHA256_BLOCK_LENGTH / sizeof(uint64_t)];
- };
-} sha256_state;
-
-typedef struct {
- uint64_t words[8];
- uint64_t bitcount[2];
- union {
- uint8_t buffer[SHA512_BLOCK_LENGTH];
- uint64_t buffer64[SHA512_BLOCK_LENGTH / sizeof(uint64_t)];
- };
-} sha512_state;
-
-typedef sha512_state sha384_state;
-
-enum {
- SHA_BYTES = 0,
- SHA_UCHEX = (1<<0),
- SHA_LCHEX = (1<<1)
-};
-
-#define SHA_DEFAULT SHA_BYTES
-#define SHA_HEX (SHA_UCHEX|SHA_LCHEX)
-
-UTILAPI sha256_state * sha256_digest_init (sha256_state *state);
-UTILAPI sha384_state * sha384_digest_init (sha384_state *state);
-UTILAPI sha512_state * sha512_digest_init (sha512_state *state);
-
-UTILAPI void sha256_digest_add (sha256_state *state, const void *data, size_t size);
-UTILAPI void sha384_digest_add (sha384_state *state, const void *data, size_t size);
-UTILAPI void sha512_digest_add (sha512_state *state, const void *data, size_t size);
-
-UTILAPI void sha256_digest_get (sha256_state *state, uint8_t digest[], int flags);
-UTILAPI void sha384_digest_get (sha384_state *state, uint8_t digest[], int flags);
-UTILAPI void sha512_digest_get (sha512_state *state, uint8_t digest[], int flags);
-
-UTILAPI void sha256_digest (const void *data, size_t size, uint8_t digest[], int flags);
-UTILAPI void sha384_digest (const void *data, size_t size, uint8_t digest[], int flags);
-UTILAPI void sha512_digest (const void *data, size_t size, uint8_t digest[], int flags);
-
-UTILAPI int sha256_digest_add_file (sha256_state *state, const char *filename);
-UTILAPI int sha256_digest_file (const char *filename, uint8_t digest[], int flags);
-
-UTILAPI int sha384_digest_add_file (sha384_state *state, const char *filename);
-UTILAPI int sha384_digest_file (const char *filename, uint8_t digest[], int flags);
-
-UTILAPI int sha512_digest_add_file (sha512_state *state, const char *filename);
-UTILAPI int sha512_digest_file (const char *filename, uint8_t digest[], int flags);
-
-#endif