Package org.solinger.cracklib

Examples of org.solinger.cracklib.Packer


        if (this.dictFile == null) {
            return null; // the dictionary file is null. doesn't check.
        }

        String ret = null;
        Packer p = null;
        try {
            p = new Packer(this.dictFile, "r");
            ret = CrackLib.fascistLook(p, password);
        } catch (IOException e) {
            ret = e.getMessage();
        } finally {
            if (p != null) {
                try {
                    p.close();
                } catch (IOException e) {
                    ret = e.getMessage();
                }
            }
        }
View Full Code Here

TOP

Related Classes of org.solinger.cracklib.Packer

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.