003 File Manager
Current Path:
/usr/src/crypto/openssl/crypto/dh
usr
/
src
/
crypto
/
openssl
/
crypto
/
dh
/
📁
..
📄
build.info
(218 B)
📄
dh1024.pem
(245 B)
📄
dh192.pem
(103 B)
📄
dh2048.pem
(848 B)
📄
dh4096.pem
(770 B)
📄
dh512.pem
(156 B)
📄
dh_ameth.c
(22.38 KB)
📄
dh_asn1.c
(3.62 KB)
📄
dh_check.c
(5.67 KB)
📄
dh_depr.c
(1.15 KB)
📄
dh_err.c
(4.67 KB)
📄
dh_gen.c
(3.75 KB)
📄
dh_kdf.c
(4.23 KB)
📄
dh_key.c
(6.69 KB)
📄
dh_lib.c
(5.64 KB)
📄
dh_local.h
(1.64 KB)
📄
dh_meth.c
(3.54 KB)
📄
dh_pmeth.c
(13.01 KB)
📄
dh_prn.c
(767 B)
📄
dh_rfc5114.c
(1.09 KB)
📄
dh_rfc7919.c
(2.03 KB)
Editing: dh_local.h
/* * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved. * * Licensed under the OpenSSL license (the "License"). You may not use * this file except in compliance with the License. You can obtain a copy * in the file LICENSE in the source distribution or at * https://www.openssl.org/source/license.html */ #include <openssl/dh.h> #include "internal/refcount.h" struct dh_st { /* * This first argument is used to pick up errors when a DH is passed * instead of a EVP_PKEY */ int pad; int version; BIGNUM *p; BIGNUM *g; int32_t length; /* optional */ BIGNUM *pub_key; /* g^x % p */ BIGNUM *priv_key; /* x */ int flags; BN_MONT_CTX *method_mont_p; /* Place holders if we want to do X9.42 DH */ BIGNUM *q; BIGNUM *j; unsigned char *seed; int seedlen; BIGNUM *counter; CRYPTO_REF_COUNT references; CRYPTO_EX_DATA ex_data; const DH_METHOD *meth; ENGINE *engine; CRYPTO_RWLOCK *lock; }; struct dh_method { char *name; /* Methods here */ int (*generate_key) (DH *dh); int (*compute_key) (unsigned char *key, const BIGNUM *pub_key, DH *dh); /* Can be null */ int (*bn_mod_exp) (const DH *dh, BIGNUM *r, const BIGNUM *a, const BIGNUM *p, const BIGNUM *m, BN_CTX *ctx, BN_MONT_CTX *m_ctx); int (*init) (DH *dh); int (*finish) (DH *dh); int flags; char *app_data; /* If this is non-NULL, it will be used to generate parameters */ int (*generate_params) (DH *dh, int prime_len, int generator, BN_GENCB *cb); };
Upload File
Create Folder