Package net.solosky.maplefetion.util

Examples of net.solosky.maplefetion.util.PasswordEncrypter


      b.append("sid="+Integer.toString(user.getFetionId()));
    }else{
      throw new IllegalStateException("couldn't find valid mobile or fetionId to sign in..");
    }
    b.append("&domains=fetion.com.cn%3bm161.com.cn%3bwww.ikuwa.cn");
    b.append("&digest="+(new PasswordEncrypter().encrypt(user.getPassword())));    //就是用以前写的密码加密工具,我在这里很郁闷。。
    if(pid!=null) {    //这两个字段是用于验证码验证的
      b.append("&pid="+pid);
      b.append("&pic="+pic);
    }
    return b.toString();
View Full Code Here

TOP

Related Classes of net.solosky.maplefetion.util.PasswordEncrypter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.