Advertisement
ZeekoSec

Simple Hashing Algorithm

Apr 7th, 2015
471
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 0.21 KB | None | 0 0
  1.    Private Function GenerateHash(ByVal PlainText As String) As String
  2.         Dim str As String
  3.         str = PlainText
  4.         Return str.Length / Math.Sqrt(str.Length) / str.Length ^ (1 / 3)
  5.     End Function
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement