예제 #1
0
파일: Authenticate.cs 프로젝트: mind0n/hive
        public static new bool RememberAuthenticate()
        {
            BasicPassport bp = new SimplePassport();

            return(bp.RememberAuthenticate());
        }
예제 #2
0
파일: Authenticate.cs 프로젝트: mind0n/hive
        public static new bool FormAuthenticate(string uname, string clientHash, string lastTicket)
        {
            BasicPassport bp = new SimplePassport();

            return(bp.FormAuthenticate(uname, clientHash, lastTicket));
        }
예제 #3
0
파일: Authenticate.cs 프로젝트: mind0n/hive
        public static new void Logout()
        {
            BasicPassport bp = new SimplePassport();

            bp.Logout();
        }
예제 #4
0
파일: Authenticate.cs 프로젝트: mind0n/hive
        public static new void Forget()
        {
            BasicPassport bp = new SimplePassport();

            bp.Forget();
        }
예제 #5
0
파일: Authenticate.cs 프로젝트: mind0n/hive
        public static new void Remember(string uname, string hash)
        {
            BasicPassport bp = new SimplePassport();

            bp.Remember(uname, hash);
        }