|
Algorithm 1 Pseudocode showing steps to register users |
-
1:
function new user registration request(Username, password)
-
2:
if (Username, password = True) then
-
3:
NewUser(Username, password, UserNeoAdr = True)
-
4:
BlockchainUser (new user data stored on the Blockchain using the smart contracts)
-
5:
Log (New user registered)
-
6:
return true
-
7:
else
-
8:
end if
-
9:
end function
|