QSMP: Quantum Secure Messaging Protocol 1.3.0.0a (A3)
A quantum secure encrypted tunneling protocol
qsmp_kex_duplex_client_state Struct Reference

Internal state for the Duplex key exchange (client-side). More...

#include <kex.h>

Data Fields

uint8_t keyid [QSMP_KEYID_SIZE]
 
uint8_t schash [QSMP_DUPLEX_SCHASH_SIZE]
 
uint8_t prikey [QSMP_ASYMMETRIC_PRIVATE_KEY_SIZE]
 
uint8_t pubkey [QSMP_ASYMMETRIC_PUBLIC_KEY_SIZE]
 
uint8_t rverkey [QSMP_ASYMMETRIC_VERIFY_KEY_SIZE]
 
uint8_t sigkey [QSMP_ASYMMETRIC_SIGNING_KEY_SIZE]
 
uint8_t ssec [QSMP_SECRET_SIZE]
 
uint8_t verkey [QSMP_ASYMMETRIC_VERIFY_KEY_SIZE]
 
uint64_t expiration
 

Detailed Description

Internal state for the Duplex key exchange (client-side).

This structure holds the state information required by a client participating in a Duplex key exchange. It includes:

  • keyid: A unique key identity string (of size QSMP_KEYID_SIZE) that identifies the key exchange session.
  • schash: A session token hash (of size QSMP_DUPLEX_SCHASH_SIZE) used to verify session integrity.
  • prikey: The client's asymmetric cipher private key (of size QSMP_ASYMMETRIC_PRIVATE_KEY_SIZE).
  • pubkey: The client's asymmetric cipher public key (of size QSMP_ASYMMETRIC_PUBLIC_KEY_SIZE).
  • rverkey: The remote party's asymmetric signature verification key (of size QSMP_ASYMMETRIC_VERIFY_KEY_SIZE).
  • sigkey: The client's asymmetric signature signing key (of size QSMP_ASYMMETRIC_SIGNING_KEY_SIZE).
  • ssec: The derived asymmetric shared secret (of size QSMP_SECRET_SIZE) computed during key exchange.
  • verkey: The client's local asymmetric signature verification key (of size QSMP_ASYMMETRIC_VERIFY_KEY_SIZE).
  • expiration: A timestamp (in seconds from the epoch) indicating when the key exchange session expires.

Field Documentation

◆ expiration

uint64_t expiration

The expiration time, in seconds from epoch

◆ keyid

uint8_t keyid[QSMP_KEYID_SIZE]

The key identity string

◆ prikey

The asymmetric cipher private key

◆ pubkey

The asymmetric cipher public key

◆ rverkey

The remote asymmetric signature verification-key

◆ schash

uint8_t schash[QSMP_DUPLEX_SCHASH_SIZE]

The session token hash

◆ sigkey

The asymmetric signature signing-key

◆ ssec

uint8_t ssec[QSMP_SECRET_SIZE]

The asymmetric shared secret

◆ verkey

The local asymmetric signature verification-key


The documentation for this struct was generated from the following file: