Changeset 14367


Ignore:
Timestamp:
2007-08-14T12:39:11+12:00 (17 years ago)
Author:
qq6
Message:

decrypt passwords when read in users' info from a txt file

File:
1 edited

Legend:

Unmodified
Added
Removed
  • greenstone3/trunk/src/java/org/greenstone/gsdl3/util/txt2usersDB.java

    r14336 r14367  
    4343            }
    4444            if (field.equals("password")){
    45             password=str.substring(str.indexOf(">")+1,str.length());
     45            password=dw.rot13(str.substring(str.indexOf(">")+1,str.length()));
    4646            }
    4747            if (field.equals("username")){
Note: See TracChangeset for help on using the changeset viewer.