public function setPassword($new)
 {
     $this->salt = Security::makeRandomString(10);
     $this->password = Security::PBKDF2($new, $this->salt, $this->algo, $this->cycles, $this->iterations);
 }