Package org.geoserver.security.password

Examples of org.geoserver.security.password.GeoServerPBEPasswordEncoder


        return digestPwe;
    }
   
    protected GeoServerPBEPasswordEncoder createStrongPbePasswordEncoder(
        GeoServerSecurityManager secMgr) throws IOException {
        GeoServerPBEPasswordEncoder strongPbePwe = new GeoServerPBEPasswordEncoder();
        strongPbePwe.setBeanName("strongPbePasswordEncoder");
        strongPbePwe.setPrefix("crypt2");
        strongPbePwe.setProviderName("BC");
        strongPbePwe.setAvailableWithoutStrongCryptogaphy(false);
        strongPbePwe.initialize(secMgr);
        return strongPbePwe;
    }
View Full Code Here


        return strongPbePwe;
    }
   
    protected GeoServerPBEPasswordEncoder createPbePasswordEncoder(GeoServerSecurityManager secMgr)
        throws IOException {
        GeoServerPBEPasswordEncoder pbePwe = new GeoServerPBEPasswordEncoder();
        pbePwe.setBeanName("pbePasswordEncoder");
        pbePwe.setPrefix("crypt1");
        pbePwe.setAlgorithm("PBEWITHMD5ANDDES");
        pbePwe.initialize(secMgr);
        return pbePwe;
    }
View Full Code Here

TOP

Related Classes of org.geoserver.security.password.GeoServerPBEPasswordEncoder

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.