!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/usr/src/linux-headers-5.4.0-204/arch/x86/include/asm/crypto/   drwxr-xr-x
Free 13.25 GB of 57.97 GB (22.85%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     glue_helper.h (3.03 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/* SPDX-License-Identifier: GPL-2.0 */
/*
 * Shared glue code for 128bit block ciphers
 */

#ifndef _CRYPTO_GLUE_HELPER_H
#define _CRYPTO_GLUE_HELPER_H

#include <crypto/internal/skcipher.h>
#include <linux/kernel.h>
#include <asm/fpu/api.h>
#include <crypto/b128ops.h>

typedef void (*common_glue_func_t)(const void *ctx, u8 *dst, const u8 *src);
typedef void (*common_glue_cbc_func_t)(const void *ctx, u8 *dst, const u8 *src);
typedef void (*common_glue_ctr_func_t)(const void *ctx, u8 *dst, const u8 *src,
                       le128 *iv);
typedef void (*common_glue_xts_func_t)(const void *ctx, u8 *dst, const u8 *src,
                       le128 *iv);

struct common_glue_func_entry {
    unsigned int num_blocks; /* number of blocks that @fn will process */
    union {
        common_glue_func_t ecb;
        common_glue_cbc_func_t cbc;
        common_glue_ctr_func_t ctr;
        common_glue_xts_func_t xts;
    } fn_u;
};

struct common_glue_ctx {
    unsigned int num_funcs;
    int fpu_blocks_limit; /* -1 means fpu not needed at all */

    /*
     * First funcs entry must have largest num_blocks and last funcs entry
     * must have num_blocks == 1!
     */
    struct common_glue_func_entry funcs[];
};

static inline bool glue_fpu_begin(unsigned int bsize, int fpu_blocks_limit,
                  struct skcipher_walk *walk,
                  bool fpu_enabled, unsigned int nbytes)
{
    if (likely(fpu_blocks_limit < 0))
        return false;

    if (fpu_enabled)
        return true;

    /*
     * Vector-registers are only used when chunk to be processed is large
     * enough, so do not enable FPU until it is necessary.
     */
    if (nbytes < bsize * (unsigned int)fpu_blocks_limit)
        return false;

    /* prevent sleeping if FPU is in use */
    skcipher_walk_atomise(walk);

    kernel_fpu_begin();
    return true;
}

static inline void glue_fpu_end(bool fpu_enabled)
{
    if (fpu_enabled)
        kernel_fpu_end();
}

static inline void le128_to_be128(be128 *dst, const le128 *src)
{
    dst->a = cpu_to_be64(le64_to_cpu(src->a));
    dst->b = cpu_to_be64(le64_to_cpu(src->b));
}

static inline void be128_to_le128(le128 *dst, const be128 *src)
{
    dst->a = cpu_to_le64(be64_to_cpu(src->a));
    dst->b = cpu_to_le64(be64_to_cpu(src->b));
}

static inline void le128_inc(le128 *i)
{
    u64 a = le64_to_cpu(i->a);
    u64 b = le64_to_cpu(i->b);

    b++;
    if (!b)
        a++;

    i->a = cpu_to_le64(a);
    i->b = cpu_to_le64(b);
}

extern int glue_ecb_req_128bit(const struct common_glue_ctx *gctx,
                   struct skcipher_request *req);

extern int glue_cbc_encrypt_req_128bit(const common_glue_func_t fn,
                       struct skcipher_request *req);

extern int glue_cbc_decrypt_req_128bit(const struct common_glue_ctx *gctx,
                       struct skcipher_request *req);

extern int glue_ctr_req_128bit(const struct common_glue_ctx *gctx,
                   struct skcipher_request *req);

extern int glue_xts_req_128bit(const struct common_glue_ctx *gctx,
                   struct skcipher_request *req,
                   common_glue_func_t tweak_fn, void *tweak_ctx,
                   void *crypt_ctx, bool decrypt);

extern void glue_xts_crypt_128bit_one(const void *ctx, u8 *dst,
                      const u8 *src, le128 *iv,
                      common_glue_func_t fn);

#endif /* _CRYPTO_GLUE_HELPER_H */

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0048 ]--