mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-11 21:53:48 +01:00
29 lines
750 B
C
29 lines
750 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_init.h
|
||
|
*
|
||
|
* \brief Headers for crypto_init.c
|
||
|
**/
|
||
|
|
||
|
#ifndef TOR_CRYPTO_INIT_H
|
||
|
#define TOR_CRYPTO_INIT_H
|
||
|
|
||
|
#include "orconfig.h"
|
||
|
#include "lib/cc/compat_compiler.h"
|
||
|
|
||
|
int crypto_init_siphash_key(void);
|
||
|
int crypto_early_init(void) ATTR_WUR;
|
||
|
int crypto_global_init(int hardwareAccel,
|
||
|
const char *accelName,
|
||
|
const char *accelPath) ATTR_WUR;
|
||
|
|
||
|
void crypto_thread_cleanup(void);
|
||
|
int crypto_global_cleanup(void);
|
||
|
|
||
|
#endif /* !defined(TOR_CRYPTO_H) */
|