πŸ“₯Offboard

function offBoard(gtUint8 pt) internal returns (ctUint8)

The function offboards the given Garbledtextβ„’, resulting in a Ciphertext under the network key (see discussion about the gcEVM concepts).

Usage example

function getUserKeyTest(bytes calldata signedEK, bytes calldata signature, address addr) public returns (uint8) {

    gtUint8 a = MpcCore.setPublic8(uint8(5));
    gtUint8 c = MpcCore.add(a, uint8(5)); // 10
    userKey = MpcCore.getUserKey(signedEK, signature);
    ctUserKey = MpcCore.offBoardToUser(c, addr);
    ctUint8 ctSystemKey = MpcCore.offBoard(c);
    gtUint8 c1 = MpcCore.onBoard(ctSystemKey);
    x = MpcCore.decrypt(c1);
    return x;
}

The offBoardToUser call in line 7 turns the "c" Garbledtextβ„’ value to a Ciphertext. offBoardToUser encrypts the value to a specific user only, resulting in a ciphertext under that user's symmetric AES key. See next page.

Last updated