As you can see there are a lot of people seeing the word NOT, AND, NAND, OR, NOR, XOR,and XNOR most of the time in cryptography and some of them are listed into the different cypher, now I want to share how to use this logic gates that can use into your encryption and also use to the world of blockchain. Also you can check this out if you want to learn more
Title : Implementing logic gate functionality using a blockchain
https://patents.google.com/patent/WO2017187399A1/en
NOT Gate NOT is just basically reversing the value/s of the given problem
Example :
OR GATEWhen there is a true value (1) the answer becomes true
Example :
A | | | B | | | X |
00110011 | | | 10011001 | | | 10111011 |
NOR GATEWhen there is a true value (1) the answer becomes false
Example :
A | | | B | | | X |
00110011 | | | 10011001 | | | 01000100 |
AND GATEWhen there is a false value (0) the answer becomes false
Example :
A | | | B | | | X |
10101100 | | | 10001100 | | | 10001100 |
NAND GATEWhen there is a false value (0) the answer becomes true
Example :
A | | | B | | | X |
10101100 | | | 10001100 | | | 01110011 |
XOR GATEWhen there is a two same value the answer becomes false.
Example :
A | | | B | | | X |
10101100 | | | 10001100 | | | 00100000 |
XNOR GATEWhen there is a two same value the answer becomes true.
Example :
A | | | B | | | X |
10101100 | | | 10001100 | | | 11010000 |
Now here is the challenge for the 10x
newbies up to Jr. member you can earn one (1) merit if you answer all of this problem.
ORNORXNORTo the people get curious how do I make those logic gates you can use this platform, there are a lot of use this too like making a diagram for data flow/data chart.