#include <yassl_imp.hpp>
Public Member Functions | |
| ServerDHParams () | |
| ~ServerDHParams () | |
| int | get_pSize () const |
| int | get_gSize () const |
| int | get_pubSize () const |
| const opaque * | get_p () const |
| const opaque * | get_g () const |
| const opaque * | get_pub () const |
| opaque * | alloc_p (int sz) |
| opaque * | alloc_g (int sz) |
| opaque * | alloc_pub (int sz) |
Private Member Functions | |
| ServerDHParams (const ServerDHParams &) | |
| ServerDHParams & | operator= (const ServerDHParams &) |
Private Attributes | |
| int | pSz_ |
| int | gSz_ |
| int | pubSz_ |
| opaque * | p_ |
| opaque * | g_ |
| opaque * | Ys_ |
Definition at line 306 of file yassl_imp.hpp.
| yaSSL::ServerDHParams::ServerDHParams | ( | ) |
| yaSSL::ServerDHParams::~ServerDHParams | ( | ) |
Definition at line 1086 of file yassl_imp.cpp.
References g_, p_, Ys_, and yaSSL::ysArrayDelete().
01087 { 01088 ysArrayDelete(Ys_); 01089 ysArrayDelete(g_); 01090 ysArrayDelete(p_); 01091 }
Here is the call graph for this function:

| yaSSL::ServerDHParams::ServerDHParams | ( | const ServerDHParams & | ) | [private] |
| opaque * yaSSL::ServerDHParams::alloc_g | ( | int | sz | ) |
Definition at line 1137 of file yassl_imp.cpp.
References g_, gSz_, and NEW_YS.
Referenced by yaSSL::DH_Server::build(), and yaSSL::DH_Server::read().
Here is the caller graph for this function:

| opaque * yaSSL::ServerDHParams::alloc_p | ( | int | sz | ) |
Definition at line 1130 of file yassl_imp.cpp.
References NEW_YS, p_, and pSz_.
Referenced by yaSSL::DH_Server::build(), and yaSSL::DH_Server::read().
Here is the caller graph for this function:

| opaque * yaSSL::ServerDHParams::alloc_pub | ( | int | sz | ) |
Definition at line 1144 of file yassl_imp.cpp.
References NEW_YS, pubSz_, and Ys_.
Referenced by yaSSL::DH_Server::build(), and yaSSL::DH_Server::read().
Here is the caller graph for this function:

| const opaque * yaSSL::ServerDHParams::get_g | ( | ) | const |
Definition at line 1118 of file yassl_imp.cpp.
References g_.
Referenced by yaSSL::DH_Server::build(), and yaSSL::DH_Server::read().
01119 { 01120 return g_; 01121 }
Here is the caller graph for this function:

| int yaSSL::ServerDHParams::get_gSize | ( | ) | const |
Definition at line 1100 of file yassl_imp.cpp.
References gSz_.
Referenced by yaSSL::DH_Server::read().
01101 { 01102 return gSz_; 01103 }
Here is the caller graph for this function:

| const opaque * yaSSL::ServerDHParams::get_p | ( | ) | const |
Definition at line 1112 of file yassl_imp.cpp.
References p_.
Referenced by yaSSL::DH_Server::build(), and yaSSL::DH_Server::read().
01113 { 01114 return p_; 01115 }
Here is the caller graph for this function:

| int yaSSL::ServerDHParams::get_pSize | ( | ) | const |
Definition at line 1094 of file yassl_imp.cpp.
References pSz_.
Referenced by yaSSL::DH_Server::read().
01095 { 01096 return pSz_; 01097 }
Here is the caller graph for this function:

| const opaque * yaSSL::ServerDHParams::get_pub | ( | ) | const |
Definition at line 1124 of file yassl_imp.cpp.
References Ys_.
Referenced by yaSSL::DH_Server::build(), and yaSSL::DH_Server::read().
01125 { 01126 return Ys_; 01127 }
Here is the caller graph for this function:

| int yaSSL::ServerDHParams::get_pubSize | ( | ) | const |
Definition at line 1106 of file yassl_imp.cpp.
References pubSz_.
Referenced by yaSSL::DH_Server::read().
01107 { 01108 return pubSz_; 01109 }
Here is the caller graph for this function:

| ServerDHParams& yaSSL::ServerDHParams::operator= | ( | const ServerDHParams & | ) | [private] |
opaque* yaSSL::ServerDHParams::g_ [private] |
Definition at line 311 of file yassl_imp.hpp.
Referenced by alloc_g(), get_g(), and ~ServerDHParams().
int yaSSL::ServerDHParams::gSz_ [private] |
opaque* yaSSL::ServerDHParams::p_ [private] |
Definition at line 310 of file yassl_imp.hpp.
Referenced by alloc_p(), get_p(), and ~ServerDHParams().
int yaSSL::ServerDHParams::pSz_ [private] |
int yaSSL::ServerDHParams::pubSz_ [private] |
opaque* yaSSL::ServerDHParams::Ys_ [private] |
Definition at line 312 of file yassl_imp.hpp.
Referenced by alloc_pub(), get_pub(), and ~ServerDHParams().
1.4.7

