oqs-sys 0.11.0+liboqs-0.13.0

Bindings to liboqs
Documentation
/* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * SPDX-License-Identifier: Apache-2.0"
 *
 * Written by Nir Drucker, Shay Gueron and Dusan Kostic,
 * AWS Cryptographic Algorithms Group.
 */

#pragma once

#include "defs.h"
#include "error.h"
#include "types.h"
#include <oqs/sha3.h>

typedef struct shake256_prf_state_s {
  OQS_SHA3_shake256_inc_ctx s;
  uint8_t  buffer[OQS_SHA3_SHAKE256_RATE];
  size_t   curr_pos_in_buffer;
  size_t   rem_invocations;
} shake256_prf_state_t;

typedef shake256_prf_state_t prf_state_t;

#define MAX_PRF_INVOCATION (MASK(32))

// Methods for interacting with the PRFs.
ret_t init_prf_state(OUT prf_state_t *s, IN size_t max_num_invocations,
                     IN const seed_t *seed);

ret_t get_prf_output(OUT uint8_t *out, IN OUT prf_state_t *s, IN size_t len);

void clean_prf_state(IN OUT prf_state_t *s);