pub struct Pukcc { /* fields omitted */ }
Expand description

Struct representing a PUKCC peripheral.

It provides an access to cryptograhic algorithms in a safe, high-level manner

Implementations

Constructor.

Waits for a CryptoRAM readiness, enables a synchronous PUKCC clock and performs a self test. In case a self test fails it returns an error

Self test service.

Clears up a CryptoRAM and does the checksum. If a checksum and a version matches one defined in a HAL, it means that a self test passed successfully.

While using a high-level API, user should not need to use this service explicitly.

Service generating an ECDSA signature.

GF(p) service. GF(2^n) variant is not implemented – use low-level API.

Input parameters:

  • hash: &[u8] of length Curve::SCALAR_LENGTH
    • Hash of a message that is supposed to be signed.
  • private_key: &[u8] of length Curve::SCALAR_LENGTH
    • Private key used for signing. Poorly generated private_key might have negative security implications.
  • k_buffer: &mut [u8] of length Curve::SCALAR_LENGTH
    • Mutable buffer that is being populated by an entropy source and then used for signing.
  • k_entropy_source: &mut (impl RngCore + CryptoRng)
    • Generic source of cryptographically secure randomness.

Output parameters:

  • signature: &mut [u8] of length 2 * Curve::MOD_LENGTH
    • Mutable slice that signature will be copied to from CryptoRAM after generation is finished. First Curve::MOD_LENGTH bytes contain R part of a signature. Last Curve::MOD_LENGTH bytes contain S part of a signature.

Return value:

  • Result::Ok
    • Signature was generated successfully
  • Result::Err

Note: Provided Curve needs to be sound. Otherwise, point multiplication can become reversible (lack of trapdoor function property) and an attacker might be able to reverse engineer a private_key from a signature.

Service generating an ECDSA signature.

Unsafe: k value must be cryptograhically secure.

GF(p) service. GF(2^n) variant is not implemented – use low-level API.

Input parameters:

  • hash: &[u8] of length Curve::SCALAR_LENGTH
    • Hash of a message that is supposed to be signed.
  • private_key: &[u8] of length Curve::SCALAR_LENGTH
    • Private key used for signing. Poorly generated private_key might have negative security implications.
  • k: &[u8] of length Curve::SCALAR_LENGTH
    • A random number used for signature generation. It is heavily encouraged to use cryptographically-secure random number generators. One should never use the same k more than once. Private key can be extracted from signatures generated with a poorly randomized / the same k value.

Exact same set of input parameters (hash, private_key and k) produces exactly the same signature.

Output parameters:

  • signature: &mut [u8] of length 2 * Curve::MOD_LENGTH
    • Mutable slice that signature will be copied to from CryptoRAM after generation is finished. First Curve::MOD_LENGTH bytes contain R part of a signature. Last Curve::MOD_LENGTH bytes contain S part of a signature.

Return value:

  • Result::Ok
    • Signature was generated successfully
  • Result::Err

Note: Provided Curve needs to be sound. Otherwise, point multiplication can become reversible (lack of trapdoor function property) and an attacker might be able to reverse engineer a private_key from a signature.

Service verifying an ECDSA signature.

GF(p) service. GF(2^n) variant is not implemented – use low-level API.

Input parameters:

Return value:

  • Result::Ok
    • Signature is valid against chosen hash and public_key
  • Result::Err

In case of an invalid signature the returned error type will be EcdsaSignatureVerificationFailure::ServiceFailure( Warning( WrongSignature))

Service performing a modular exponentiation.

result = pow(input, exponent) % modulus

Input parameters:

  • input: &[u8]
    • Requirements:
      • len(input) <= len(modulus)
    • Message, hash, any slice of data that will undergo modular exponentiation
  • exponent: &[u8]
    • Requirements:
      • len(exponent) <= len(modulus)
  • modulus: &[u8]
    • Requirements:
      • len(modulus) % 4
      • 12 <= len(modulus) < ?
    • Note: Maximum size depends on few factors like CryptoRAM and workspace window size. Consult the table with data layout down below.
  • mode: ExpModMode
    • Mode of operation: use regular or fast variant of the underlying algorithm
    • This parameter does not influence the end result of a computation
  • window_size: ExpModWindowSize
    • Enum describing 4 predefined workspace sizes (from smallest to biggest) in CryptoRAM.
    • Bigger the workspace size - faster the algorithm can operate - greater limitations on input parameters are put (as they occupy CryptoRAM address space as well). Consult the table with data layout down below.
    • This parameter does not influence the end result of a computation
  • buffer: &'a mut [u8]
    • Requirements:
      • len(buffer) >= len(modulus) + 5
    • Buffer used internally for CNS calculation. Piece of it is used also for a return value.

Return value:

  • Result::Ok(&'a [u8])
    • Length: len(modulus)
    • A result of modular exponentiation
  • Result::Err
    • Possible failure scenarios are encapsulated in a ExpModFailure enum type

Failing to meet the requirements for any input parameter will end up with an error being returned.

CryptoRAM is 4KiB (0x1000 bytes) in size. Data layout in CryptoRAM looks as follows and its size cannot go over the threshold of 4KiB.

- modulus: len(modulus) + 4
- cns (reduction constant): len(modulus) + 8
- output/input (after/before calculation): len(modulus) + 16
- exponent: len(exponent) + 4 (+ padding to be % 4)
- workspace: (depending on `window_size`)
    - ExpModWindowSize::One => 3 * (modulus.len() + 4) + 8
    - ExpModWindowSize::Two => 4 * (modulus.len() + 4) + 8
    - ExpModWindowSize::Three => 6 * (modulus.len() + 4) + 8
    - ExpModWindowSize::Four => 10 * (modulus.len() + 4) + 8
RSA

This function can be used to perform RSA related computation like encryption, decryption, signature generation and validation.

  • To encrypt input value, split public key into public exponent and modulus and pass them into the function. Return value is going to be a cipher of an input.
  • To decrypt input value, split private key into private exponent and modulus and pass them into the function. Return value is going to be a decrypted input.
  • To generate a signature, pass the hash of a message being signed as an input into the function and use a private key. Return value is going to be a signature (encrypted hash).
  • To validate a signature, pass it as an input into the function and use the public key. Decrypted signature is an expected hash of a message. Calculate the hash of your message and compare it with an expected value. If they are the same, validation can be considered successful.

All RSA variants up to RSA4096 (included) will fit into CryptoRAM and therefore are supported.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Casts the value.

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Casts the value.

Casts the value.

Casts the value.

Performs the conversion.

Performs the conversion.

Casts the value.

OverflowingCasts the value.

Should always be Self

Casts the value.

Casts the value.

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.

Casts the value.

UnwrappedCasts the value.

Casts the value.

WrappingCasts the value.