Examples of md5_funk()


Examples of funkcije.Globalne_funkcije.md5_funk()

        Globalni_parametri globalni_parametri = Globalni_parametri.daj_instancu_klase();
        Globalne_funkcije globalne_funkcije = new Globalne_funkcije();
        //pass mora biti KozinkaKorisnickiIme
        String user_pass = globalni_parametri.getUser_pass()+globalni_parametri.getUser_name();
        String korisnik = "CREATE USER " + globalni_parametri.getUser_name()
                + " LOGIN ENCRYPTED PASSWORD 'md5" + globalne_funkcije.md5_funk(user_pass) + "'";
        System.out.print(korisnik);
/* za MySQL
        String upit = "GRANT DELETE, INSERT, SELECT, UPDATE ON `" + user_database + "`.* TO "
                + "'" + globalni_parametri.getUser_name() + "'@'%' IDENTIFIED BY '"
                + globalni_parametri.getUser_pass() + "'";
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.