mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-13 14:43:46 +01:00
25ccfff86a
I am calling the crypto library "crypt_ops", since I want higher-level crypto things to be separated from lower-level ones. This library will hold only the low-level ones, once we have it refactored.
29 lines
984 B
C
29 lines
984 B
C
/* Copyright (c) 2001, Matej Pfajfar.
|
|
* Copyright (c) 2001-2004, Roger Dingledine.
|
|
* Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
|
|
* Copyright (c) 2007-2018, The Tor Project, Inc. */
|
|
/* See LICENSE for licensing information */
|
|
|
|
/**
|
|
* \file crypto_hkdf.h
|
|
*
|
|
* \brief Headers for crypto_hkdf.h
|
|
**/
|
|
|
|
#ifndef TOR_CRYPTO_HKDF_H
|
|
#define TOR_CRYPTO_HKDF_H
|
|
|
|
#include "common/util.h"
|
|
|
|
int crypto_expand_key_material_TAP(const uint8_t *key_in,
|
|
size_t key_in_len,
|
|
uint8_t *key_out, size_t key_out_len);
|
|
int crypto_expand_key_material_rfc5869_sha256(
|
|
const uint8_t *key_in, size_t key_in_len,
|
|
const uint8_t *salt_in, size_t salt_in_len,
|
|
const uint8_t *info_in, size_t info_in_len,
|
|
uint8_t *key_out, size_t key_out_len);
|
|
|
|
#endif /* !defined(TOR_CRYPTO_HKDF_H) */
|
|
|