Cwickr_buffer | Represents an array of bytes and the length of the allocation associated with those bytes |
Cwickr_cipher | Represents a cipher that can be used in the crypto_engine. This meta object holds parameters for the cipher algorithms and maintains an identifier that can be used to look up the desired parameters for an algorithm |
Cwickr_cipher_key | |
Cwickr_cipher_result | |
Cwickr_crypto_engine | Interface to a set of cryptographic operations used throughout the library. Currently the default implementation of this can be found along with documentation in openssl_suite.h and kdf.h |
Cwickr_ctx | Wickr encryption context for high level management of sending / receiving packets using the Wickr protocol |
Cwickr_ctx_gen_result | Output of a context generation |
Cwickr_ctx_packet | Parsed inbound wickr packet that has yet to be decoded by this context |
Cwickr_decode_result | Packet decoding result |
Cwickr_dev_info | Device Information used to make a uniquely identifying set of data for each context running the Wickr Protocol |
Cwickr_digest | Digest function parameters |
Cwickr_ec_curve | Metadata about curve types to help with key generation, and signatures |
Cwickr_ec_key | Representation of public and private Elliptic Curve Keypair information as buffers |
Cwickr_ecdh_cipher_ctx | A cipher context designed to modularize the ECDH_HKDF_AES256 workflow |
Cwickr_ecdsa_result | Elliptic Curve Digital Signature Algorithm Result |
Cwickr_encoder_result | Result of a packet encoding operation |
Cwickr_ephemeral_info | Message destruction control metadata |
Cwickr_ephemeral_keypair | Represents a key pair used for message key exchanges within the Wickr Messaging Protocol |
Cwickr_fingerprint | A fingerprint representation of a combination of signature keys / identifiers |
Cwickr_identity | A signing identity on the Wickr system |
Cwickr_identity_chain | Represents a root -> node relationship as well as it's signature status |
Cwickr_kdf_algo | Metadata associated with a particular KDF function |
Cwickr_kdf_meta | Represents the information the KDF function will need along with it's input to derive a particular output |
Cwickr_kdf_result | Represents the result of a KDF function execution |
Cwickr_key_exchange | Public key exchange protected data. After a shared secret is generated using a public key with identifier 'key_id', and run through a KDF, it is used to encrypt data to be protected by the exchange and the ciphertext is stored in 'exchange_ciphertext' |
Cwickr_key_exchange_set | A collection of key exchanges for a set of recipients. The data protected inside 'exchange_ciphertext' for each recipient is derived by each recipient node using their individualized key exchange. See Wickr white paper 'Prepare Packet Header' section for more information |
Cwickr_node | Represents a message destination at a point in time |
Cwickr_packet | An encrypted packet made with the Wickr protocol |
Cwickr_packet_meta | Control metadata found in the encrypted payload of a packet |
Cwickr_parse_result | Result from parsing an inbound packet |
Cwickr_payload | The encrypted body content of a Wickr packet |
Cwickr_root_keys | Root level crypto keys for signatures, local encryption, and remote encryption |
Cwickr_storage_keys | Key's used for the client to encrypt data meant for itself, and not for other clients |
Cwickr_stream_ctx | A context that is used for encrypting or decrypting a sequenced stream of data packets The stream context manages the state of stream operations including key evolution management based on the sequence number of the being encrypted / decrypted. The stream context is assigned a direction, and can only be used for encoding OR decoding of packets, and not both |
Cwickr_stream_iv | A deterministic random IV generator using a 64 byte secure random seed and HMAC-SHA512 |
Cwickr_stream_key | A data structure representing the stream encoding / decoding key material A stream key holds information about the key material used for cipher operations as well as it's next evolution key and the number of packets this key should be used to encode or decode before evolution takes place |
Cwickr_transport_callbacks | Callbacks to notify the user of events within the transport |
Cwickr_transport_ctx | Transport context to manage the state machine of a point to point connection using fundamentals of the Wickr protocol as building blocks |