Tor 0.4.9.0-alpha-dev
Data Structures | Macros | Functions
crypto_digest_openssl.c File Reference

Block of functions related with digest and xof utilities and operations (OpenSSL specific implementations). More...

#include "lib/container/smartlist.h"
#include "lib/crypt_ops/crypto_digest.h"
#include "lib/crypt_ops/crypto_util.h"
#include "lib/log/log.h"
#include "lib/log/util_bug.h"
#include "keccak-tiny/keccak-tiny.h"
#include <stdlib.h>
#include <string.h>
#include "lib/arch/bytes.h"
#include "lib/crypt_ops/crypto_openssl_mgt.h"
#include <openssl/hmac.h>
#include <openssl/sha.h>

Go to the source code of this file.

Data Structures

struct  crypto_digest_t
 

Macros

#define STRUCT_FIELD_SIZE(st, f)   (sizeof( ((st*)0)->f ))
 
#define END_OF_FIELD(f)
 

Functions

int crypto_digest (char *digest, const char *m, size_t len)
 
int crypto_digest256 (char *digest, const char *m, size_t len, digest_algorithm_t algorithm)
 
int crypto_digest512 (char *digest, const char *m, size_t len, digest_algorithm_t algorithm)
 
static size_t crypto_digest_alloc_bytes (digest_algorithm_t alg)
 
static crypto_digest_tcrypto_digest_new_internal (digest_algorithm_t algorithm)
 
crypto_digest_tcrypto_digest_new (void)
 
crypto_digest_tcrypto_digest256_new (digest_algorithm_t algorithm)
 
crypto_digest_tcrypto_digest512_new (digest_algorithm_t algorithm)
 
void crypto_digest_free_ (crypto_digest_t *digest)
 
void crypto_digest_add_bytes (crypto_digest_t *digest, const char *data, size_t len)
 
void crypto_digest_get_digest (crypto_digest_t *digest, char *out, size_t out_len)
 
crypto_digest_tcrypto_digest_dup (const crypto_digest_t *digest)
 
void crypto_digest_checkpoint (crypto_digest_checkpoint_t *checkpoint, const crypto_digest_t *digest)
 
void crypto_digest_restore (crypto_digest_t *digest, const crypto_digest_checkpoint_t *checkpoint)
 
void crypto_digest_assign (crypto_digest_t *into, const crypto_digest_t *from)
 
void crypto_digest_smartlist (char *digest_out, size_t len_out, const smartlist_t *lst, const char *append, digest_algorithm_t alg)
 
void crypto_digest_smartlist_prefix (char *digest_out, size_t len_out, const char *prepend, const smartlist_t *lst, const char *append, digest_algorithm_t alg)
 
void crypto_hmac_sha256 (char *hmac_out, const char *key, size_t key_len, const char *msg, size_t msg_len)
 

Detailed Description

Block of functions related with digest and xof utilities and operations (OpenSSL specific implementations).

Definition in file crypto_digest_openssl.c.

Macro Definition Documentation

◆ END_OF_FIELD

#define END_OF_FIELD (   f)
Value:
(offsetof(crypto_digest_t, f) + \
STRUCT_FIELD_SIZE(crypto_digest_t, f))

Function Documentation

◆ crypto_digest()

int crypto_digest ( char *  digest,
const char *  m,
size_t  len 
)

Compute the SHA1 digest of the len bytes on data stored in m. Write the DIGEST_LEN byte result into digest. Return 0 on success, -1 on failure.

Definition at line 42 of file crypto_digest_openssl.c.

Referenced by crypto_common_digests(), crypto_pk_get_hashed_fingerprint(), crypto_pk_private_sign_digest(), and crypto_pk_public_checksig_digest().

◆ crypto_digest256()

int crypto_digest256 ( char *  digest,
const char *  m,
size_t  len,
digest_algorithm_t  algorithm 
)

Compute a 256-bit digest of len bytes in data stored in m, using the algorithm algorithm. Write the DIGEST_LEN256-byte result into digest. Return 0 on success, -1 on failure.

Definition at line 56 of file crypto_digest_openssl.c.

Referenced by build_hs_checksum(), cdm_labels_prepend_sha3(), consensus_compute_digest(), and router_get_networkstatus_v3_sha3_as_signed().

◆ crypto_digest256_new()

crypto_digest_t * crypto_digest256_new ( digest_algorithm_t  algorithm)

Allocate and return a new digest object to compute 256-bit digests using algorithm.

C_RUST_COUPLED: external::crypto_digest::crypto_digest256_new C_RUST_COUPLED: crypto::digest::Sha256::default

Definition at line 245 of file crypto_digest_openssl.c.

Referenced by build_mac(), compute_disaster_srv(), crypto_mac_sha3_256(), dirserv_read_measured_bandwidths(), generate_ope_cipher_for_desc(), hs_build_hs_index(), hs_build_hsdir_index(), hs_get_subcredential(), onion_ntor3_client_handshake(), onion_skin_ntor3_server_handshake_part2_nokeygen(), and or_handshake_state_record_var_cell().

◆ crypto_digest512()

int crypto_digest512 ( char *  digest,
const char *  m,
size_t  len,
digest_algorithm_t  algorithm 
)

Compute a 512-bit digest of len bytes in data stored in m, using the algorithm algorithm. Write the DIGEST_LEN512-byte result into digest. Return 0 on success, -1 on failure.

Definition at line 85 of file crypto_digest_openssl.c.

◆ crypto_digest512_new()

crypto_digest_t * crypto_digest512_new ( digest_algorithm_t  algorithm)

