__  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

kentishfootball@216.73.216.211: ~ $
#ifndef crypto_pwhash_H
#define crypto_pwhash_H

#include <stddef.h>

#include "crypto_pwhash_argon2i.h"
#include "crypto_pwhash_argon2id.h"
#include "export.h"

#ifdef __cplusplus
# ifdef __GNUC__
#  pragma GCC diagnostic ignored "-Wlong-long"
# endif
extern "C" {
#endif

#define crypto_pwhash_ALG_ARGON2I13 crypto_pwhash_argon2i_ALG_ARGON2I13
SODIUM_EXPORT
int crypto_pwhash_alg_argon2i13(void);

#define crypto_pwhash_ALG_ARGON2ID13 crypto_pwhash_argon2id_ALG_ARGON2ID13
SODIUM_EXPORT
int crypto_pwhash_alg_argon2id13(void);

#define crypto_pwhash_ALG_DEFAULT crypto_pwhash_ALG_ARGON2ID13
SODIUM_EXPORT
int crypto_pwhash_alg_default(void);

#define crypto_pwhash_BYTES_MIN crypto_pwhash_argon2id_BYTES_MIN
SODIUM_EXPORT
size_t crypto_pwhash_bytes_min(void);

#define crypto_pwhash_BYTES_MAX crypto_pwhash_argon2id_BYTES_MAX
SODIUM_EXPORT
size_t crypto_pwhash_bytes_max(void);

#define crypto_pwhash_PASSWD_MIN crypto_pwhash_argon2id_PASSWD_MIN
SODIUM_EXPORT
size_t crypto_pwhash_passwd_min(void);

#define crypto_pwhash_PASSWD_MAX crypto_pwhash_argon2id_PASSWD_MAX
SODIUM_EXPORT
size_t crypto_pwhash_passwd_max(void);

#define crypto_pwhash_SALTBYTES crypto_pwhash_argon2id_SALTBYTES
SODIUM_EXPORT
size_t crypto_pwhash_saltbytes(void);

#define crypto_pwhash_STRBYTES crypto_pwhash_argon2id_STRBYTES
SODIUM_EXPORT
size_t crypto_pwhash_strbytes(void);

#define crypto_pwhash_STRPREFIX crypto_pwhash_argon2id_STRPREFIX
SODIUM_EXPORT
const char *crypto_pwhash_strprefix(void);

#define crypto_pwhash_OPSLIMIT_MIN crypto_pwhash_argon2id_OPSLIMIT_MIN
SODIUM_EXPORT
size_t crypto_pwhash_opslimit_min(void);

#define crypto_pwhash_OPSLIMIT_MAX crypto_pwhash_argon2id_OPSLIMIT_MAX
SODIUM_EXPORT
size_t crypto_pwhash_opslimit_max(void);

#define crypto_pwhash_MEMLIMIT_MIN crypto_pwhash_argon2id_MEMLIMIT_MIN
SODIUM_EXPORT
size_t crypto_pwhash_memlimit_min(void);

#define crypto_pwhash_MEMLIMIT_MAX crypto_pwhash_argon2id_MEMLIMIT_MAX
SODIUM_EXPORT
size_t crypto_pwhash_memlimit_max(void);

#define crypto_pwhash_OPSLIMIT_INTERACTIVE crypto_pwhash_argon2id_OPSLIMIT_INTERACTIVE
SODIUM_EXPORT
size_t crypto_pwhash_opslimit_interactive(void);

#define crypto_pwhash_MEMLIMIT_INTERACTIVE crypto_pwhash_argon2id_MEMLIMIT_INTERACTIVE
SODIUM_EXPORT
size_t crypto_pwhash_memlimit_interactive(void);

#define crypto_pwhash_OPSLIMIT_MODERATE crypto_pwhash_argon2id_OPSLIMIT_MODERATE
SODIUM_EXPORT
size_t crypto_pwhash_opslimit_moderate(void);

#define crypto_pwhash_MEMLIMIT_MODERATE crypto_pwhash_argon2id_MEMLIMIT_MODERATE
SODIUM_EXPORT
size_t crypto_pwhash_memlimit_moderate(void);

#define crypto_pwhash_OPSLIMIT_SENSITIVE crypto_pwhash_argon2id_OPSLIMIT_SENSITIVE
SODIUM_EXPORT
size_t crypto_pwhash_opslimit_sensitive(void);

#define crypto_pwhash_MEMLIMIT_SENSITIVE crypto_pwhash_argon2id_MEMLIMIT_SENSITIVE
SODIUM_EXPORT
size_t crypto_pwhash_memlimit_sensitive(void);

/*
 * With this function, do not forget to store all parameters, including the
 * algorithm identifier in order to produce deterministic output.
 * The crypto_pwhash_* definitions, including crypto_pwhash_ALG_DEFAULT,
 * may change.
 */
SODIUM_EXPORT
int crypto_pwhash(unsigned char * const out, unsigned long long outlen,
                  const char * const passwd, unsigned long long passwdlen,
                  const unsigned char * const salt,
                  unsigned long long opslimit, size_t memlimit, int alg)
            __attribute__ ((warn_unused_result)) __attribute__ ((nonnull));

/*
 * The output string already includes all the required parameters, including
 * the algorithm identifier. The string is all that has to be stored in
 * order to verify a password.
 */
SODIUM_EXPORT
int crypto_pwhash_str(char out[crypto_pwhash_STRBYTES],
                      const char * const passwd, unsigned long long passwdlen,
                      unsigned long long opslimit, size_t memlimit)
            __attribute__ ((warn_unused_result)) __attribute__ ((nonnull));

SODIUM_EXPORT
int crypto_pwhash_str_alg(char out[crypto_pwhash_STRBYTES],
                          const char * const passwd, unsigned long long passwdlen,
                          unsigned long long opslimit, size_t memlimit, int alg)
            __attribute__ ((warn_unused_result)) __attribute__ ((nonnull));

SODIUM_EXPORT
int crypto_pwhash_str_verify(const char str[crypto_pwhash_STRBYTES],
                             const char * const passwd,
                             unsigned long long passwdlen)
            __attribute__ ((warn_unused_result)) __attribute__ ((nonnull));

SODIUM_EXPORT
int crypto_pwhash_str_needs_rehash(const char str[crypto_pwhash_STRBYTES],
                                   unsigned long long opslimit, size_t memlimit)
            __attribute__ ((warn_unused_result)) __attribute__ ((nonnull));

#define crypto_pwhash_PRIMITIVE "argon2i"
SODIUM_EXPORT
const char *crypto_pwhash_primitive(void)
            __attribute__ ((warn_unused_result));

#ifdef __cplusplus
}
#endif

