Save crypt hash security:
    $usuario = new User();
    $usuario->password = $this->security->hash($this->request->getPost("pass"));
    if (!$usuario->save()) {
        foreach ($usuario->getMessages() as $message) {
        $this->flash->error($message);
        }
        $this->dispatcher->forward([
            'controller' => "usuario",
            'action' => 'new'
        ]);
        return;
    }now, How to decrypt hash security to send my form:
        $usuario = User::findFirstByid($iduser);
        $this->tag->setDefault("pass", $this->encryption->decrypt($usuario->password));I having a error: Notice: Access to undefined property encryption in ...