Back to Fhevm

Casting and trivial encryption

docs/solidity-guides/operations/casting.md

0.12.33.3 KB
Original Source

Casting and trivial encryption

This documentation covers the asEbool, asEuintXX, and asEaddress operations provided by the FHE library for working with encrypted data in the FHEVM. These operations are essential for converting between plaintext and encrypted types, as well as handling encrypted inputs.

The operations can be categorized into two main use cases:

  1. Trivial encryption: Converting plaintext values to encrypted types
  2. Type casting: Converting between different encrypted types

1. Trivial encryption

Trivial encryption simply put is a plain text in a format of a ciphertext.

Overview

Trivial encryption is the process of converting plaintext values into encrypted types (ciphertexts) compatible with FHE operators. Although the data is in ciphertext format, it remains publicly visible on-chain, making it useful for operations between public and private values.

This type of casting involves converting plaintext (unencrypted) values into their encrypted equivalents, such as:

  • boolebool
  • uinteuintXX
  • addresseaddress

{% hint style="info" %} When doing trivial encryption, the data is made compatible with FHE operations but remains publicly visible on-chain unless explicitly encrypted. {% endhint %}

Example

solidity
euint64 value64 = FHE.asEuint64(7262);  // Trivial encrypt a uint64
ebool valueBool = FHE.asEbool(true);   // Trivial encrypt a boolean

2. Casting between encrypted types

This type of casting is used to reinterpret or convert one encrypted type into another. For example:

  • euint32euint64

Casting between encrypted types is often required when working with operations that demand specific sizes or precisions.

Important: When casting between encrypted types:

  • Casting from smaller types to larger types (e.g. euint32euint64) preserves all information
  • Casting from larger types to smaller types (e.g. euint64euint32) will truncate and lose information

The table below summarizes the available casting functions:

From typeTo typeFunction
euintXeuintXFHE.asEuintXX
ebooleuintXFHE.asEuintXX
euintXeboolFHE.asEboolXX

{% hint style="info" %} Casting between encrypted types is efficient and often necessary when handling data with differing precision requirements. {% endhint %}

Workflow for encrypted types

solidity
// Casting between encrypted types
euint32 value32 = FHE.asEuint32(value64); // Cast to euint32
ebool valueBool = FHE.asEbool(value32);   // Cast to ebool

Overall operation summary

Casting TypeFunctionInput TypeOutput Type
Trivial encryptionFHE.asEuintXX(x)uintXeuintX
FHE.asEbool(x)boolebool
FHE.asEaddress(x)addresseaddress
Conversion between typesFHE.asEuintXX(x)euintXX/ebooleuintYY
FHE.asEbool(x)euintXXebool