First Commit

This commit is contained in:
2025-02-06 22:24:29 +08:00
parent ed7df4c81e
commit 7539e6a53c
18116 changed files with 6181499 additions and 0 deletions

23
externals/cryptopp/sha256_armv4.h vendored Normal file
View File

@@ -0,0 +1,23 @@
/* Header file for use with Cryptogam's ARMv4 SHA1. */
/* Also see http://www.openssl.org/~appro/cryptogams/ */
/* https://wiki.openssl.org/index.php/Cryptogams_SHA. */
#ifndef CRYPTOGAMS_SHA256_ARMV4_H
#define CRYPTOGAMS_SHA256_ARMV4_H
#ifdef __cplusplus
extern "C" {
#endif
/* Crypto++ modified cryptogams_sha256_block_data_order to pass caps as a parameter. */
/* Also see https://github.com/weidai11/cryptopp/issues/846. */
void cryptogams_sha256_block_data_order(void *state, const void *data, size_t blocks);
/* Cryptogams arm caps */
#define CRYPTOGAMS_ARMV7_NEON (1<<0)
#ifdef __cplusplus
}
#endif
#endif /* CRYPTOGAMS_SHA256_ARMV4_H */