EC J-PAKE context structure.

J-PAKE is a symmetric protocol, except for the identifiers used in Zero-Knowledge Proofs, and the serialization of the second message (KeyExchange) as defined by the Thread spec.

In order to benefit from this symmetry, we choose a different naming convention from the Thread v1.0 spec. Correspondance is indicated in the description as a pair C: client name, S: server name

Public Attributes#

Pointer to command context object.

uint32_t

Curve flags to use.

Are we client or server?

char

J-PAKE password.

size_t

J-PAKE password length.

uint8_t

Random scalar for exchange.

uint8_t

Our point 1 (round 1)

uint8_t

Our point 2 (round 1)

uint8_t

Their point 1 (round 1)

uint8_t

Their point 2 (round 1)

uint8_t

Their point (round 2)

Public Attribute Documentation#

cmd_ctx#

sl_se_command_context_t* sl_se_ecjpake_context_t::cmd_ctx

Pointer to command context object.


Definition at line 461 of file platform/security/sl_component/se_manager/inc/sl_se_manager_types.h

curve_flags#

uint32_t sl_se_ecjpake_context_t::curve_flags

Curve flags to use.


Definition at line 462 of file platform/security/sl_component/se_manager/inc/sl_se_manager_types.h

role#

sl_se_ecjpake_role_t sl_se_ecjpake_context_t::role

Are we client or server?


Definition at line 463 of file platform/security/sl_component/se_manager/inc/sl_se_manager_types.h

pwd#

char sl_se_ecjpake_context_t::pwd[32]

J-PAKE password.


Definition at line 465 of file platform/security/sl_component/se_manager/inc/sl_se_manager_types.h

pwd_len#

size_t sl_se_ecjpake_context_t::pwd_len

J-PAKE password length.


Definition at line 466 of file platform/security/sl_component/se_manager/inc/sl_se_manager_types.h

r#

uint8_t sl_se_ecjpake_context_t::r[32]

Random scalar for exchange.


Definition at line 468 of file platform/security/sl_component/se_manager/inc/sl_se_manager_types.h

Xm1#

uint8_t sl_se_ecjpake_context_t::Xm1[64]

Our point 1 (round 1)


Definition at line 469 of file platform/security/sl_component/se_manager/inc/sl_se_manager_types.h

Xm2#

uint8_t sl_se_ecjpake_context_t::Xm2[64]

Our point 2 (round 1)


Definition at line 470 of file platform/security/sl_component/se_manager/inc/sl_se_manager_types.h

Xp1#

uint8_t sl_se_ecjpake_context_t::Xp1[64]

Their point 1 (round 1)


Definition at line 471 of file platform/security/sl_component/se_manager/inc/sl_se_manager_types.h

Xp2#

uint8_t sl_se_ecjpake_context_t::Xp2[64]

Their point 2 (round 1)


Definition at line 472 of file platform/security/sl_component/se_manager/inc/sl_se_manager_types.h

Xp#

uint8_t sl_se_ecjpake_context_t::Xp[64]

Their point (round 2)


Definition at line 473 of file platform/security/sl_component/se_manager/inc/sl_se_manager_types.h