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.


Constructor Index

 o PassField()

Method Index

 o CryptChallange(String)
Our Crypt Algo - Covert into an array of bytes, crypt convert to string back again.
 o getChallenge(String)
This method calls the getChallenge method that crypts the string
 o getURLEncoded(String)
This method URLEncodes a given string
 o init()

Constructors

 o PassField
 public PassField()

Methods

 o init
 public void init()
Overrides:
init in class Applet
 o getChallenge
 public String getChallenge(String lname)
This method calls the getChallenge method that crypts the string

 o getURLEncoded
 public String getURLEncoded(String lname)
This method URLEncodes a given string

 o CryptChallange
 public String CryptChallange(String password)
Our Crypt Algo - Covert into an array of bytes, crypt convert to string back again.