Many years ago I cam across a post that get this example to hide passwords in code. I know it is very simple to crack but I kinda liked the idea way back then although now I can't find the original post and I don't understand how it works.
Code is below. Hidden password is L0ckN!nja7691
Code is below. Hidden password is L0ckN!nja7691
B4X:
Private Sub X() As String
Dim b(13) As Byte
b(0) = Bit.ShiftRight(27027,5)
b(1) = Bit.ShiftRight(1595584,15)
b(2) = Bit.ShiftRight(1634018,14)
b(3) = Bit.ShiftRight(28026,5)
b(4) = Bit.ShiftRight(8506,2)
b(5) = Bit.ShiftRight(4334958,17)
b(6) = Bit.ShiftRight(902532,13)
b(7) = Bit.ShiftRight(54759,9)
b(8) = Bit.ShiftRight(11307,5)
b(9) = Bit.ShiftRight(28197,9)
b(10) = Bit.ShiftRight(27058,3)
b(11) = Bit.ShiftRight(956333050,24)
b(12) = Bit.ShiftRight(1634339,15)
Return BytesToString(b, 0, 13, "UTF8")
End Sub