Advertisement
Guest User

Untitled

a guest
Sep 21st, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pascal 0.28 KB | None | 0 0
  1.      for x := Low(HashDigest) to High(HashDigest) do
  2.          FinalSubject := FinalSubject + Format('%2x', [HashDigest[x]]);
  3.  
  4.      while pos(' ', FinalSubject) > 0 do      //an x0 will Format out to ' 0'
  5.            FinalSubject := StringReplace(FinalSubject, ' ', '0', [rfReplaceAll]);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement