Blame lib/accelerated/x86/sha-x86.h

Packit Service 4684c1
#ifndef GNUTLS_LIB_ACCELERATED_X86_SHA_X86_H
Packit Service 4684c1
#define GNUTLS_LIB_ACCELERATED_X86_SHA_X86_H
Packit Service 4684c1
Packit Service 4684c1
#include <nettle/sha.h>
Packit Service 4684c1
Packit Service 4684c1
extern const struct nettle_hash x86_sha1;
Packit Service 4684c1
extern const struct nettle_hash x86_sha224;
Packit Service 4684c1
extern const struct nettle_hash x86_sha256;
Packit Service 4684c1
extern const struct nettle_hash x86_sha384;
Packit Service 4684c1
extern const struct nettle_hash x86_sha512;
Packit Service 4684c1
Packit Service 4684c1
void x86_sha1_update(struct sha1_ctx *ctx, size_t length, const uint8_t * data);
Packit Service 4684c1
void x86_sha256_update(struct sha256_ctx *ctx, size_t length, const uint8_t * data);
Packit Service 4684c1
void x86_sha512_update(struct sha512_ctx *ctx, size_t length, const uint8_t * data);
Packit Service 4684c1
Packit Service 4684c1
extern const gnutls_crypto_digest_st _gnutls_sha_x86_ssse3;
Packit Service 4684c1
extern const gnutls_crypto_mac_st _gnutls_hmac_sha_x86_ssse3;
Packit Service 4684c1
Packit Service 4684c1
#endif /* GNUTLS_LIB_ACCELERATED_X86_SHA_X86_H */