Ruby  2.5.0dev(2017-10-22revision60238)
Data Structures | Macros | Functions | Variables
ossl_pkey_dh.c File Reference
#include "ossl.h"

Go to the source code of this file.

Data Structures

struct  dh_blocking_gen_arg
 

Macros

#define GetPKeyDH(obj, pkey)
 
#define GetDH(obj, dh)
 

Functions

VALUE ossl_dh_new (EVP_PKEY *pkey)
 
void Init_ossl_dh (void)
 

Variables

VALUE cDH
 
VALUE eDHError
 

Macro Definition Documentation

◆ GetDH

#define GetDH (   obj,
  dh 
)
Value:
do { \
EVP_PKEY *_pkey; \
GetPKeyDH((obj), _pkey); \
(dh) = EVP_PKEY_get0_DH(_pkey); \
} while (0)

Definition at line 20 of file ossl_pkey_dh.c.

◆ GetPKeyDH

#define GetPKeyDH (   obj,
  pkey 
)
Value:
do { \
GetPKey((obj), (pkey)); \
if (EVP_PKEY_base_id(pkey) != EVP_PKEY_DH) { /* PARANOIA? */ \
ossl_raise(rb_eRuntimeError, "THIS IS NOT A DH!") ; \
} \
} while (0)
VALUE rb_eRuntimeError
Definition: error.c:800

Definition at line 14 of file ossl_pkey_dh.c.

Function Documentation

◆ Init_ossl_dh()

void Init_ossl_dh ( void  )

◆ ossl_dh_new()

VALUE ossl_dh_new ( EVP_PKEY *  pkey)

Definition at line 58 of file ossl_pkey_dh.c.

Variable Documentation

◆ cDH

VALUE cDH

Definition at line 29 of file ossl_pkey_dh.c.

Referenced by Init_ossl_dh().

◆ eDHError

VALUE eDHError

Definition at line 30 of file ossl_pkey_dh.c.

Referenced by Init_ossl_dh().