/home/dko/projects/mobilec/trunk/src/security/xyssl-0.7/include/xyssl/dhm.h File Reference

#include "bignum.h"

Go to the source code of this file.

Data Structures

struct  dhm_context

Defines

#define ERR_DHM_BAD_INPUT_DATA   0x0380
#define ERR_DHM_READ_PARAMS_FAILED   0x0390
#define ERR_DHM_MAKE_PARAMS_FAILED   0x03A0
#define ERR_DHM_READ_PUBLIC_FAILED   0x03B0
#define ERR_DHM_MAKE_PUBLIC_FAILED   0x03C0
#define ERR_DHM_CALC_SECRET_FAILED   0x03D0

Functions

int dhm_read_params (dhm_context *ctx, unsigned char **p, unsigned char *end)
 Parse the ServerKeyExchange parameters.
int dhm_make_params (dhm_context *ctx, int(*rng_f)(void *), void *rng_d, unsigned char *output, int *olen)
 Setup and write the ServerKeyExchange parameters.
int dhm_read_public (dhm_context *ctx, unsigned char *input, int ilen)
 Import the peer's public value (G^Y).
int dhm_make_public (dhm_context *ctx, unsigned char *output, int olen, int(*rng_f)(void *), void *rng_d)
 Create private value X and export G^X.
int dhm_calc_secret (dhm_context *ctx, unsigned char *output, int *olen)
 Derive and export the shared secret (G^Y)^X mod P.
void dhm_free (dhm_context *ctx)
int dhm_self_test (int verbose)
 Checkup routine.


Detailed Description

Definition in file dhm.h.


Define Documentation

#define ERR_DHM_BAD_INPUT_DATA   0x0380

Definition at line 13 of file dhm.h.

Referenced by dhm_calc_secret(), dhm_make_public(), dhm_read_bignum(), dhm_read_params(), and dhm_read_public().

#define ERR_DHM_CALC_SECRET_FAILED   0x03D0

Definition at line 18 of file dhm.h.

Referenced by dhm_calc_secret().

#define ERR_DHM_MAKE_PARAMS_FAILED   0x03A0

Definition at line 15 of file dhm.h.

Referenced by dhm_make_params().

#define ERR_DHM_MAKE_PUBLIC_FAILED   0x03C0

Definition at line 17 of file dhm.h.

Referenced by dhm_make_public().

#define ERR_DHM_READ_PARAMS_FAILED   0x0390

Definition at line 14 of file dhm.h.

Referenced by dhm_read_bignum().

#define ERR_DHM_READ_PUBLIC_FAILED   0x03B0

Definition at line 16 of file dhm.h.

Referenced by dhm_read_public().


Function Documentation

int dhm_calc_secret ( dhm_context ctx,
unsigned char *  output,
int olen 
)

Derive and export the shared secret (G^Y)^X mod P.

Parameters:
ctx DHM context
output destination buffer
olen number of chars written
Returns:
0 if successful, or ERR_DHM_MAKE_PUBLIC_FAILED

Definition at line 203 of file dhm.c.

References CHK, ERR_DHM_BAD_INPUT_DATA, ERR_DHM_CALC_SECRET_FAILED, dhm_context::GY, dhm_context::K, mpi_exp_mod(), mpi_msb(), mpi_write_binary(), dhm_context::P, dhm_context::RP, and dhm_context::X.

Referenced by main(), ssl_parse_client_key_exchange(), and ssl_write_client_key_exchange().

void dhm_free ( dhm_context ctx  ) 

Definition at line 229 of file dhm.c.

References dhm_context::G, dhm_context::GX, dhm_context::GY, dhm_context::K, mpi_free(), dhm_context::P, dhm_context::RP, and dhm_context::X.

Referenced by main(), and ssl_free().

int dhm_make_params ( dhm_context ctx,
int(*)(void *)  rng_f,
void *  rng_d,
unsigned char *  output,
int olen 
)

Setup and write the ServerKeyExchange parameters.

Parameters:
ctx DHM context
rng_f points to the RNG function
rng_d points to the RNG data
output destination buffer
olen number of chars written
Note:
This function assumes that ctx->P and ctx->G have already been properly set (for example using mpi_read_string).
Returns:
0 if successful, or an MPI error code

Definition at line 93 of file dhm.c.

References CHK, DHM_MPI_EXPORT, ERR_DHM_MAKE_PARAMS_FAILED, dhm_context::G, dhm_context::GX, dhm_context::len, mpi_cmp_mpi(), mpi_exp_mod(), mpi_grow(), mpi_msb(), mpi_shift_r(), dhm_context::P, mpi::p, dhm_context::RP, and dhm_context::X.

Referenced by main(), and ssl_write_server_key_exchange().

int dhm_make_public ( dhm_context ctx,
unsigned char *  output,
int  olen,
int(*)(void *)  rng_f,
void *  rng_d 
)

Create private value X and export G^X.

Parameters:
ctx DHM context
output destination buffer
olen must be == ctx->P.len
rng_f points to the RNG function
rng_d points to the RNG data
Returns:
0 if successful, or ERR_DHM_MAKE_PUBLIC_FAILED

Definition at line 164 of file dhm.c.

References CHK, ERR_DHM_BAD_INPUT_DATA, ERR_DHM_MAKE_PUBLIC_FAILED, dhm_context::G, dhm_context::GX, dhm_context::len, mpi_cmp_mpi(), mpi_exp_mod(), mpi_grow(), mpi_shift_r(), mpi_write_binary(), dhm_context::P, mpi::p, dhm_context::RP, and dhm_context::X.

Referenced by main(), and ssl_write_client_key_exchange().

int dhm_read_params ( dhm_context ctx,
unsigned char **  p,
unsigned char *  end 
)

Parse the ServerKeyExchange parameters.

Parameters:
ctx DHM context
p &(start of input buffer)
end end of buffer
Returns:
0 if successful, or ERR_DHM_READ_PARAMS_FAILED

Definition at line 63 of file dhm.c.

References dhm_read_bignum(), ERR_DHM_BAD_INPUT_DATA, dhm_context::G, dhm_context::GY, dhm_context::len, mpi_msb(), and dhm_context::P.

Referenced by main(), and ssl_parse_server_key_exchange().

int dhm_read_public ( dhm_context ctx,
unsigned char *  input,
int  ilen 
)

Import the peer's public value (G^Y).

Parameters:
ctx DHM context
input input buffer
ilen size of buffer
Returns:
0 if successful, or ERR_DHM_READ_PUBLIC_FAILED

Definition at line 147 of file dhm.c.

References ERR_DHM_BAD_INPUT_DATA, ERR_DHM_READ_PUBLIC_FAILED, dhm_context::GY, dhm_context::len, and mpi_read_binary().

Referenced by main(), and ssl_parse_client_key_exchange().

int dhm_self_test ( int  verbose  ) 

Checkup routine.

Returns:
0 if successful, or 1 if the test failed

Definition at line 243 of file dhm.c.


Generated on Fri May 16 14:49:56 2008 for Mobile-C by  doxygen 1.5.4