Blame lib/crypto_backend/argon2/argon2.h

Packit 94f725
/*
Packit 94f725
 * Argon2 reference source code package - reference C implementations
Packit 94f725
 *
Packit 94f725
 * Copyright 2015
Packit 94f725
 * Daniel Dinu, Dmitry Khovratovich, Jean-Philippe Aumasson, and Samuel Neves
Packit 94f725
 *
Packit 94f725
 * You may use this work under the terms of a Creative Commons CC0 1.0
Packit 94f725
 * License/Waiver or the Apache Public License 2.0, at your option. The terms of
Packit 94f725
 * these licenses can be found at:
Packit 94f725
 *
Packit 94f725
 * - CC0 1.0 Universal : http://creativecommons.org/publicdomain/zero/1.0
Packit 94f725
 * - Apache 2.0        : http://www.apache.org/licenses/LICENSE-2.0
Packit 94f725
 *
Packit 94f725
 * You should have received a copy of both of these licenses along with this
Packit 94f725
 * software. If not, they may be obtained at the above URLs.
Packit 94f725
 */
Packit 94f725
Packit 94f725
#ifndef ARGON2_H
Packit 94f725
#define ARGON2_H
Packit 94f725
Packit 94f725
#include <stdint.h>
Packit 94f725
#include <stddef.h>
Packit 94f725
#include <limits.h>
Packit 94f725
Packit 94f725
#if defined(__cplusplus)
Packit 94f725
extern "C" {
Packit 94f725
#endif
Packit 94f725
Packit 94f725
/* Symbols visibility control */
Packit 94f725
#ifdef A2_VISCTL
Packit 94f725
#define ARGON2_PUBLIC __attribute__((visibility("default")))
Packit 94f725
#define ARGON2_LOCAL __attribute__ ((visibility ("hidden")))
Packit 94f725
#elif _MSC_VER
Packit 94f725
#define ARGON2_PUBLIC __declspec(dllexport)
Packit 94f725
#define ARGON2_LOCAL
Packit 94f725
#else
Packit 94f725
#define ARGON2_PUBLIC
Packit 94f725
#define ARGON2_LOCAL
Packit 94f725
#endif
Packit 94f725
Packit 94f725
/*
Packit 94f725
 * Argon2 input parameter restrictions
Packit 94f725
 */
Packit 94f725
Packit 94f725
/* Minimum and maximum number of lanes (degree of parallelism) */
Packit 94f725
#define ARGON2_MIN_LANES UINT32_C(1)
Packit 94f725
#define ARGON2_MAX_LANES UINT32_C(0xFFFFFF)
Packit 94f725
Packit 94f725
/* Minimum and maximum number of threads */
Packit 94f725
#define ARGON2_MIN_THREADS UINT32_C(1)
Packit 94f725
#define ARGON2_MAX_THREADS UINT32_C(0xFFFFFF)
Packit 94f725
Packit 94f725
/* Number of synchronization points between lanes per pass */
Packit 94f725
#define ARGON2_SYNC_POINTS UINT32_C(4)
Packit 94f725
Packit 94f725
/* Minimum and maximum digest size in bytes */
Packit 94f725
#define ARGON2_MIN_OUTLEN UINT32_C(4)
Packit 94f725
#define ARGON2_MAX_OUTLEN UINT32_C(0xFFFFFFFF)
Packit 94f725
Packit 94f725
/* Minimum and maximum number of memory blocks (each of BLOCK_SIZE bytes) */
Packit 94f725
#define ARGON2_MIN_MEMORY (2 * ARGON2_SYNC_POINTS) /* 2 blocks per slice */
Packit 94f725
Packit 94f725
#define ARGON2_MIN(a, b) ((a) < (b) ? (a) : (b))
Packit 94f725
/* Max memory size is addressing-space/2, topping at 2^32 blocks (4 TB) */
Packit 94f725
#define ARGON2_MAX_MEMORY_BITS                                                 \
Packit 94f725
    ARGON2_MIN(UINT32_C(32), (sizeof(void *) * CHAR_BIT - 10 - 1))
Packit 94f725
#define ARGON2_MAX_MEMORY                                                      \
Packit 94f725
    ARGON2_MIN(UINT32_C(0xFFFFFFFF), UINT64_C(1) << ARGON2_MAX_MEMORY_BITS)
Packit 94f725
Packit 94f725
/* Minimum and maximum number of passes */
Packit 94f725
#define ARGON2_MIN_TIME UINT32_C(1)
Packit 94f725
#define ARGON2_MAX_TIME UINT32_C(0xFFFFFFFF)
Packit 94f725
Packit 94f725
/* Minimum and maximum password length in bytes */
Packit 94f725
#define ARGON2_MIN_PWD_LENGTH UINT32_C(0)
Packit 94f725
#define ARGON2_MAX_PWD_LENGTH UINT32_C(0xFFFFFFFF)
Packit 94f725
Packit 94f725
/* Minimum and maximum associated data length in bytes */
Packit 94f725
#define ARGON2_MIN_AD_LENGTH UINT32_C(0)
Packit 94f725
#define ARGON2_MAX_AD_LENGTH UINT32_C(0xFFFFFFFF)
Packit 94f725
Packit 94f725
/* Minimum and maximum salt length in bytes */
Packit 94f725
#define ARGON2_MIN_SALT_LENGTH UINT32_C(8)
Packit 94f725
#define ARGON2_MAX_SALT_LENGTH UINT32_C(0xFFFFFFFF)
Packit 94f725
Packit 94f725
/* Minimum and maximum key length in bytes */
Packit 94f725
#define ARGON2_MIN_SECRET UINT32_C(0)
Packit 94f725
#define ARGON2_MAX_SECRET UINT32_C(0xFFFFFFFF)
Packit 94f725
Packit 94f725
/* Flags to determine which fields are securely wiped (default = no wipe). */
Packit 94f725
#define ARGON2_DEFAULT_FLAGS UINT32_C(0)
Packit 94f725
#define ARGON2_FLAG_CLEAR_PASSWORD (UINT32_C(1) << 0)
Packit 94f725
#define ARGON2_FLAG_CLEAR_SECRET (UINT32_C(1) << 1)
Packit 94f725
Packit 94f725
/* Global flag to determine if we are wiping internal memory buffers. This flag
Packit 94f725
 * is defined in core.c and defaults to 1 (wipe internal memory). */
Packit 94f725
extern int FLAG_clear_internal_memory;
Packit 94f725
Packit 94f725
/* Error codes */
Packit 94f725
typedef enum Argon2_ErrorCodes {
Packit 94f725
    ARGON2_OK = 0,
Packit 94f725
Packit 94f725
    ARGON2_OUTPUT_PTR_NULL = -1,
Packit 94f725
Packit 94f725
    ARGON2_OUTPUT_TOO_SHORT = -2,
Packit 94f725
    ARGON2_OUTPUT_TOO_LONG = -3,
Packit 94f725
Packit 94f725
    ARGON2_PWD_TOO_SHORT = -4,
Packit 94f725
    ARGON2_PWD_TOO_LONG = -5,
Packit 94f725
Packit 94f725
    ARGON2_SALT_TOO_SHORT = -6,
Packit 94f725
    ARGON2_SALT_TOO_LONG = -7,
Packit 94f725
Packit 94f725
    ARGON2_AD_TOO_SHORT = -8,
Packit 94f725
    ARGON2_AD_TOO_LONG = -9,
Packit 94f725
Packit 94f725
    ARGON2_SECRET_TOO_SHORT = -10,
Packit 94f725
    ARGON2_SECRET_TOO_LONG = -11,
Packit 94f725
Packit 94f725
    ARGON2_TIME_TOO_SMALL = -12,
Packit 94f725
    ARGON2_TIME_TOO_LARGE = -13,
Packit 94f725
Packit 94f725
    ARGON2_MEMORY_TOO_LITTLE = -14,
Packit 94f725
    ARGON2_MEMORY_TOO_MUCH = -15,
Packit 94f725
Packit 94f725
    ARGON2_LANES_TOO_FEW = -16,
Packit 94f725
    ARGON2_LANES_TOO_MANY = -17,
Packit 94f725
Packit 94f725
    ARGON2_PWD_PTR_MISMATCH = -18,    /* NULL ptr with non-zero length */
Packit 94f725
    ARGON2_SALT_PTR_MISMATCH = -19,   /* NULL ptr with non-zero length */
Packit 94f725
    ARGON2_SECRET_PTR_MISMATCH = -20, /* NULL ptr with non-zero length */
Packit 94f725
    ARGON2_AD_PTR_MISMATCH = -21,     /* NULL ptr with non-zero length */
Packit 94f725
Packit 94f725
    ARGON2_MEMORY_ALLOCATION_ERROR = -22,
Packit 94f725
Packit 94f725
    ARGON2_FREE_MEMORY_CBK_NULL = -23,
Packit 94f725
    ARGON2_ALLOCATE_MEMORY_CBK_NULL = -24,
Packit 94f725
Packit 94f725
    ARGON2_INCORRECT_PARAMETER = -25,
Packit 94f725
    ARGON2_INCORRECT_TYPE = -26,
Packit 94f725
Packit 94f725
    ARGON2_OUT_PTR_MISMATCH = -27,
Packit 94f725
Packit 94f725
    ARGON2_THREADS_TOO_FEW = -28,
Packit 94f725
    ARGON2_THREADS_TOO_MANY = -29,
Packit 94f725
Packit 94f725
    ARGON2_MISSING_ARGS = -30,
Packit 94f725
Packit 94f725
    ARGON2_ENCODING_FAIL = -31,
Packit 94f725
Packit 94f725
    ARGON2_DECODING_FAIL = -32,
Packit 94f725
Packit 94f725
    ARGON2_THREAD_FAIL = -33,
Packit 94f725
Packit 94f725
    ARGON2_DECODING_LENGTH_FAIL = -34,
Packit 94f725
Packit 94f725
    ARGON2_VERIFY_MISMATCH = -35
Packit 94f725
} argon2_error_codes;
Packit 94f725
Packit 94f725
/* Memory allocator types --- for external allocation */
Packit 94f725
typedef int (*allocate_fptr)(uint8_t **memory, size_t bytes_to_allocate);
Packit 94f725
typedef void (*deallocate_fptr)(uint8_t *memory, size_t bytes_to_allocate);
Packit 94f725
Packit 94f725
/* Argon2 external data structures */
Packit 94f725
Packit 94f725
/*
Packit 94f725
 *****
Packit 94f725
 * Context: structure to hold Argon2 inputs:
Packit 94f725
 *  output array and its length,
Packit 94f725
 *  password and its length,
Packit 94f725
 *  salt and its length,
Packit 94f725
 *  secret and its length,
Packit 94f725
 *  associated data and its length,
Packit 94f725
 *  number of passes, amount of used memory (in KBytes, can be rounded up a bit)
Packit 94f725
 *  number of parallel threads that will be run.
Packit 94f725
 * All the parameters above affect the output hash value.
Packit 94f725
 * Additionally, two function pointers can be provided to allocate and
Packit 94f725
 * deallocate the memory (if NULL, memory will be allocated internally).
Packit 94f725
 * Also, three flags indicate whether to erase password, secret as soon as they
Packit 94f725
 * are pre-hashed (and thus not needed anymore), and the entire memory
Packit 94f725
 *****
Packit 94f725
 * Simplest situation: you have output array out[8], password is stored in
Packit 94f725
 * pwd[32], salt is stored in salt[16], you do not have keys nor associated
Packit 94f725
 * data. You need to spend 1 GB of RAM and you run 5 passes of Argon2d with
Packit 94f725
 * 4 parallel lanes.
Packit 94f725
 * You want to erase the password, but you're OK with last pass not being
Packit 94f725
 * erased. You want to use the default memory allocator.
Packit 94f725
 * Then you initialize:
Packit 94f725
 Argon2_Context(out,8,pwd,32,salt,16,NULL,0,NULL,0,5,1<<20,4,4,NULL,NULL,true,false,false,false)
Packit 94f725
 */
Packit 94f725
typedef struct Argon2_Context {
Packit 94f725
    uint8_t *out;    /* output array */
Packit 94f725
    uint32_t outlen; /* digest length */
Packit 94f725
Packit 94f725
    uint8_t *pwd;    /* password array */
Packit 94f725
    uint32_t pwdlen; /* password length */
Packit 94f725
Packit 94f725
    uint8_t *salt;    /* salt array */
Packit 94f725
    uint32_t saltlen; /* salt length */
Packit 94f725
Packit 94f725
    uint8_t *secret;    /* key array */
Packit 94f725
    uint32_t secretlen; /* key length */
Packit 94f725
Packit 94f725
    uint8_t *ad;    /* associated data array */
Packit 94f725
    uint32_t adlen; /* associated data length */
Packit 94f725
Packit 94f725
    uint32_t t_cost;  /* number of passes */
Packit 94f725
    uint32_t m_cost;  /* amount of memory requested (KB) */
Packit 94f725
    uint32_t lanes;   /* number of lanes */
Packit 94f725
    uint32_t threads; /* maximum number of threads */
Packit 94f725
Packit 94f725
    uint32_t version; /* version number */
Packit 94f725
Packit 94f725
    allocate_fptr allocate_cbk; /* pointer to memory allocator */
Packit 94f725
    deallocate_fptr free_cbk;   /* pointer to memory deallocator */
Packit 94f725
Packit 94f725
    uint32_t flags; /* array of bool options */
Packit 94f725
} argon2_context;
Packit 94f725
Packit 94f725
/* Argon2 primitive type */
Packit 94f725
typedef enum Argon2_type {
Packit 94f725
  Argon2_d = 0,
Packit 94f725
  Argon2_i = 1,
Packit 94f725
  Argon2_id = 2
Packit 94f725
} argon2_type;
Packit 94f725
Packit 94f725
/* Version of the algorithm */
Packit 94f725
typedef enum Argon2_version {
Packit 94f725
    ARGON2_VERSION_10 = 0x10,
Packit 94f725
    ARGON2_VERSION_13 = 0x13,
Packit 94f725
    ARGON2_VERSION_NUMBER = ARGON2_VERSION_13
Packit 94f725
} argon2_version;
Packit 94f725
Packit 94f725
/*
Packit 94f725
 * Function that gives the string representation of an argon2_type.
Packit 94f725
 * @param type The argon2_type that we want the string for
Packit 94f725
 * @param uppercase Whether the string should have the first letter uppercase
Packit 94f725
 * @return NULL if invalid type, otherwise the string representation.
Packit 94f725
 */
Packit 94f725
ARGON2_PUBLIC const char *argon2_type2string(argon2_type type, int uppercase);
Packit 94f725
Packit 94f725
/*
Packit 94f725
 * Function that performs memory-hard hashing with certain degree of parallelism
Packit 94f725
 * @param  context  Pointer to the Argon2 internal structure
Packit 94f725
 * @return Error code if smth is wrong, ARGON2_OK otherwise
Packit 94f725
 */
Packit 94f725
ARGON2_PUBLIC int argon2_ctx(argon2_context *context, argon2_type type);
Packit 94f725
Packit 94f725
/**
Packit 94f725
 * Hashes a password with Argon2i, producing an encoded hash
Packit 94f725
 * @param t_cost Number of iterations
Packit 94f725
 * @param m_cost Sets memory usage to m_cost kibibytes
Packit 94f725
 * @param parallelism Number of threads and compute lanes
Packit 94f725
 * @param pwd Pointer to password
Packit 94f725
 * @param pwdlen Password size in bytes
Packit 94f725
 * @param salt Pointer to salt
Packit 94f725
 * @param saltlen Salt size in bytes
Packit 94f725
 * @param hashlen Desired length of the hash in bytes
Packit 94f725
 * @param encoded Buffer where to write the encoded hash
Packit 94f725
 * @param encodedlen Size of the buffer (thus max size of the encoded hash)
Packit 94f725
 * @pre   Different parallelism levels will give different results
Packit 94f725
 * @pre   Returns ARGON2_OK if successful
Packit 94f725
 */
Packit 94f725
ARGON2_PUBLIC int argon2i_hash_encoded(const uint32_t t_cost,
Packit 94f725
                                       const uint32_t m_cost,
Packit 94f725
                                       const uint32_t parallelism,
Packit 94f725
                                       const void *pwd, const size_t pwdlen,
Packit 94f725
                                       const void *salt, const size_t saltlen,
Packit 94f725
                                       const size_t hashlen, char *encoded,
Packit 94f725
                                       const size_t encodedlen);
Packit 94f725
Packit 94f725
/**
Packit 94f725
 * Hashes a password with Argon2i, producing a raw hash at @hash
Packit 94f725
 * @param t_cost Number of iterations
Packit 94f725
 * @param m_cost Sets memory usage to m_cost kibibytes
Packit 94f725
 * @param parallelism Number of threads and compute lanes
Packit 94f725
 * @param pwd Pointer to password
Packit 94f725
 * @param pwdlen Password size in bytes
Packit 94f725
 * @param salt Pointer to salt
Packit 94f725
 * @param saltlen Salt size in bytes
Packit 94f725
 * @param hash Buffer where to write the raw hash - updated by the function
Packit 94f725
 * @param hashlen Desired length of the hash in bytes
Packit 94f725
 * @pre   Different parallelism levels will give different results
Packit 94f725
 * @pre   Returns ARGON2_OK if successful
Packit 94f725
 */
Packit 94f725
ARGON2_PUBLIC int argon2i_hash_raw(const uint32_t t_cost, const uint32_t m_cost,
Packit 94f725
                                   const uint32_t parallelism, const void *pwd,
Packit 94f725
                                   const size_t pwdlen, const void *salt,
Packit 94f725
                                   const size_t saltlen, void *hash,
Packit 94f725
                                   const size_t hashlen);
Packit 94f725
Packit 94f725
ARGON2_PUBLIC int argon2d_hash_encoded(const uint32_t t_cost,
Packit 94f725
                                       const uint32_t m_cost,
Packit 94f725
                                       const uint32_t parallelism,
Packit 94f725
                                       const void *pwd, const size_t pwdlen,
Packit 94f725
                                       const void *salt, const size_t saltlen,
Packit 94f725
                                       const size_t hashlen, char *encoded,
Packit 94f725
                                       const size_t encodedlen);
Packit 94f725
Packit 94f725
ARGON2_PUBLIC int argon2d_hash_raw(const uint32_t t_cost, const uint32_t m_cost,
Packit 94f725
                                   const uint32_t parallelism, const void *pwd,
Packit 94f725
                                   const size_t pwdlen, const void *salt,
Packit 94f725
                                   const size_t saltlen, void *hash,
Packit 94f725
                                   const size_t hashlen);
Packit 94f725
Packit 94f725
ARGON2_PUBLIC int argon2id_hash_encoded(const uint32_t t_cost,
Packit 94f725
                                        const uint32_t m_cost,
Packit 94f725
                                        const uint32_t parallelism,
Packit 94f725
                                        const void *pwd, const size_t pwdlen,
Packit 94f725
                                        const void *salt, const size_t saltlen,
Packit 94f725
                                        const size_t hashlen, char *encoded,
Packit 94f725
                                        const size_t encodedlen);
Packit 94f725
Packit 94f725
ARGON2_PUBLIC int argon2id_hash_raw(const uint32_t t_cost,
Packit 94f725
                                    const uint32_t m_cost,
Packit 94f725
                                    const uint32_t parallelism, const void *pwd,
Packit 94f725
                                    const size_t pwdlen, const void *salt,
Packit 94f725
                                    const size_t saltlen, void *hash,
Packit 94f725
                                    const size_t hashlen);
Packit 94f725
Packit 94f725
/* generic function underlying the above ones */
Packit 94f725
ARGON2_PUBLIC int argon2_hash(const uint32_t t_cost, const uint32_t m_cost,
Packit 94f725
                              const uint32_t parallelism, const void *pwd,
Packit 94f725
                              const size_t pwdlen, const void *salt,
Packit 94f725
                              const size_t saltlen, void *hash,
Packit 94f725
                              const size_t hashlen, char *encoded,
Packit 94f725
                              const size_t encodedlen, argon2_type type,
Packit 94f725
                              const uint32_t version);
Packit 94f725
Packit 94f725
/**
Packit 94f725
 * Verifies a password against an encoded string
Packit 94f725
 * Encoded string is restricted as in validate_inputs()
Packit 94f725
 * @param encoded String encoding parameters, salt, hash
Packit 94f725
 * @param pwd Pointer to password
Packit 94f725
 * @pre   Returns ARGON2_OK if successful
Packit 94f725
 */
Packit 94f725
ARGON2_PUBLIC int argon2i_verify(const char *encoded, const void *pwd,
Packit 94f725
                                 const size_t pwdlen);
Packit 94f725
Packit 94f725
ARGON2_PUBLIC int argon2d_verify(const char *encoded, const void *pwd,
Packit 94f725
                                 const size_t pwdlen);
Packit 94f725
Packit 94f725
ARGON2_PUBLIC int argon2id_verify(const char *encoded, const void *pwd,
Packit 94f725
                                  const size_t pwdlen);
Packit 94f725
Packit 94f725
/* generic function underlying the above ones */
Packit 94f725
ARGON2_PUBLIC int argon2_verify(const char *encoded, const void *pwd,
Packit 94f725
                                const size_t pwdlen, argon2_type type);
Packit 94f725
Packit 94f725
/**
Packit 94f725
 * Argon2d: Version of Argon2 that picks memory blocks depending
Packit 94f725
 * on the password and salt. Only for side-channel-free
Packit 94f725
 * environment!!
Packit 94f725
 *****
Packit 94f725
 * @param  context  Pointer to current Argon2 context
Packit 94f725
 * @return  Zero if successful, a non zero error code otherwise
Packit 94f725
 */
Packit 94f725
ARGON2_PUBLIC int argon2d_ctx(argon2_context *context);
Packit 94f725
Packit 94f725
/**
Packit 94f725
 * Argon2i: Version of Argon2 that picks memory blocks
Packit 94f725
 * independent on the password and salt. Good for side-channels,
Packit 94f725
 * but worse w.r.t. tradeoff attacks if only one pass is used.
Packit 94f725
 *****
Packit 94f725
 * @param  context  Pointer to current Argon2 context
Packit 94f725
 * @return  Zero if successful, a non zero error code otherwise
Packit 94f725
 */
Packit 94f725
ARGON2_PUBLIC int argon2i_ctx(argon2_context *context);
Packit 94f725
Packit 94f725
/**
Packit 94f725
 * Argon2id: Version of Argon2 where the first half-pass over memory is
Packit 94f725
 * password-independent, the rest are password-dependent (on the password and
Packit 94f725
 * salt). OK against side channels (they reduce to 1/2-pass Argon2i), and
Packit 94f725
 * better with w.r.t. tradeoff attacks (similar to Argon2d).
Packit 94f725
 *****
Packit 94f725
 * @param  context  Pointer to current Argon2 context
Packit 94f725
 * @return  Zero if successful, a non zero error code otherwise
Packit 94f725
 */
Packit 94f725
ARGON2_PUBLIC int argon2id_ctx(argon2_context *context);
Packit 94f725
Packit 94f725
/**
Packit 94f725
 * Verify if a given password is correct for Argon2d hashing
Packit 94f725
 * @param  context  Pointer to current Argon2 context
Packit 94f725
 * @param  hash  The password hash to verify. The length of the hash is
Packit 94f725
 * specified by the context outlen member
Packit 94f725
 * @return  Zero if successful, a non zero error code otherwise
Packit 94f725
 */
Packit 94f725
ARGON2_PUBLIC int argon2d_verify_ctx(argon2_context *context, const char *hash);
Packit 94f725
Packit 94f725
/**
Packit 94f725
 * Verify if a given password is correct for Argon2i hashing
Packit 94f725
 * @param  context  Pointer to current Argon2 context
Packit 94f725
 * @param  hash  The password hash to verify. The length of the hash is
Packit 94f725
 * specified by the context outlen member
Packit 94f725
 * @return  Zero if successful, a non zero error code otherwise
Packit 94f725
 */
Packit 94f725
ARGON2_PUBLIC int argon2i_verify_ctx(argon2_context *context, const char *hash);
Packit 94f725
Packit 94f725
/**
Packit 94f725
 * Verify if a given password is correct for Argon2id hashing
Packit 94f725
 * @param  context  Pointer to current Argon2 context
Packit 94f725
 * @param  hash  The password hash to verify. The length of the hash is
Packit 94f725
 * specified by the context outlen member
Packit 94f725
 * @return  Zero if successful, a non zero error code otherwise
Packit 94f725
 */
Packit 94f725
ARGON2_PUBLIC int argon2id_verify_ctx(argon2_context *context,
Packit 94f725
                                      const char *hash);
Packit 94f725
Packit 94f725
/* generic function underlying the above ones */
Packit 94f725
ARGON2_PUBLIC int argon2_verify_ctx(argon2_context *context, const char *hash,
Packit 94f725
                                    argon2_type type);
Packit 94f725
Packit 94f725
/**
Packit 94f725
 * Get the associated error message for given error code
Packit 94f725
 * @return  The error message associated with the given error code
Packit 94f725
 */
Packit 94f725
ARGON2_PUBLIC const char *argon2_error_message(int error_code);
Packit 94f725
Packit 94f725
/**
Packit 94f725
 * Returns the encoded hash length for the given input parameters
Packit 94f725
 * @param t_cost  Number of iterations
Packit 94f725
 * @param m_cost  Memory usage in kibibytes
Packit 94f725
 * @param parallelism  Number of threads; used to compute lanes
Packit 94f725
 * @param saltlen  Salt size in bytes
Packit 94f725
 * @param hashlen  Hash size in bytes
Packit 94f725
 * @param type The argon2_type that we want the encoded length for
Packit 94f725
 * @return  The encoded hash length in bytes
Packit 94f725
 */
Packit 94f725
ARGON2_PUBLIC size_t argon2_encodedlen(uint32_t t_cost, uint32_t m_cost,
Packit 94f725
                                       uint32_t parallelism, uint32_t saltlen,
Packit 94f725
                                       uint32_t hashlen, argon2_type type);
Packit 94f725
Packit 94f725
#if defined(__cplusplus)
Packit 94f725
}
Packit 94f725
#endif
Packit 94f725
Packit 94f725
#endif