Code

Additional multiple edit checkin.
[gosa.git] / include / class_password-methods-heimdal.inc
1 <?php
2 /*
3    This code is part of GOsa (https://gosa.gonicus.de)
4    Copyright (C) 2004  Fabian Hickert 
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 2 of the License, or
9    (at your option) any later version.
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
16    You should have received a copy of the GNU General Public License
17    along with this program; if not, write to the Free Software
18    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  */
22 class passwordMethodheimdal extends passwordMethod
23 {
24         function passwordMethodheimdal(&$config)  
25         {
26     $this->config= $config;
27         }
30         function is_available()
31         {
32     # Check if heimdal information is available
33     # in configuration and return true/false
34     return true;
35         }
38         function generate_hash($pwd)
39         {
40     $mode= "kerberos";
41     if (isset($this->config->current['KRBSASL']) && preg_match('/^true$/i', $this->config->current['KRBSASL'])){
42       $mode= "sasl";
43     }
45     return "{".$mode."}".$this->attrs['uid'][0]."@".$cfg= $this->config->data['SERVERS']['KERBEROS']['REALM'];
46         }
49   function remove_from_parent()
50   {
51     # Find and remove kerberos entry below $this->dn
52   }
55   function set_password()
56   {
57     # Add or modify kerberos entry below $this->dn
58   }
61   function get_hash_name()
62   {
63     $mode= "kerberos";
64     if (isset($this->config->current['KRBSASL']) && preg_match('/^true$/i', $this->config->current['KRBSASL'])){
65       $mode= "sasl";
66     }
67     return "$mode";
68   }
71   function is_configurable()
72   {
73     return TRUE;
74   }
77   function configure()
78   {
79     echo "Show dialog";
80   }
82 }
84 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
85 ?>