pub struct TransientKeyContext { /* private fields */ }
Expand description

Structure offering an abstracted programming experience.

The TransientKeyContext makes use of a root key from which the other, client-controlled keyes are derived.

Currently, only functionality necessary for RSA key creation and usage (for signing, verifying signatures, encryption and decryption) is implemented. The RSA SSA asymmetric scheme with SHA256 is used for all created and imported signing keys. The RSA OAEP asymmetric scheme with SHA256 is used for all created and imported signing/encryption/decryption keys.

Implementations

Create a new key.

A key is created as a descendant of the context root key, with the given parameters.

If successful, the result contains the saved context of the key and a vector of bytes forming the authentication value for said key.

Constraints
  • auth_size must be at most 32
Errors
  • if the authentication size is larger than 32 a WrongParamSize wrapper error is returned
  • for RSA keys, if the specified key size is not one of 1024, 2048, 3072 or 4096, WrongParamSize is returned
  • if the key_params is not for an RSA key, InvalidParam is returned
  • if the key_params does not have an AnySig scheme, InvalidParam is returned
  • errors are returned if any method calls return an error: Context::get_random, TransientKeyContext::set_session_attrs, Context::create, Context::load, Context::context_save, Context::context_flush

Load a previously generated RSA public key.

Returns the key context.

Constraints
  • public_key must be 128, 256, 384 or 512 bytes (i.e. slice elements) long, corresponding to 1024, 2048, 3072 or 4096 bits
Errors
  • if the public key length is different than 128, 256, 384 or 512 bytes, a WrongParamSize wrapper error is returned
  • errors are returned if any method calls return an error: TransientKeyContext::set_session_attrs, Context::load_external_public, Context::context_save, Context::flush_context`

Load a previously generated RSA keypair. Currently only supports signing keys for RSA PKCS 1v5 with SHA256.

Returns the key context.

Constraints
  • public_modulus must be 128, 256, 384 or 512 bytes (i.e. slice elements) long, corresponding to 1024, 2048, 3072 or 4096 bits
  • key_prime’s length must coincide with that of the public key. Namely, key_prime should be 64, 128, 192, or 256 bytes (i.e. slice elements) long for public keys of length 128, 256, 384 or 512 respectively (which in turn correspond to 512/1024/1536/2048 bits for key_prime).
Errors
  • errors are returned if any method calls return an error. TransientKeyContext::set_session_attrs, Context::load_external, Context::context_save, Context::flush_context`

Read the public part from a previously generated key.

The method takes the key as a parameter and returns its public part.

Errors
  • errors are returned if any method calls return an error: Context::context_load, Context::read_public, Context::flush_context, TransientKeyContext::set_session_attrs

Encrypt a message with an existing key.

Takes the key as a parameter, encrypts the message and returns the ciphertext. A label (i.e. nonce) can also be provided.

Errors
  • errors are returned if any method calls return an error: Context::context_load, Context::rsa_encrypt, Context::flush_context, TransientKeyContext::set_session_attrs Context::set_handle_auth

Decrypt ciphertext with an existing key.

Takes the key as a parameter, decrypts the ciphertext and returns the plaintext. A label (i.e. nonce) can also be provided.

Errors
  • errors are returned if any method calls return an error: Context::context_load, Context::rsa_decrypt, Context::flush_context, TransientKeyContext::set_session_attrs Context::set_handle_auth

Sign a digest with an existing key.

Takes the key as a parameter, signs and returns the signature.

Errors
  • errors are returned if any method calls return an error: Context::context_load, Context::sign, Context::flush_context, TransientKeyContext::set_session_attrs Context::set_handle_auth

Verify a signature against a digest.

Given a digest, a key and a signature, this method returns a Verified ticket if the verification was successful.

Errors
  • if the verification fails (i.e. the signature is invalid), a TPM error is returned
  • errors are returned if any method calls return an error: Context::context_load, Context::verify_signature, Context::flush_context, TransientKeyContext::set_session_attrs

Trait Implementations

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Drops the content pointed by this pointer and frees it. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.