Class PassField
java.lang.Object
|
+----java.awt.Component
|
+----java.awt.Container
|
+----java.awt.Panel
|
+----java.applet.Applet
|
+----PassField
- public class PassField
- extends Applet
This Class takes a string and can URLEncode or crypt it.
-
PassField()
-
-
CryptChallange(String)
- Our Crypt Algo - Covert into an array of bytes, crypt convert to
string back again.
-
getChallenge(String)
- This method calls the getChallenge method that crypts the string
-
getURLEncoded(String)
- This method URLEncodes a given string
-
init()
-
PassField
public PassField()
init
public void init()
- Overrides:
- init in class Applet
getChallenge
public String getChallenge(String lname)
- This method calls the getChallenge method that crypts the string
getURLEncoded
public String getURLEncoded(String lname)
- This method URLEncodes a given string
CryptChallange
public String CryptChallange(String password)
- Our Crypt Algo - Covert into an array of bytes, crypt convert to
string back again.