Allocate and return a new digest object to compute 512-bit digests using algorithm.

Definition at line 254 of file crypto_digest_openssl.c.

Referenced by ed25519_keypair_from_curve25519_keypair().

◆ crypto_digest_add_bytes()

void crypto_digest_add_bytes ( crypto_digest_t digest,
const char *  data,
size_t  len 
)

Add len bytes from data to the digest object.

C_RUST_COUPLED: external::crypto_digest::crypto_digest_add_bytess C_RUST_COUPLED: crypto::digest::Sha256::process

Definition at line 286 of file crypto_digest_openssl.c.

Referenced by crypto_digest_smartlist_prefix(), d_add(), and relay_set_digest().

◆ crypto_digest_alloc_bytes()

static size_t crypto_digest_alloc_bytes ( digest_algorithm_t  alg)
static

Return the number of bytes we need to malloc in order to get a crypto_digest_t for alg, or the number of bytes we need to wipe when we free one.

Helper: returns the number of bytes in the 'f' field of 'st'

Gives the length of crypto_digest_t through the end of the field 'd'

Definition at line 148 of file crypto_digest_openssl.c.

Referenced by crypto_digest_assign(), crypto_digest_checkpoint(), crypto_digest_dup(), and crypto_digest_restore().

◆ crypto_digest_assign()

void crypto_digest_assign ( crypto_digest_t into,
const crypto_digest_t from 
)

Replace the state of the digest object into with the state of the digest object from. Requires that 'into' and 'from' have the same digest type.

Definition at line 447 of file crypto_digest_openssl.c.

◆ crypto_digest_checkpoint()

void crypto_digest_checkpoint ( crypto_digest_checkpoint_t checkpoint,
const crypto_digest_t digest 
)

Temporarily save the state of digest in checkpoint. Asserts that digest is a SHA1 digest object.

Definition at line 423 of file crypto_digest_openssl.c.

◆ crypto_digest_dup()

crypto_digest_t * crypto_digest_dup ( const crypto_digest_t digest)

Allocate and return a new digest object with the same state as digest

C_RUST_COUPLED: external::crypto_digest::crypto_digest_dup C_RUST_COUPLED: impl Clone for crypto::digest::Sha256

Definition at line 403 of file crypto_digest_openssl.c.

◆ crypto_digest_free_()

void crypto_digest_free_ ( crypto_digest_t digest)

Deallocate a digest object.

Definition at line 263 of file crypto_digest_openssl.c.

◆ crypto_digest_get_digest()

void crypto_digest_get_digest ( crypto_digest_t digest,
char *  out,
size_t  out_len 
)

Compute the hash of the data that has been passed to the digest object; write the first out_len bytes of the result to out. out_len must be <= DIGEST512_LEN.

C_RUST_COUPLED: external::crypto_digest::crypto_digest_get_digest C_RUST_COUPLED: impl digest::FixedOutput for Sha256

Definition at line 335 of file crypto_digest_openssl.c.

Referenced by crypto_digest_smartlist_prefix(), relay_crypto_record_sendme_digest(), and relay_set_digest().

◆ crypto_digest_new()

crypto_digest_t * crypto_digest_new ( void  )

Allocate and return a new digest object to compute SHA1 digests.

Definition at line 233 of file crypto_digest_openssl.c.

◆ crypto_digest_new_internal()

static crypto_digest_t * crypto_digest_new_internal ( digest_algorithm_t  algorithm)
static

Internal function: create and return a new digest object for 'algorithm'. Does not typecheck the algorithm.

Definition at line 184 of file crypto_digest_openssl.c.

Referenced by crypto_digest_new(), and crypto_digest_smartlist_prefix().

◆ crypto_digest_restore()

void crypto_digest_restore ( crypto_digest_t digest,
const crypto_digest_checkpoint_t checkpoint 
)

Restore the state of digest from checkpoint. Asserts that digest is a SHA1 digest object. Requires that the state was previously stored with crypto_digest_checkpoint()

Definition at line 435 of file crypto_digest_openssl.c.

◆ crypto_digest_smartlist()

void crypto_digest_smartlist ( char *  digest_out,
size_t  len_out,
const smartlist_t lst,
const char *  append,
digest_algorithm_t  alg 
)

Given a list of strings in lst, set the len_out-byte digest at digest_out to the hash of the concatenation of those strings, plus the optional string append, computed with the algorithm alg. out_len must be <= DIGEST512_LEN.

Definition at line 472 of file crypto_digest_openssl.c.

◆ crypto_digest_smartlist_prefix()

void crypto_digest_smartlist_prefix ( char *  digest_out,
size_t  len_out,
const char *  prepend,
const smartlist_t lst,
const char *  append,
digest_algorithm_t  alg 
)

Given a list of strings in lst, set the len_out-byte digest at digest_out to the hash of the concatenation of: the optional string prepend, those strings, and the optional string append, computed with the algorithm alg. len_out must be <= DIGEST512_LEN.

Definition at line 487 of file crypto_digest_openssl.c.

Referenced by crypto_digest_smartlist().

◆ crypto_hmac_sha256()

void crypto_hmac_sha256 ( char *  hmac_out,
const char *  key,
size_t  key_len,
const char *  msg,
size_t  msg_len 
)

Compute the HMAC-SHA-256 of the msg_len bytes in msg, using the key of length key_len. Store the DIGEST256_LEN-byte result in hmac_out. Asserts on failure.

Definition at line 509 of file crypto_digest_openssl.c.

Referenced by crypto_expand_key_material_rfc5869_sha256_legacy(), and h_tweak().