Guest User

Untitled

a guest
Feb 13th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. contract Mail{
  2. mapping(address=>string) loginInfo;
  3. function validate(bytes key, bytes expectedResult) public constant returns(bool){
  4. //Check given saved data
  5. //To do check given data and decrypted data is same or not?
  6. return true;
  7. }
  8.  
  9. }
Add Comment
Please, Sign In to add comment