Advertisement
ZeekoSec

Crypo encryptions

Mar 24th, 2015
488
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 30.53 KB | None | 0 0
  1.        Public Function Atom128_Encode(ByVal input As String) As String
  2.  
  3.         input = Uri.EscapeDataString(input)
  4.  
  5.         Dim key As String = "/128GhIoPQROSTeUbADfgHijKLM+n0pFWXY456xyzB7=39VaqrstJklmNuZvwcdEC"
  6.  
  7.         Dim out As New System.Text.StringBuilder
  8.  
  9.         Dim i As Integer
  10.  
  11.         Do
  12.  
  13.             Dim enc(3) As Integer
  14.  
  15.             Dim chrs As Integer() = {0, 0, 0}
  16.  
  17.             For b As Integer = 0 To 2
  18.  
  19.                 If i < input.Length Then chrs(b) = Asc(input(i))
  20.  
  21.                 i += 1
  22.  
  23.             Next
  24.  
  25.             enc(0) = chrs(0) >> 2
  26.  
  27.             enc(1) = ((chrs(0) And 3) << 4) Or (chrs(1) >> 4)
  28.  
  29.             enc(2) = ((chrs(1) And 15) << 2) Or (chrs(2) >> 6)
  30.  
  31.             enc(3) = chrs(2) And 63
  32.  
  33.             If chrs(1) = 0 Then
  34.  
  35.                 enc(2) = 64
  36.  
  37.                 enc(3) = 64
  38.  
  39.             End If
  40.  
  41.             If chrs(2) = 0 Then
  42.  
  43.                 enc(3) = 64
  44.  
  45.             End If
  46.  
  47.             For Each x As Integer In enc
  48.  
  49.                 out.Append(key(x))
  50.  
  51.             Next
  52.  
  53.         Loop While i < input.Length
  54.  
  55.         Return out.ToString
  56.  
  57.     End Function
  58.  
  59.     Public Function Atom128_Decode(ByVal input As String) As String
  60.  
  61.         Dim key As String = "/128GhIoPQROSTeUbADfgHijKLM+n0pFWXY456xyzB7=39VaqrstJklmNuZvwcdEC"
  62.  
  63.         Dim out As New System.Text.StringBuilder
  64.  
  65.         Dim i As Integer
  66.  
  67.         Do
  68.  
  69.             Dim enc(3) As Integer
  70.  
  71.             Dim chrs() As Integer = {0, 0, 0}
  72.  
  73.             For b As Integer = 0 To 3
  74.  
  75.                 enc(b) = key.IndexOf(input(i))
  76.  
  77.                 i = i + 1
  78.  
  79.             Next
  80.  
  81.             chrs(0) = (enc(0) << 2) Or (enc(1) >> 4)
  82.  
  83.             chrs(1) = (enc(1) And 15) << 4 Or (enc(2) >> 2)
  84.  
  85.             chrs(2) = (enc(2) And 3) << 6 Or enc(3)
  86.  
  87.             out.Append(Chr(chrs(0)))
  88.  
  89.             If enc(2) <> 64 Then out.Append(Chr(chrs(1)))
  90.  
  91.             If enc(3) <> 64 Then out.Append(Chr(chrs(2)))
  92.  
  93.         Loop While i < input.Length
  94.  
  95.         Return out.ToString
  96.  
  97.     End Function
  98.  
  99.     Public Function HAZZ15_Encode(ByVal input As String) As String
  100.  
  101.         input = Uri.EscapeDataString(input)
  102.  
  103.         Dim key As String = "HNO4klm6ij9n+J2hyf0gzA8uvwDEq3X1Q7ZKeFrWcVTts/MRGYbdxSo=ILaUpPBC5"
  104.  
  105.         Dim out As New System.Text.StringBuilder
  106.  
  107.         Dim i As Integer
  108.  
  109.         Do
  110.  
  111.             Dim enc(3) As Integer
  112.  
  113.             Dim chrs As Integer() = {0, 0, 0}
  114.  
  115.             For b As Integer = 0 To 2
  116.  
  117.                 If i < input.Length Then chrs(b) = Asc(input(i))
  118.  
  119.                 i += 1
  120.  
  121.             Next
  122.  
  123.             enc(0) = chrs(0) >> 2
  124.  
  125.             enc(1) = ((chrs(0) And 3) << 4) Or (chrs(1) >> 4)
  126.  
  127.             enc(2) = ((chrs(1) And 15) << 2) Or (chrs(2) >> 6)
  128.  
  129.             enc(3) = chrs(2) And 63
  130.  
  131.             If chrs(1) = 0 Then
  132.  
  133.                 enc(2) = 64
  134.  
  135.                 enc(3) = 64
  136.  
  137.             End If
  138.  
  139.             If chrs(2) = 0 Then
  140.  
  141.                 enc(3) = 64
  142.  
  143.             End If
  144.  
  145.             For Each x As Integer In enc
  146.  
  147.                 out.Append(key(x))
  148.  
  149.             Next
  150.  
  151.         Loop While i < input.Length
  152.  
  153.         Return out.ToString
  154.  
  155.     End Function
  156.  
  157.     Public Function HAZZ15_Decode(ByVal input As String) As String
  158.  
  159.         Dim key As String = "HNO4klm6ij9n+J2hyf0gzA8uvwDEq3X1Q7ZKeFrWcVTts/MRGYbdxSo=ILaUpPBC5"
  160.  
  161.         Dim out As New System.Text.StringBuilder
  162.  
  163.         Dim i As Integer
  164.  
  165.         Do
  166.  
  167.             Dim enc(3) As Integer
  168.  
  169.             Dim chrs() As Integer = {0, 0, 0}
  170.  
  171.             For b As Integer = 0 To 3
  172.  
  173.                 enc(b) = key.IndexOf(input(i))
  174.  
  175.                 i = i + 1
  176.  
  177.             Next
  178.  
  179.             chrs(0) = (enc(0) << 2) Or (enc(1) >> 4)
  180.  
  181.             chrs(1) = (enc(1) And 15) << 4 Or (enc(2) >> 2)
  182.  
  183.             chrs(2) = (enc(2) And 3) << 6 Or enc(3)
  184.  
  185.             out.Append(Chr(chrs(0)))
  186.  
  187.             If enc(2) <> 64 Then out.Append(Chr(chrs(1)))
  188.  
  189.             If enc(3) <> 64 Then out.Append(Chr(chrs(2)))
  190.  
  191.         Loop While i < input.Length
  192.  
  193.         Return out.ToString
  194.  
  195.     End Function
  196.  
  197.     Public Function GILA7_Encode(ByVal input As String) As String
  198.  
  199.         input = Uri.EscapeDataString(input)
  200.  
  201.         Dim key As String = "7ZSTJK+W=cVtBCasyf0gzA8uvwDEq3XH/1RMNOILPQU4klm65YbdeFrx2hij9nopG"
  202.  
  203.         Dim out As New System.Text.StringBuilder
  204.  
  205.         Dim i As Integer
  206.  
  207.         Do
  208.  
  209.             Dim enc(3) As Integer
  210.  
  211.             Dim chrs As Integer() = {0, 0, 0}
  212.  
  213.             For b As Integer = 0 To 2
  214.  
  215.                 If i < input.Length Then chrs(b) = Asc(input(i))
  216.  
  217.                 i += 1
  218.  
  219.             Next
  220.  
  221.             enc(0) = chrs(0) >> 2
  222.  
  223.             enc(1) = ((chrs(0) And 3) << 4) Or (chrs(1) >> 4)
  224.  
  225.             enc(2) = ((chrs(1) And 15) << 2) Or (chrs(2) >> 6)
  226.  
  227.             enc(3) = chrs(2) And 63
  228.  
  229.             If chrs(1) = 0 Then
  230.  
  231.                 enc(2) = 64
  232.  
  233.                 enc(3) = 64
  234.  
  235.             End If
  236.  
  237.             If chrs(2) = 0 Then
  238.  
  239.                 enc(3) = 64
  240.  
  241.             End If
  242.  
  243.             For Each x As Integer In enc
  244.  
  245.                 out.Append(key(x))
  246.  
  247.             Next
  248.  
  249.         Loop While i < input.Length
  250.  
  251.         Return out.ToString
  252.  
  253.     End Function
  254.  
  255.     Public Function GILA7_Decode(ByVal input As String) As String
  256.  
  257.         Dim key As String = "7ZSTJK+W=cVtBCasyf0gzA8uvwDEq3XH/1RMNOILPQU4klm65YbdeFrx2hij9nopG"
  258.  
  259.         Dim out As New System.Text.StringBuilder
  260.  
  261.         Dim i As Integer
  262.  
  263.         Do
  264.  
  265.             Dim enc(3) As Integer
  266.  
  267.             Dim chrs() As Integer = {0, 0, 0}
  268.  
  269.             For b As Integer = 0 To 3
  270.  
  271.                 enc(b) = key.IndexOf(input(i))
  272.  
  273.                 i = i + 1
  274.  
  275.             Next
  276.  
  277.             chrs(0) = (enc(0) << 2) Or (enc(1) >> 4)
  278.  
  279.             chrs(1) = (enc(1) And 15) << 4 Or (enc(2) >> 2)
  280.  
  281.             chrs(2) = (enc(2) And 3) << 6 Or enc(3)
  282.  
  283.             out.Append(Chr(chrs(0)))
  284.  
  285.             If enc(2) <> 64 Then out.Append(Chr(chrs(1)))
  286.  
  287.             If enc(3) <> 64 Then out.Append(Chr(chrs(2)))
  288.  
  289.         Loop While i < input.Length
  290.  
  291.         Return out.ToString
  292.  
  293.     End Function
  294.  
  295.     Public Function ESAB46_Encode(ByVal input As String) As String
  296.  
  297.         input = Uri.EscapeDataString(input)
  298.  
  299.         Dim key As String = "ABCDqrs456tuvNOPwxyz012KLM3789=+QRSTUVWXYZabcdefghijklmnopEFGHIJ/"
  300.  
  301.         Dim out As New System.Text.StringBuilder
  302.  
  303.         Dim i As Integer
  304.  
  305.         Do
  306.  
  307.             Dim enc(3) As Integer
  308.  
  309.             Dim chrs As Integer() = {0, 0, 0}
  310.  
  311.             For b As Integer = 0 To 2
  312.  
  313.                 If i < input.Length Then chrs(b) = Asc(input(i))
  314.  
  315.                 i += 1
  316.  
  317.             Next
  318.  
  319.             enc(0) = chrs(0) >> 2
  320.  
  321.             enc(1) = ((chrs(0) And 3) << 4) Or (chrs(1) >> 4)
  322.  
  323.             enc(2) = ((chrs(1) And 15) << 2) Or (chrs(2) >> 6)
  324.  
  325.             enc(3) = chrs(2) And 63
  326.  
  327.             If chrs(1) = 0 Then
  328.  
  329.                 enc(2) = 64
  330.  
  331.                 enc(3) = 64
  332.  
  333.             End If
  334.  
  335.             If chrs(2) = 0 Then
  336.  
  337.                 enc(3) = 64
  338.  
  339.             End If
  340.  
  341.             For Each x As Integer In enc
  342.  
  343.                 out.Append(key(x))
  344.  
  345.             Next
  346.  
  347.         Loop While i < input.Length
  348.  
  349.         Return out.ToString
  350.  
  351.     End Function
  352.  
  353.     Public Function ESAB46_Decode(ByVal input As String) As String
  354.  
  355.         Dim key As String = "ABCDqrs456tuvNOPwxyz012KLM3789=+QRSTUVWXYZabcdefghijklmnopEFGHIJ/"
  356.  
  357.         Dim out As New System.Text.StringBuilder
  358.  
  359.         Dim i As Integer
  360.  
  361.         Do
  362.  
  363.             Dim enc(3) As Integer
  364.  
  365.             Dim chrs() As Integer = {0, 0, 0}
  366.  
  367.             For b As Integer = 0 To 3
  368.  
  369.                 enc(b) = key.IndexOf(input(i))
  370.  
  371.                 i = i + 1
  372.  
  373.             Next
  374.  
  375.             chrs(0) = (enc(0) << 2) Or (enc(1) >> 4)
  376.  
  377.             chrs(1) = (enc(1) And 15) << 4 Or (enc(2) >> 2)
  378.  
  379.             chrs(2) = (enc(2) And 3) << 6 Or enc(3)
  380.  
  381.             out.Append(Chr(chrs(0)))
  382.  
  383.             If enc(2) <> 64 Then out.Append(Chr(chrs(1)))
  384.  
  385.             If enc(3) <> 64 Then out.Append(Chr(chrs(2)))
  386.  
  387.         Loop While i < input.Length
  388.  
  389.         Return out.ToString
  390.  
  391.     End Function
  392.  
  393.     Public Function MEGAN35_Encode(ByVal input As String) As String
  394.  
  395.         input = Uri.EscapeDataString(input)
  396.  
  397.         Dim key As String = "3GHIJKLMNOPQRSTUb=cdefghijklmnopWXYZ/12+406789VaqrstuvwxyzABCDEF5"
  398.  
  399.         Dim out As New System.Text.StringBuilder
  400.  
  401.         Dim i As Integer
  402.  
  403.         Do
  404.  
  405.             Dim enc(3) As Integer
  406.  
  407.             Dim chrs As Integer() = {0, 0, 0}
  408.  
  409.             For b As Integer = 0 To 2
  410.  
  411.                 If i < input.Length Then chrs(b) = Asc(input(i))
  412.  
  413.                 i += 1
  414.  
  415.             Next
  416.  
  417.             enc(0) = chrs(0) >> 2
  418.  
  419.             enc(1) = ((chrs(0) And 3) << 4) Or (chrs(1) >> 4)
  420.  
  421.             enc(2) = ((chrs(1) And 15) << 2) Or (chrs(2) >> 6)
  422.  
  423.             enc(3) = chrs(2) And 63
  424.  
  425.             If chrs(1) = 0 Then
  426.  
  427.                 enc(2) = 64
  428.  
  429.                 enc(3) = 64
  430.  
  431.             End If
  432.  
  433.             If chrs(2) = 0 Then
  434.  
  435.                 enc(3) = 64
  436.  
  437.             End If
  438.  
  439.             For Each x As Integer In enc
  440.  
  441.                 out.Append(key(x))
  442.  
  443.             Next
  444.  
  445.         Loop While i < input.Length
  446.  
  447.         Return out.ToString
  448.  
  449.     End Function
  450.  
  451.     Public Function MEGAN35_Decode(ByVal input As String) As String
  452.  
  453.         Dim key As String = "3GHIJKLMNOPQRSTUb=cdefghijklmnopWXYZ/12+406789VaqrstuvwxyzABCDEF5"
  454.  
  455.         Dim out As New System.Text.StringBuilder
  456.  
  457.         Dim i As Integer
  458.  
  459.         Do
  460.  
  461.             Dim enc(3) As Integer
  462.  
  463.             Dim chrs() As Integer = {0, 0, 0}
  464.  
  465.             For b As Integer = 0 To 3
  466.  
  467.                 enc(b) = key.IndexOf(input(i))
  468.  
  469.                 i = i + 1
  470.  
  471.             Next
  472.  
  473.             chrs(0) = (enc(0) << 2) Or (enc(1) >> 4)
  474.  
  475.             chrs(1) = (enc(1) And 15) << 4 Or (enc(2) >> 2)
  476.  
  477.             chrs(2) = (enc(2) And 3) << 6 Or enc(3)
  478.  
  479.             out.Append(Chr(chrs(0)))
  480.  
  481.             If enc(2) <> 64 Then out.Append(Chr(chrs(1)))
  482.  
  483.             If enc(3) <> 64 Then out.Append(Chr(chrs(2)))
  484.  
  485.         Loop While i < input.Length
  486.  
  487.         Return out.ToString
  488.  
  489.     End Function
  490.  
  491.     Public Function ZONG22_Encode(ByVal input As String) As String
  492.  
  493.         input = Uri.EscapeDataString(input)
  494.  
  495.         Dim key As String = "ZKj9n+yf0wDVX1s/5YbdxSo=ILaUpPBCHg8uvNO4klm6iJGhQ7eFrWczAMEq3RTt2"
  496.  
  497.         Dim out As New System.Text.StringBuilder
  498.  
  499.         Dim i As Integer
  500.  
  501.         Do
  502.  
  503.             Dim enc(3) As Integer
  504.  
  505.             Dim chrs As Integer() = {0, 0, 0}
  506.  
  507.             For b As Integer = 0 To 2
  508.  
  509.                 If i < input.Length Then chrs(b) = Asc(input(i))
  510.  
  511.                 i += 1
  512.  
  513.             Next
  514.  
  515.             enc(0) = chrs(0) >> 2
  516.  
  517.             enc(1) = ((chrs(0) And 3) << 4) Or (chrs(1) >> 4)
  518.  
  519.             enc(2) = ((chrs(1) And 15) << 2) Or (chrs(2) >> 6)
  520.  
  521.             enc(3) = chrs(2) And 63
  522.  
  523.             If chrs(1) = 0 Then
  524.  
  525.                 enc(2) = 64
  526.  
  527.                 enc(3) = 64
  528.  
  529.             End If
  530.  
  531.             If chrs(2) = 0 Then
  532.  
  533.                 enc(3) = 64
  534.  
  535.             End If
  536.  
  537.             For Each x As Integer In enc
  538.  
  539.                 out.Append(key(x))
  540.  
  541.             Next
  542.  
  543.         Loop While i < input.Length
  544.  
  545.         Return out.ToString
  546.  
  547.     End Function
  548.  
  549.     Public Function ZONG22_Decode(ByVal input As String) As String
  550.  
  551.         Dim key As String = "ZKj9n+yf0wDVX1s/5YbdxSo=ILaUpPBCHg8uvNO4klm6iJGhQ7eFrWczAMEq3RTt2"
  552.  
  553.         Dim out As New System.Text.StringBuilder
  554.  
  555.         Dim i As Integer
  556.  
  557.         Do
  558.  
  559.             Dim enc(3) As Integer
  560.  
  561.             Dim chrs() As Integer = {0, 0, 0}
  562.  
  563.             For b As Integer = 0 To 3
  564.  
  565.                 enc(b) = key.IndexOf(input(i))
  566.  
  567.                 i = i + 1
  568.  
  569.             Next
  570.  
  571.             chrs(0) = (enc(0) << 2) Or (enc(1) >> 4)
  572.  
  573.             chrs(1) = (enc(1) And 15) << 4 Or (enc(2) >> 2)
  574.  
  575.             chrs(2) = (enc(2) And 3) << 6 Or enc(3)
  576.  
  577.             out.Append(Chr(chrs(0)))
  578.  
  579.             If enc(2) <> 64 Then out.Append(Chr(chrs(1)))
  580.  
  581.             If enc(3) <> 64 Then out.Append(Chr(chrs(2)))
  582.  
  583.         Loop While i < input.Length
  584.  
  585.         Return out.ToString
  586.  
  587.     End Function
  588.  
  589.     Public Function TRIPO5_Encode(ByVal input As String) As String
  590.  
  591.         input = Uri.EscapeDataString(input)
  592.  
  593.         Dim key As String = "ghijopE+G78lmnIJQRXY=abcS/UVWdefABCs456tDqruvNOPwx2KLyz01M3Hk9ZFT"
  594.  
  595.         Dim out As New System.Text.StringBuilder
  596.  
  597.         Dim i As Integer
  598.  
  599.         Do
  600.  
  601.             Dim enc(3) As Integer
  602.  
  603.             Dim chrs As Integer() = {0, 0, 0}
  604.  
  605.             For b As Integer = 0 To 2
  606.  
  607.                 If i < input.Length Then chrs(b) = Asc(input(i))
  608.  
  609.                 i += 1
  610.  
  611.             Next
  612.  
  613.             enc(0) = chrs(0) >> 2
  614.  
  615.             enc(1) = ((chrs(0) And 3) << 4) Or (chrs(1) >> 4)
  616.  
  617.             enc(2) = ((chrs(1) And 15) << 2) Or (chrs(2) >> 6)
  618.  
  619.             enc(3) = chrs(2) And 63
  620.  
  621.             If chrs(1) = 0 Then
  622.  
  623.                 enc(2) = 64
  624.  
  625.                 enc(3) = 64
  626.  
  627.             End If
  628.  
  629.             If chrs(2) = 0 Then
  630.  
  631.                 enc(3) = 64
  632.  
  633.             End If
  634.  
  635.             For Each x As Integer In enc
  636.  
  637.                 out.Append(key(x))
  638.  
  639.             Next
  640.  
  641.         Loop While i < input.Length
  642.  
  643.         Return out.ToString
  644.  
  645.     End Function
  646.  
  647.     Public Function TRIPO5_Decode(ByVal input As String) As String
  648.  
  649.         Dim key As String = "ghijopE+G78lmnIJQRXY=abcS/UVWdefABCs456tDqruvNOPwx2KLyz01M3Hk9ZFT"
  650.  
  651.         Dim out As New System.Text.StringBuilder
  652.  
  653.         Dim i As Integer
  654.  
  655.         Do
  656.  
  657.             Dim enc(3) As Integer
  658.  
  659.             Dim chrs() As Integer = {0, 0, 0}
  660.  
  661.             For b As Integer = 0 To 3
  662.  
  663.                 enc(b) = key.IndexOf(input(i))
  664.  
  665.                 i = i + 1
  666.  
  667.             Next
  668.  
  669.             chrs(0) = (enc(0) << 2) Or (enc(1) >> 4)
  670.  
  671.             chrs(1) = (enc(1) And 15) << 4 Or (enc(2) >> 2)
  672.  
  673.             chrs(2) = (enc(2) And 3) << 6 Or enc(3)
  674.  
  675.             out.Append(Chr(chrs(0)))
  676.  
  677.             If enc(2) <> 64 Then out.Append(Chr(chrs(1)))
  678.  
  679.             If enc(3) <> 64 Then out.Append(Chr(chrs(2)))
  680.  
  681.         Loop While i < input.Length
  682.  
  683.         Return out.ToString
  684.  
  685.     End Function
  686.  
  687.  
  688.  
  689.     Public Function TIGO3FX_Encode(ByVal input As String) As String
  690.  
  691.         input = Uri.EscapeDataString(input)
  692.  
  693.         Dim key As String = "FrsxyzA8VtuvwDEqWZ/1+4klm67=cBCa5Ybdef0g2hij9nopMNO3GHIRSTJKLPQUX"
  694.  
  695.         Dim out As New System.Text.StringBuilder
  696.  
  697.         Dim i As Integer
  698.  
  699.         Do
  700.  
  701.             Dim enc(3) As Integer
  702.  
  703.             Dim chrs As Integer() = {0, 0, 0}
  704.  
  705.             For b As Integer = 0 To 2
  706.  
  707.                 If i < input.Length Then chrs(b) = Asc(input(i))
  708.  
  709.                 i += 1
  710.  
  711.             Next
  712.  
  713.             enc(0) = chrs(0) >> 2
  714.  
  715.             enc(1) = ((chrs(0) And 3) << 4) Or (chrs(1) >> 4)
  716.  
  717.             enc(2) = ((chrs(1) And 15) << 2) Or (chrs(2) >> 6)
  718.  
  719.             enc(3) = chrs(2) And 63
  720.  
  721.             If chrs(1) = 0 Then
  722.  
  723.                 enc(2) = 64
  724.  
  725.                 enc(3) = 64
  726.  
  727.             End If
  728.  
  729.             If chrs(2) = 0 Then
  730.  
  731.                 enc(3) = 64
  732.  
  733.             End If
  734.  
  735.             For Each x As Integer In enc
  736.  
  737.                 out.Append(key(x))
  738.  
  739.             Next
  740.  
  741.         Loop While i < input.Length
  742.  
  743.         Return out.ToString
  744.  
  745.     End Function
  746.  
  747.     Public Function TIGO3FX_Decode(ByVal input As String) As String
  748.  
  749.         Dim key As String = "FrsxyzA8VtuvwDEqWZ/1+4klm67=cBCa5Ybdef0g2hij9nopMNO3GHIRSTJKLPQUX"
  750.  
  751.         Dim out As New System.Text.StringBuilder
  752.  
  753.         Dim i As Integer
  754.  
  755.         Do
  756.  
  757.             Dim enc(3) As Integer
  758.  
  759.             Dim chrs() As Integer = {0, 0, 0}
  760.  
  761.             For b As Integer = 0 To 3
  762.  
  763.                 enc(b) = key.IndexOf(input(i))
  764.  
  765.                 i = i + 1
  766.  
  767.             Next
  768.  
  769.             chrs(0) = (enc(0) << 2) Or (enc(1) >> 4)
  770.  
  771.             chrs(1) = (enc(1) And 15) << 4 Or (enc(2) >> 2)
  772.  
  773.             chrs(2) = (enc(2) And 3) << 6 Or enc(3)
  774.  
  775.             out.Append(Chr(chrs(0)))
  776.  
  777.             If enc(2) <> 64 Then out.Append(Chr(chrs(1)))
  778.  
  779.             If enc(3) <> 64 Then out.Append(Chr(chrs(2)))
  780.  
  781.         Loop While i < input.Length
  782.  
  783.         Return out.ToString
  784.  
  785.     End Function
  786.  
  787.     Public Function FERON74_Encode(ByVal input As String) As String
  788.  
  789.         input = Uri.EscapeDataString(input)
  790.  
  791.         Dim key As String = "75XYTabcS/UVWdefADqr6RuvN8PBCsQtwx2KLyz+OM3Hk9ghi01ZFlmnjopE=GIJ4"
  792.  
  793.         Dim out As New System.Text.StringBuilder
  794.  
  795.         Dim i As Integer
  796.  
  797.         Do
  798.  
  799.             Dim enc(3) As Integer
  800.  
  801.             Dim chrs As Integer() = {0, 0, 0}
  802.  
  803.             For b As Integer = 0 To 2
  804.  
  805.                 If i < input.Length Then chrs(b) = Asc(input(i))
  806.  
  807.                 i += 1
  808.  
  809.             Next
  810.  
  811.             enc(0) = chrs(0) >> 2
  812.  
  813.             enc(1) = ((chrs(0) And 3) << 4) Or (chrs(1) >> 4)
  814.  
  815.             enc(2) = ((chrs(1) And 15) << 2) Or (chrs(2) >> 6)
  816.  
  817.             enc(3) = chrs(2) And 63
  818.  
  819.             If chrs(1) = 0 Then
  820.  
  821.                 enc(2) = 64
  822.  
  823.                 enc(3) = 64
  824.  
  825.             End If
  826.  
  827.             If chrs(2) = 0 Then
  828.  
  829.                 enc(3) = 64
  830.  
  831.             End If
  832.  
  833.             For Each x As Integer In enc
  834.  
  835.                 out.Append(key(x))
  836.  
  837.             Next
  838.  
  839.         Loop While i < input.Length
  840.  
  841.         Return out.ToString
  842.  
  843.     End Function
  844.  
  845.     Public Function FERON74_Decode(ByVal input As String) As String
  846.  
  847.         Dim key As String = "75XYTabcS/UVWdefADqr6RuvN8PBCsQtwx2KLyz+OM3Hk9ghi01ZFlmnjopE=GIJ4"
  848.  
  849.         Dim out As New System.Text.StringBuilder
  850.  
  851.         Dim i As Integer
  852.  
  853.         Do
  854.  
  855.             Dim enc(3) As Integer
  856.  
  857.             Dim chrs() As Integer = {0, 0, 0}
  858.  
  859.             For b As Integer = 0 To 3
  860.  
  861.                 enc(b) = key.IndexOf(input(i))
  862.  
  863.                 i = i + 1
  864.  
  865.             Next
  866.  
  867.             chrs(0) = (enc(0) << 2) Or (enc(1) >> 4)
  868.  
  869.             chrs(1) = (enc(1) And 15) << 4 Or (enc(2) >> 2)
  870.  
  871.             chrs(2) = (enc(2) And 3) << 6 Or enc(3)
  872.  
  873.             out.Append(Chr(chrs(0)))
  874.  
  875.             If enc(2) <> 64 Then out.Append(Chr(chrs(1)))
  876.  
  877.             If enc(3) <> 64 Then out.Append(Chr(chrs(2)))
  878.  
  879.         Loop While i < input.Length
  880.  
  881.         Return out.ToString
  882.  
  883.     End Function
  884.  
  885.     Public Function ZARA128_Encode(ByVal input As String) As String
  886.  
  887.         Dim out As New System.Text.StringBuilder
  888.  
  889.         For Each c As Char In input
  890.  
  891.             Dim temp As Integer = Asc(c) + 312
  892.  
  893.             out.Append(temp.ToString & " ")
  894.  
  895.         Next
  896.  
  897.         Return out.ToString.Substring(0, out.Length - 1)
  898.  
  899.     End Function
  900.  
  901.     Public Function ZARA128_Decode(ByVal input As String) As String
  902.  
  903.         Dim out As New System.Text.StringBuilder
  904.  
  905.         Dim data As String() = Split(input, " ")
  906.  
  907.         For Each s As String In data
  908.  
  909.             out.Append(Chr(Asc(s) - 312))
  910.  
  911.         Next
  912.  
  913.         Return out.ToString
  914.  
  915.     End Function
  916.  
  917.     Public Function BASE64_Encode(ByVal input As String) As String
  918.  
  919.         Return Convert.ToBase64String(System.Text.Encoding.ASCII.GetBytes(input))
  920.  
  921.     End Function
  922.  
  923.     Public Function BASE64_Decode(ByVal input As String) As String
  924.  
  925.         Return System.Text.Encoding.ASCII.GetString(Convert.FromBase64String(input))
  926.  
  927.     End Function
  928.  
  929.     Public Function ARMON64_Encrypt(ByVal message As String, Optional ByVal key As String = "ARMON64-CRYPO") As String
  930.  
  931.         Dim out As New System.Text.StringBuilder
  932.  
  933.         If key.Length < 3 Then Return message
  934.  
  935.         Dim intkey() As Byte = System.Text.Encoding.UTF8.GetBytes(key)
  936.  
  937.         Dim x As Integer
  938.  
  939.         Do While x < message.Length
  940.  
  941.             Dim hextemp As String = ""
  942.  
  943.             Dim y As String = ""
  944.  
  945.             If x > 0 Then y = "+"
  946.  
  947.             For i As Integer = x To Math.Round(key.Length / 2)
  948.  
  949.                 If i < message.Length Then hextemp += Hex(Asc(message(i)))
  950.  
  951.             Next
  952.  
  953.             Dim thenum As Double = "&H" & hextemp
  954.  
  955.             If Information.IsNumeric(thenum) = False Then Return message
  956.  
  957.             For z As Integer = 0 To key.Length - 1
  958.  
  959.                 Dim operation As Integer = z Mod 4
  960.  
  961.                 Select Case operation
  962.  
  963.                     Case 0
  964.  
  965.                         thenum += intkey(z)
  966.  
  967.                     Case 1
  968.  
  969.                         thenum /= intkey(z)
  970.  
  971.                     Case 2
  972.  
  973.                         thenum -= intkey(z)
  974.  
  975.                     Case 3
  976.  
  977.                         thenum *= 0.01 * intkey(z)
  978.  
  979.                 End Select
  980.  
  981.             Next
  982.  
  983.             out.Append(y & thenum)
  984.  
  985.             x += Math.Round(key.Length / 2)
  986.  
  987.         Loop
  988.  
  989.         Return out.ToString.Replace(",", ".")
  990.  
  991.     End Function
  992.  
  993.     Public Function ARMON64_Decrypt(ByVal message As String, Optional ByVal key As String = "ARMON64-CRYPO") As String
  994.  
  995.         Dim out As New System.Text.StringBuilder
  996.  
  997.         If key.Length < 6 Then Return message
  998.  
  999.         Dim intkey() As Byte = System.Text.Encoding.UTF8.GetBytes(key)
  1000.  
  1001.         message = message.Replace(".", ",")
  1002.  
  1003.         Dim oOutString As String() = Split(message, "+")
  1004.  
  1005.         For x As Integer = 0 To oOutString.Length - 1
  1006.  
  1007.             For z As Integer = key.Length - 1 To 0 Step -1
  1008.  
  1009.                 Dim operation As Integer = z Mod 4
  1010.  
  1011.                 Select Case operation
  1012.  
  1013.                     Case 0
  1014.  
  1015.                         oOutString(x) -= intkey(z)
  1016.  
  1017.                     Case 1
  1018.  
  1019.                         oOutString(x) *= intkey(z)
  1020.  
  1021.                     Case 2
  1022.  
  1023.                         oOutString(x) += intkey(z)
  1024.  
  1025.                     Case 3
  1026.  
  1027.                         oOutString(x) /= 0.01 * intkey(z)
  1028.  
  1029.                 End Select
  1030.  
  1031.             Next
  1032.  
  1033.             oOutString(x) = Hex(Math.Round(Double.Parse(oOutString(x))))
  1034.  
  1035.         Next
  1036.  
  1037.         For i As Integer = 0 To Join(oOutString).Length - 1 Step +2
  1038.  
  1039.             out.Append(Chr(("&H" & Join(oOutString).Substring(i, 2))))
  1040.  
  1041.         Next
  1042.  
  1043.         Return out.ToString
  1044.  
  1045.     End Function
  1046.  
  1047.     Public Function AER256_Encrypt(ByVal message As String, Optional ByVal key As String = "A256-CRYPO") As String
  1048.  
  1049.         Dim out As New System.Text.StringBuilder
  1050.  
  1051.         If key.Length < 10 Then Return message
  1052.  
  1053.         Dim intkey() As Byte = System.Text.Encoding.UTF8.GetBytes(key)
  1054.  
  1055.         Dim x As Integer
  1056.  
  1057.         Do While x < message.Length
  1058.  
  1059.             Dim hextemp As String = ""
  1060.  
  1061.             Dim y As String = ""
  1062.  
  1063.             If x > 0 Then y = ", "
  1064.  
  1065.             For i As Integer = x To Math.Round(key.Length / 2)
  1066.  
  1067.                 If i < message.Length Then hextemp += Hex(Asc(message(i)))
  1068.  
  1069.             Next
  1070.  
  1071.             Dim thenum As Double = "&H" & hextemp
  1072.  
  1073.             If Information.IsNumeric(thenum) = False Then Return message
  1074.  
  1075.             For z As Integer = 0 To key.Length - 1
  1076.  
  1077.                 Dim operation As Integer = z Mod 3
  1078.  
  1079.                 Select Case operation
  1080.  
  1081.                     Case 0
  1082.  
  1083.                         thenum += intkey(z)
  1084.  
  1085.                     Case 1
  1086.  
  1087.                         thenum /= intkey(z)
  1088.  
  1089.                     Case 2
  1090.  
  1091.                         thenum -= intkey(z)
  1092.  
  1093.                     Case 3
  1094.  
  1095.                         thenum *= 0.02 * intkey(z)
  1096.  
  1097.                 End Select
  1098.  
  1099.             Next
  1100.  
  1101.             Dim temp As String = thenum.ToString.Replace(",", ".")
  1102.  
  1103.             out.Append(y & temp)
  1104.  
  1105.             x += Math.Round(key.Length / 2)
  1106.  
  1107.         Loop
  1108.  
  1109.         Return out.ToString
  1110.  
  1111.     End Function
  1112.  
  1113.     Public Function AER256_Decrypt(ByVal message As String, Optional ByVal key As String = "A256-CRYPO") As String
  1114.  
  1115.         Dim out As New System.Text.StringBuilder
  1116.  
  1117.         If key.Length < 10 Then Return message
  1118.  
  1119.         Dim intkey() As Byte = System.Text.Encoding.UTF8.GetBytes(key)
  1120.  
  1121.  
  1122.  
  1123.         Dim oOutString As String() = Split(message, ", ")
  1124.  
  1125.         For i As Integer = 0 To oOutString.Length - 1
  1126.  
  1127.             oOutString(i) = oOutString(i).Replace(".", ",")
  1128.  
  1129.         Next
  1130.  
  1131.         For x As Integer = 0 To oOutString.Length - 1
  1132.  
  1133.             For z As Integer = key.Length - 1 To 0 Step -1
  1134.  
  1135.                 Dim operation As Integer = z Mod 3
  1136.  
  1137.                 Select Case operation
  1138.  
  1139.                     Case 0
  1140.  
  1141.                         oOutString(x) -= intkey(z)
  1142.  
  1143.                     Case 1
  1144.  
  1145.                         oOutString(x) *= intkey(z)
  1146.  
  1147.                     Case 2
  1148.  
  1149.                         oOutString(x) += intkey(z)
  1150.  
  1151.                     Case 3
  1152.  
  1153.                         oOutString(x) /= 0.02 * intkey(z)
  1154.  
  1155.                 End Select
  1156.  
  1157.             Next
  1158.  
  1159.             oOutString(x) = Hex(Math.Round(Double.Parse(oOutString(x))))
  1160.  
  1161.         Next
  1162.  
  1163.         For i As Integer = 0 To Join(oOutString).Length - 1 Step +2
  1164.  
  1165.             out.Append(Chr(("&H" & Join(oOutString).Substring(i, 2))))
  1166.  
  1167.         Next
  1168.  
  1169.         Return out.ToString
  1170.  
  1171.     End Function
  1172.  
  1173.     Public Function EZIP64_Encrypt(ByVal message As String, Optional ByVal key As String = "EZIP64-CRYPO") As String
  1174.  
  1175.         Dim out As New System.Text.StringBuilder
  1176.  
  1177.         If key.Length < 10 Then Return message
  1178.  
  1179.         Dim intkey() As Byte = System.Text.Encoding.UTF8.GetBytes(key)
  1180.  
  1181.         Dim x As Integer
  1182.  
  1183.         Do While x < message.Length
  1184.  
  1185.             Dim hextemp As String = ""
  1186.  
  1187.             Dim y As String = ""
  1188.  
  1189.             If x > 0 Then y = "/"
  1190.  
  1191.             For i As Integer = x To Math.Round(key.Length / 3)
  1192.  
  1193.                 If i < message.Length Then hextemp += Hex(Asc(message(i)))
  1194.  
  1195.             Next
  1196.  
  1197.             Dim thenum As Double = "&H" & hextemp
  1198.  
  1199.             If Information.IsNumeric(thenum) = False Then Return message
  1200.  
  1201.             For z As Integer = 0 To key.Length - 1
  1202.  
  1203.                 Dim operation As Integer = z Mod 4
  1204.  
  1205.                 Select Case operation
  1206.  
  1207.                     Case 0
  1208.  
  1209.                         thenum += intkey(z)
  1210.  
  1211.                     Case 1
  1212.  
  1213.                         thenum /= intkey(z)
  1214.  
  1215.                     Case 2
  1216.  
  1217.                         thenum -= intkey(z)
  1218.  
  1219.                     Case 3
  1220.  
  1221.                         thenum *= 0.02 * intkey(z)
  1222.  
  1223.                 End Select
  1224.  
  1225.             Next
  1226.  
  1227.             Dim temp As String = thenum.ToString.Replace(",", ".")
  1228.  
  1229.             out.Append(y & temp)
  1230.  
  1231.             x += Math.Round(key.Length / 3)
  1232.  
  1233.         Loop
  1234.  
  1235.         Return out.ToString
  1236.  
  1237.     End Function
  1238.  
  1239.     Public Function EZIP64_Decrypt(ByVal message As String, Optional ByVal key As String = "EZIP64-CRYPO") As String
  1240.  
  1241.         Dim out As New System.Text.StringBuilder
  1242.  
  1243.         If key.Length < 10 Then Return message
  1244.  
  1245.         Dim intkey() As Byte = System.Text.Encoding.UTF8.GetBytes(key)
  1246.  
  1247.  
  1248.  
  1249.         Dim oOutString As String() = Split(message, "/")
  1250.  
  1251.         For i As Integer = 0 To oOutString.Length - 1
  1252.  
  1253.             oOutString(i) = oOutString(i).Replace(".", ",")
  1254.  
  1255.         Next
  1256.  
  1257.         For x As Integer = 0 To oOutString.Length - 1
  1258.  
  1259.             For z As Integer = key.Length - 1 To 0 Step -1
  1260.  
  1261.                 Dim operation As Integer = z Mod 4
  1262.  
  1263.                 Select Case operation
  1264.  
  1265.                     Case 0
  1266.  
  1267.                         oOutString(x) -= intkey(z)
  1268.  
  1269.                     Case 1
  1270.  
  1271.                         oOutString(x) *= intkey(z)
  1272.  
  1273.                     Case 2
  1274.  
  1275.                         oOutString(x) += intkey(z)
  1276.  
  1277.                     Case 3
  1278.  
  1279.                         oOutString(x) /= 0.02 * intkey(z)
  1280.  
  1281.                 End Select
  1282.  
  1283.             Next
  1284.  
  1285.             oOutString(x) = Hex(Math.Round(Double.Parse(oOutString(x))))
  1286.  
  1287.         Next
  1288.  
  1289.         For i As Integer = 0 To Join(oOutString).Length - 1 Step +2
  1290.  
  1291.             out.Append(Chr(("&H" & Join(oOutString).Substring(i, 2))))
  1292.  
  1293.             Dim j As String = out.ToString
  1294.  
  1295.         Next
  1296.  
  1297.         Return out.ToString
  1298.  
  1299.     End Function
  1300.  
  1301.     Public Function OKTO3_Encrypt(ByVal message As String, Optional ByVal key As String = "PASS:OKTO3-CRYPO") As String
  1302.  
  1303.         Dim out As New System.Text.StringBuilder
  1304.  
  1305.         If key.Length < 10 Then Return message
  1306.  
  1307.         Dim intkey() As Byte = System.Text.Encoding.UTF8.GetBytes(key)
  1308.  
  1309.         Dim x As Integer
  1310.  
  1311.         Do While x < message.Length
  1312.  
  1313.             Dim hextemp As String = ""
  1314.  
  1315.             Dim y As String = ""
  1316.  
  1317.             If x > 0 Then y = ", "
  1318.  
  1319.             For i As Integer = x To Math.Round(key.Length / 6)
  1320.  
  1321.                 If i < message.Length Then hextemp += Hex(Asc(message(i)))
  1322.  
  1323.             Next
  1324.  
  1325.             Dim thenum As Double = "&H" & hextemp
  1326.  
  1327.             If Information.IsNumeric(thenum) = False Then Return message
  1328.  
  1329.             For z As Integer = 0 To key.Length - 1
  1330.  
  1331.                 Dim operation As Integer = z Mod 3
  1332.  
  1333.                 Select Case operation
  1334.  
  1335.                     Case 0
  1336.  
  1337.                         thenum += intkey(z)
  1338.  
  1339.                     Case 1
  1340.  
  1341.                         thenum /= intkey(z)
  1342.  
  1343.                     Case 2
  1344.  
  1345.                         thenum -= intkey(z)
  1346.  
  1347.                     Case 3
  1348.  
  1349.                         thenum *= 500.005 * intkey(z)
  1350.  
  1351.                 End Select
  1352.  
  1353.             Next
  1354.  
  1355.             Dim temp As String = thenum.ToString.Replace(",", ".")
  1356.  
  1357.             out.Append(y & temp)
  1358.  
  1359.             x += Math.Round(key.Length / 6)
  1360.  
  1361.         Loop
  1362.  
  1363.         Return out.ToString
  1364.  
  1365.     End Function
  1366.  
  1367.     Public Function OKTO3_Decrypt(ByVal message As String, Optional ByVal key As String = "PASS:OKTO3-CRYPO") As String
  1368.  
  1369.         Dim out As New System.Text.StringBuilder
  1370.  
  1371.         If key.Length < 10 Then Return message
  1372.  
  1373.         Dim intkey() As Byte = System.Text.Encoding.UTF8.GetBytes(key)
  1374.  
  1375.  
  1376.  
  1377.         Dim oOutString As String() = Split(message, ", ")
  1378.  
  1379.         For i As Integer = 0 To oOutString.Length - 1
  1380.  
  1381.             oOutString(i) = oOutString(i).Replace(".", ",")
  1382.  
  1383.         Next
  1384.  
  1385.         For x As Integer = 0 To oOutString.Length - 1
  1386.  
  1387.             For z As Integer = key.Length - 1 To 0 Step -1
  1388.  
  1389.                 Dim operation As Integer = z Mod 3
  1390.  
  1391.                 Select Case operation
  1392.  
  1393.                     Case 0
  1394.  
  1395.                         oOutString(x) -= intkey(z)
  1396.  
  1397.                     Case 1
  1398.  
  1399.                         oOutString(x) *= intkey(z)
  1400.  
  1401.                     Case 2
  1402.  
  1403.                         oOutString(x) += intkey(z)
  1404.  
  1405.                     Case 3
  1406.  
  1407.                         oOutString(x) /= 0.02 * intkey(z)
  1408.  
  1409.                 End Select
  1410.  
  1411.             Next
  1412.  
  1413.             oOutString(x) = Hex(Math.Round(Double.Parse(oOutString(x))))
  1414.  
  1415.         Next
  1416.  
  1417.         For i As Integer = 0 To Join(oOutString).Length - 1 Step +2
  1418.  
  1419.             out.Append(Chr(("&H" & Join(oOutString).Substring(i, 2))))
  1420.  
  1421.         Next
  1422.  
  1423.         Return out.ToString
  1424.  
  1425.     End Function
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement