This file is indexed.

/usr/include/dacs/argon2.h is in libdacs-dev 1.4.38a-2build1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
/*
 * Copyright (c) 2016
 * Distributed Systems Software.  All rights reserved.
 * See the file LICENSE for redistribution information.
 *
 * $Id: $
 */

/*
 * Adapted from the Argon2 distribution:
 *   https://github.com/p-h-c/phc-winner-argon2
 * 2-Jun-2016 (Commit d7266c4)
 * License: CC0 (Creative Commons)
 */

#ifndef PORTABLE_ARGON2_H
#define PORTABLE_ARGON2_H

#include "blake2.h"
#include "blake2-impl.h"

#if defined(__cplusplus)
extern "C" {
#endif

#define ARGON2_MIN(a, b) ((a) < (b) ? (a) : (b))

enum {
  /* Minimum and maximum number of lanes (degree of parallelism). */
  ARGON2_MIN_LANES  = UINT32_C(1),
  ARGON2_MAX_LANES  = UINT32_C(0xFFFFFF),

  /* Minimum and maximum number of threads. */
  ARGON2_MIN_THREADS = UINT32_C(1),
  ARGON2_MAX_THREADS = UINT32_C(0xFFFFFF),

  /* Number of synchronization points between lanes per pass. */
  ARGON2_SYNC_POINTS = UINT32_C(4),

  /* Minimum and maximum number of memory blocks (each of BLOCK_SIZE bytes). */
  ARGON2_MIN_MEMORY = (2 * ARGON2_SYNC_POINTS), /* 2 blocks per slice */

  /* Minimum and maximum digest size in bytes. */
  ARGON2_MIN_OUTLEN = UINT32_C(4),
  ARGON2_MAX_OUTLEN = UINT32_C(0xFFFFFFFF),

  /* Minimum and maximum number of passes. */
  ARGON2_MIN_TIME = UINT32_C(1),
  ARGON2_MAX_TIME = UINT32_C(0xFFFFFFFF),

  /* Minimum and maximum password length in bytes. */
  ARGON2_MIN_PWD_LENGTH = UINT32_C(0),
  ARGON2_MAX_PWD_LENGTH = UINT32_C(0xFFFFFFFF),

  /* Minimum and maximum associated data length in bytes. */
  ARGON2_MIN_AD_LENGTH = UINT32_C(0),
  ARGON2_MAX_AD_LENGTH = UINT32_C(0xFFFFFFFF),

  /* Minimum and maximum salt length in bytes. */
  ARGON2_MIN_SALT_LENGTH = UINT32_C(8),
  ARGON2_MAX_SALT_LENGTH = UINT32_C(0xFFFFFFFF),

  /* Minimum and maximum key length in bytes. */
  ARGON2_MIN_SECRET = UINT32_C(0),
  ARGON2_MAX_SECRET = UINT32_C(0xFFFFFFFF)
};

/* Max memory size is addressing-space/2, topping at 2^32 blocks (4 TB). */
#define ARGON2_MAX_MEMORY_BITS										\
  ARGON2_MIN(UINT32_C(32), (sizeof(void *) * CHAR_BIT - 10 - 1))

#define ARGON2_MAX_MEMORY												\
  ARGON2_MIN(UINT32_C(0xFFFFFFFF), UINT64_C(1) << ARGON2_MAX_MEMORY_BITS)

enum  {
  ARGON2_FLAG_CLEAR_PASSWORD = (UINT32_C(1) << 0),
  ARGON2_FLAG_CLEAR_SECRET   = (UINT32_C(1) << 1),
  ARGON2_FLAG_CLEAR_MEMORY   = (UINT32_C(1) << 2),
  ARGON2_DEFAULT_FLAGS       = (ARGON2_FLAG_CLEAR_MEMORY)
};

typedef enum Argon2_ErrorCodes {
  ARGON2_OK = 0,
  ARGON2_OUTPUT_PTR_NULL          = -1,
  ARGON2_OUTPUT_TOO_SHORT         = -2,
  ARGON2_OUTPUT_TOO_LONG          = -3,
  ARGON2_PWD_TOO_SHORT            = -4,
  ARGON2_PWD_TOO_LONG             = -5,
  ARGON2_SALT_TOO_SHORT           = -6,
  ARGON2_SALT_TOO_LONG            = -7,
  ARGON2_AD_TOO_SHORT             = -8,
  ARGON2_AD_TOO_LONG              = -9,
  ARGON2_SECRET_TOO_SHORT         = -10,
  ARGON2_SECRET_TOO_LONG          = -11,
  ARGON2_TIME_TOO_SMALL           = -12,
  ARGON2_TIME_TOO_LARGE           = -13,
  ARGON2_MEMORY_TOO_LITTLE        = -14,
  ARGON2_MEMORY_TOO_MUCH          = -15,
  ARGON2_LANES_TOO_FEW            = -16,
  ARGON2_LANES_TOO_MANY           = -17,
  ARGON2_PWD_PTR_MISMATCH         = -18,	/* NULL ptr with non-zero length */
  ARGON2_SALT_PTR_MISMATCH        = -19,	/* NULL ptr with non-zero length */
  ARGON2_SECRET_PTR_MISMATCH      = -20,	/* NULL ptr with non-zero length */
  ARGON2_AD_PTR_MISMATCH          = -21,	/* NULL ptr with non-zero length */
  ARGON2_MEMORY_ALLOCATION_ERROR  = -22,
  ARGON2_FREE_MEMORY_CBK_NULL     = -23,
  ARGON2_ALLOCATE_MEMORY_CBK_NULL = -24,
  ARGON2_INCORRECT_PARAMETER      = -25,
  ARGON2_INCORRECT_TYPE           = -26,
  ARGON2_OUT_PTR_MISMATCH         = -27,
  ARGON2_THREADS_TOO_FEW          = -28,
  ARGON2_THREADS_TOO_MANY         = -29,
  ARGON2_MISSING_ARGS             = -30,
  ARGON2_ENCODING_FAIL            = -31,
  ARGON2_DECODING_FAIL            = -32,
  ARGON2_THREAD_FAIL              = -33,
  ARGON2_DECODING_LENGTH_FAIL     = -34,
  ARGON2_VERIFY_MISMATCH          = -35
} Argon2_error_codes;

/* Memory allocator types --- for external allocation */
typedef int (*Allocate_fptr)(uint8_t **memory, size_t bytes_to_allocate);
typedef void (*Deallocate_fptr)(uint8_t *memory, size_t bytes_to_allocate);

/* Argon2 primitive type. */
typedef enum Argon2_type {
  Argon2_d = 0,
  Argon2_i = 1
} Argon2_type;

/*
 * Context: structure to hold Argon2 inputs:
 *  output array and its length,
 *  password and its length,
 *  salt and its length,
 *  secret and its length,
 *  associated data and its length,
 *  number of passes, amount of used memory (in KBytes, can be rounded up a bit)
 *  number of parallel threads that will be run.
 * All the parameters above affect the output hash value.
 * Additionally, two function pointers can be provided to allocate and
 * deallocate the memory (if NULL, memory will be allocated internally).
 * Also, three flags indicate whether to erase password, secret as soon as they
 * are pre-hashed (and thus not needed anymore), and the entire memory
 *
 * Simplest situation: you have output array out[8], password is stored in
 * pwd[32], salt is stored in salt[16], you do not have keys nor associated
 * data. You need to spend 1 GB of RAM and you run 5 passes of Argon2d with
 * 4 parallel lanes.
 * You want to erase the password, but you're OK with last pass not being
 * erased. You want to use the default memory allocator.
 * Then you initialize:
 * Argon2_Context(out,8,pwd,32,salt,16,NULL,0,NULL,0,5,1<<20,4,4,NULL,NULL,
 *   true,false,false,false)
 */
typedef struct Argon2_Context {
  uint8_t *out;			/* Output buffer */
  uint32_t outlen;		/* T: digest length */

  uint8_t *pwd;			/* P: password buffer */
  uint32_t pwdlen;		/* password length */

  uint8_t *salt;		/* S: salt array */
  uint32_t saltlen;		/* salt length */

  uint8_t *secret;		/* K: key array */
  uint32_t secretlen;	/* key length */

  uint8_t *ad;			/* X: associated data array */
  uint32_t adlen;		/* associated data length */

  uint32_t t_cost;		/* t: number of passes */
  uint32_t m_cost;		/* m: amount of memory requested (KB) */
  uint32_t lanes;		/* p: number of lanes */
  uint32_t threads;		/* maximum number of threads */
 
  uint32_t version;		/* v: algorithm version number */

  Allocate_fptr allocate_cbk; /* pointer to memory allocator */
  Deallocate_fptr free_cbk;   /* pointer to memory deallocator */

  uint32_t flags; /* array of bool options */
} Argon2_context;

/* Version of the algorithm. */
typedef enum Argon2_version {
  ARGON2_VERSION_10 = 0x10,
  ARGON2_VERSION_13 = 0x13,
  ARGON2_VERSION_NUMBER = ARGON2_VERSION_13
} Argon2_version;

/*
 * Function that performs memory-hard hashing with certain degree of parallelism
 * @param  context  Pointer to the Argon2 internal structure
 * @return Error code if smth is wrong, ARGON2_OK otherwise
 */
extern int argon2_ctx(Argon2_context *context, Argon2_type type);

/**
 * Hashes a password with Argon2i, producing an encoded hash
 * @param t_cost Number of iterations
 * @param m_cost Sets memory usage to m_cost kibibytes
 * @param parallelism Number of threads and compute lanes
 * @param pwd Pointer to password
 * @param pwdlen Password size in bytes
 * @param salt Pointer to salt
 * @param saltlen Salt size in bytes
 * @param hashlen Desired length of the hash in bytes
 * @param encoded Buffer where to write the encoded hash
 * @param encodedlen Size of the buffer (thus max size of the encoded hash)
 * @pre   Different parallelism levels will give different results
 * @pre   Returns ARGON2_OK if successful
 */
extern int argon2i_hash_encoded(const uint32_t t_cost,
								const uint32_t m_cost,
								const uint32_t parallelism,
								const void *pwd, const size_t pwdlen,
								const void *salt, const size_t saltlen,
								const size_t hashlen, char *encoded,
								const size_t encodedlen);

/*
 * Hashes a password with Argon2i, producing a raw hash by allocating memory at
 * @hash
 * @param t_cost Number of iterations
 * @param m_cost Sets memory usage to m_cost kibibytes
 * @param parallelism Number of threads and compute lanes
 * @param pwd Pointer to password
 * @param pwdlen Password size in bytes
 * @param salt Pointer to salt
 * @param saltlen Salt size in bytes
 * @param hash Buffer where to write the raw hash - updated by the function
 * @param hashlen Desired length of the hash in bytes
 * @pre   Different parallelism levels will give different results
 * @pre   Returns ARGON2_OK if successful
 */
extern int argon2i_hash_raw(const uint32_t t_cost, const uint32_t m_cost,
							const uint32_t parallelism, const void *pwd,
							const size_t pwdlen, const void *salt,
							const size_t saltlen, void *hash,
							const size_t hashlen);

extern int argon2d_hash_encoded(const uint32_t t_cost,
								const uint32_t m_cost,
								const uint32_t parallelism,
								const void *pwd, const size_t pwdlen,
								const void *salt, const size_t saltlen,
								const size_t hashlen, char *encoded,
								const size_t encodedlen);

extern int argon2d_hash_raw(const uint32_t t_cost, const uint32_t m_cost,
							const uint32_t parallelism, const void *pwd,
							const size_t pwdlen, const void *salt,
							const size_t saltlen, void *hash,
							const size_t hashlen);

/* Generic function underlying the above ones. */
extern int argon2_hash(const uint32_t t_cost, const uint32_t m_cost,
					   const uint32_t parallelism,
					   const void *pwd, const size_t pwdlen,
					   const void *salt, const size_t saltlen,
					   const void *secret, const size_t secretlen,
					   const void *ad, const size_t adlen,
					   void *hash, const size_t hashlen, char *encoded,
					   const size_t encodedlen, Argon2_type type,
					   const uint32_t version);

/*
 * Verifies a password against an encoded string
 * Encoded string is restricted as in validate_inputs()
 * @param encoded String encoding parameters, salt, hash
 * @param pwd Pointer to password
 * @pre   Returns ARGON2_OK if successful
 */
extern int argon2i_verify(const char *encoded, const void *pwd, size_t pwdlen,
						  const void *secret, size_t secretlen);

extern int argon2d_verify(const char *encoded, const void *pwd, size_t pwdlen,
						  const void *secret, size_t secretlen);

/* Generic function underlying the above ones. */
extern int argon2_verify(const char *encoded, const void *pwd, size_t pwdlen,
						 const void *secret, size_t secretlen, Argon2_type type);

/*
 * Argon2d: Version of Argon2 that picks memory blocks depending
 * on the password and salt. Only for side-channel-free
 * environment!!
 *****
 * @param  context  Pointer to current Argon2 context
 * @return  Zero if successful, a non zero error code otherwise
 */
extern int argon2d_ctx(Argon2_context *context);

/*
 * Argon2i: Version of Argon2 that picks memory blocks
 * independent on the password and salt. Good for side-channels,
 * but worse w.r.t. tradeoff attacks if only one pass is used.
 *****
 * @param  context  Pointer to current Argon2 context
 * @return  Zero if successful, a non zero error code otherwise
 */
extern int argon2i_ctx(Argon2_context *context);

/*
 * Verify if a given password is correct for Argon2d hashing
 * @param  context  Pointer to current Argon2 context
 * @param  hash  The password hash to verify. The length of the hash is
 * specified by the context outlen member
 * @return  Zero if successful, a non zero error code otherwise
 */
extern int argon2d_verify_ctx(Argon2_context *context, const char *hash);

/*
 * Verify if a given password is correct for Argon2i hashing
 * @param  context  Pointer to current Argon2 context
 * @param  hash  The password hash to verify. The length of the hash is
 * specified by the context outlen member
 * @return  Zero if successful, a non zero error code otherwise
 */
extern int argon2i_verify_ctx(Argon2_context *context, const char *hash);

/* Generic function underlying the above ones. */
extern int argon2_verify_ctx(Argon2_context *context, const char *hash,
							 Argon2_type type);

/*
 * Get the associated error message for given error code
 * @return  The error message associated with the given error code
 */
extern const char *argon2_error_message(int error_code);

extern int argon2(uint8_t *out, uint32_t outlen,
				  unsigned char *pwd, size_t pwdlen,
				  unsigned char *salt, size_t saltlen,
				  unsigned char *secret, size_t secretlen,
				  unsigned char *ad, size_t adlen,
				  uint32_t t_cost, uint32_t m_cost, uint32_t lanes,
				  uint32_t threads, Argon2_type type, char **encodedp);

extern int do_argon2_tests(void);

#if defined(__cplusplus)
}
#endif

#endif