aboutsummaryrefslogtreecommitdiff
path: root/src/lib/defs/dh_sizes.h
blob: a2ffbc51c206b33b92bce564d612f7c70192d09e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* Copyright (c) 2001, Matej Pfajfar.
 * Copyright (c) 2001-2004, Roger Dingledine.
 * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
 * Copyright (c) 2007-2019, The Tor Project, Inc. */
/* See LICENSE for licensing information */

/**
 * \file dh_sizes.h

 * \brief Definitions for sizes of Diffie-Hellman groups elements in Z_p.
 *
 * Tor uses these definitions throughout its codebase, even in parts that
 * don't actually do any Diffie-Hellman calculations.
 **/

#ifndef TOR_DH_SIZES_H
#define TOR_DH_SIZES_H

/** Length of our legacy DH keys. */
#define DH1024_KEY_LEN (1024/8)

#endif