!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: nginx/1.23.4. PHP/5.6.40-65+ubuntu20.04.1+deb.sury.org+1 

uname -a: Linux foro-restaurado-2 5.15.0-1040-oracle #46-Ubuntu SMP Fri Jul 14 21:47:21 UTC 2023
aarch64
 

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

Safe-mode: OFF (not secure)

/usr/src/linux-oracle-6.8-headers-6.8.0-1028/include/crypto/internal/   drwxr-xr-x
Free 83.31 GB of 96.73 GB (86.13%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     kdf_selftest.h (1.5 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/* SPDX-License-Identifier: GPL-2.0 */

/*
 * Copyright (C) 2021, Stephan Mueller <[email protected]>
 */

#ifndef _CRYPTO_KDF_SELFTEST_H
#define _CRYPTO_KDF_SELFTEST_H

#include <crypto/hash.h>
#include <linux/uio.h>

struct kdf_testvec {
    unsigned char *key;
    size_t keylen;
    unsigned char *ikm;
    size_t ikmlen;
    struct kvec info;
    unsigned char *expected;
    size_t expectedlen;
};

static inline int
kdf_test(const struct kdf_testvec *test, const char *name,
     int (*crypto_kdf_setkey)(struct crypto_shash *kmd,
                  const u8 *key, size_t keylen,
                  const u8 *ikm, size_t ikmlen),
     int (*crypto_kdf_generate)(struct crypto_shash *kmd,
                    const struct kvec *info,
                    unsigned int info_nvec,
                    u8 *dst, unsigned int dlen))
{
    struct crypto_shash *kmd;
    int ret;
    u8 *buf = kzalloc(test->expectedlen, GFP_KERNEL);

    if (!buf)
        return -ENOMEM;

    kmd = crypto_alloc_shash(name, 0, 0);
    if (IS_ERR(kmd)) {
        pr_err("alg: kdf: could not allocate hash handle for %s\n",
               name);
        kfree(buf);
        return -ENOMEM;
    }

    ret = crypto_kdf_setkey(kmd, test->key, test->keylen,
                test->ikm, test->ikmlen);
    if (ret) {
        pr_err("alg: kdf: could not set key derivation key\n");
        goto err;
    }

    ret = crypto_kdf_generate(kmd, &test->info, 1, buf, test->expectedlen);
    if (ret) {
        pr_err("alg: kdf: could not obtain key data\n");
        goto err;
    }

    ret = memcmp(test->expected, buf, test->expectedlen);
    if (ret)
        ret = -EINVAL;

err:
    crypto_free_shash(kmd);
    kfree(buf);
    return ret;
}

#endif /* _CRYPTO_KDF_SELFTEST_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.0 [PHP 7 Update] [25.02.2019] maintained by HackingTool | HackingTool | Generation time: 0.0042 ]--