Niveau 14 - Gatekeeper Two Flashcards

1
Q

En solidity, comment écrire du code en assembleur ?

A

avec :

assembly {
...
}
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

En solidity, comment obtient-on le hash d’une variable ?

A

keccack256(variable)
Cette fonction retourne un bytes32, qui est le hash de la variable.

La variable doit être de type bytes

keccak est le nom de l’algorithme de hashage

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Quel le nom de l’opérateur ^ ?

A

XOR

Soit x, soit y vaut 1, mais pas les deux

How well did you know this?
1
Not at all
2
3
4
5
Perfectly