abcrypt_params(3)

NAME

abcrypt_params - API type

SYNOPSIS

#include <abcrypt.h>

typedef struct abcrypt_params {
  uint32_t memory_cost;
  uint32_t time_cost;
  uint32_t parallelism;
} abcrypt_params;

DESCRIPTION

This type represents the Argon2 parameters used for the encrypted data.

Fields

memory_cost

The memory size in KiB.

time_cost

The number of iterations.

parallelism

The degree of parallelism.

VERSIONS

This type was added in version 0.1.0.

Copyright © 2022-2024 Shun Sakai

This manual page is distributed under the terms of the Creative Commons Attribution 4.0 International Public License.

SEE ALSO

abcrypt_params_free(3), abcrypt_params_new(3), abcrypt_params_read(3)