diff --git a/404.html b/404.html index 298ebb18..775c5e36 100644 --- a/404.html +++ b/404.html @@ -4,7 +4,7 @@
Name | Type | Description |
---|---|---|
[0] | euint32 | The result of the operation |
function add(euint64 lhs, euint64 rhs) internal pure returns (euint64)
This functions performs the add operation
+This function performs the add operation
If any of the inputs are expected to be a ciphertext, it verifies that the value matches a valid ciphertext Pure in this function is marked as a hack/workaround - note that this function is NOT pure as fetches of ciphertexts require state access
Name | Type | Description |
---|---|---|
[0] | euint64 | The result of the operation |
function add(euint128 lhs, euint128 rhs) internal pure returns (euint128)
This functions performs the add operation
+This function performs the add operation
If any of the inputs are expected to be a ciphertext, it verifies that the value matches a valid ciphertext Pure in this function is marked as a hack/workaround - note that this function is NOT pure as fetches of ciphertexts require state access
Name | Type | Description |
---|---|---|
[0] | string | Plaintext input, sealed for the owner of publicKey |
function sealoutput(eaddress value, bytes32 publicKey) internal pure returns (string)
performs the sealoutput function on a eaddress ciphertext. This operation returns the plaintext value, sealed for the public key provided
+performs the sealoutput function on an eaddress ciphertext. This operation returns the plaintext value, sealed for the public key provided
Pure in this function is marked as a hack/workaround - note that this function is NOT pure as fetches of ciphertexts require state access
Name | Type | Description |
---|---|---|
value | eaddress | Ciphertext to decrypt and seal |
publicKey | bytes32 | Public Key that will receive the sealed plaintext |
Name | Type | Description |
---|---|---|
[0] | ebool | The result of the operation |