#endif

Filemanager

Name Type Size Permission Actions
core.h File 391 B 0644
crypto_aead_aes256gcm.h File 7.79 KB 0644
crypto_aead_chacha20poly1305.h File 8.58 KB 0644
crypto_aead_xchacha20poly1305.h File 4.73 KB 0644
crypto_auth.h File 1.12 KB 0644
crypto_auth_hmacsha256.h File 2.09 KB 0644
crypto_auth_hmacsha512.h File 2.07 KB 0644
crypto_auth_hmacsha512256.h File 2.08 KB 0644
crypto_box.h File 6.68 KB 0644
crypto_box_curve25519xchacha20poly1305.h File 7.77 KB 0644
crypto_box_curve25519xsalsa20poly1305.h File 4.59 KB 0644
crypto_core_ed25519.h File 2.83 KB 0644
crypto_core_hchacha20.h File 816 B 0644
crypto_core_hsalsa20.h File 804 B 0644
crypto_core_ristretto255.h File 3.07 KB 0644
crypto_core_salsa20.h File 792 B 0644
crypto_core_salsa2012.h File 816 B 0644
crypto_core_salsa208.h File 968 B 0644
crypto_generichash.h File 2.44 KB 0644
crypto_generichash_blake2b.h File 3.87 KB 0644
crypto_hash.h File 901 B 0644
crypto_hash_sha256.h File 1.46 KB 0644
crypto_hash_sha512.h File 1.46 KB 0644
crypto_kdf.h File 1.28 KB 0644
crypto_kdf_blake2b.h File 1.05 KB 0644
crypto_kx.h File 2.15 KB 0644
crypto_onetimeauth.h File 1.87 KB 0644
crypto_onetimeauth_poly1305.h File 2.15 KB 0644
crypto_pwhash.h File 4.85 KB 0644
crypto_pwhash_argon2i.h File 3.83 KB 0644
crypto_pwhash_argon2id.h File 3.89 KB 0644
crypto_pwhash_scryptsalsa208sha256.h File 4.58 KB 0644
crypto_scalarmult.h File 1.16 KB 0644
crypto_scalarmult_curve25519.h File 1.07 KB 0644
crypto_scalarmult_ed25519.h File 1.37 KB 0644
crypto_scalarmult_ristretto255.h File 1.09 KB 0644
crypto_secretbox.h File 3.24 KB 0644
crypto_secretbox_xchacha20poly1305.h File 2.79 KB 0644
crypto_secretbox_xsalsa20poly1305.h File 2.36 KB 0644
crypto_secretstream_xchacha20poly1305.h File 3.74 KB 0644
crypto_shorthash.h File 960 B 0644
crypto_shorthash_siphash24.h File 1.21 KB 0644
crypto_sign.h File 3.27 KB 0644
crypto_sign_ed25519.h File 4.24 KB 0644
crypto_sign_edwards25519sha512batch.h File 2 KB 0644
crypto_stream.h File 1.57 KB 0644
crypto_stream_chacha20.h File 3.59 KB 0644
crypto_stream_salsa20.h File 1.79 KB 0644
crypto_stream_salsa2012.h File 1.5 KB 0644
crypto_stream_salsa208.h File 1.69 KB 0644
crypto_stream_xchacha20.h File 1.83 KB 0644
crypto_stream_xsalsa20.h File 1.81 KB 0644
crypto_verify_16.h File 419 B 0644
crypto_verify_32.h File 419 B 0644
crypto_verify_64.h File 419 B 0644
export.h File 1.32 KB 0644
randombytes.h File 1.8 KB 0644
randombytes_internal_random.h File 427 B 0644
randombytes_sysrandom.h File 282 B 0644
runtime.h File 889 B 0644
utils.h File 6 KB 0644
version.h File 509 B 0644
Filemanager