Subversion Repositories oidplus

Rev

Rev 461 | Rev 511 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 461 Rev 462
Line 17... Line 17...
17
 * limitations under the License.
17
 * limitations under the License.
18
 */
18
 */
19
 
19
 
20
class OIDplusRAAuthInfo {
20
class OIDplusRAAuthInfo {
21
 
21
 
22
        public $salt;
22
        private $salt;
23
        public $authKey;
23
        private $authKey;
24
 
24
 
25
        public function setSalt($salt) {
25
        public function setSalt($salt) {
26
                if (strlen($salt) > 100) throw new OIDplusException(_L('Field %1 is too long. Max allowed %2','Salt',100));
26
                if (strlen($salt) > 100) throw new OIDplusException(_L('Field %1 is too long. Max allowed %2','Salt',100));
27
                $this->salt = $salt;
27
                $this->salt = $salt;
28
        }
28
        }