Initialized IDE-project with existing files

This commit is contained in:
djpbessems 2019-01-16 14:40:06 +01:00
parent f1f973ff04
commit 6e2b5c0ca6
1 changed files with 4 additions and 4 deletions

View File

@ -18,10 +18,10 @@ function authenticateLDAP (string $username, string $password) {
$strFullname = ldap_get_entries($ds, $ldapSearchResults)[0]['cn'][0];
// Create JWT-payload
$jwtPayload = [
'iat' => time(), // Issued at: time when the token was generated
'iss' => $_SERVER['SERVER_NAME'], // Issuer
'sub' => $strGivenname, // Subject (ie. username)
'name' => $strFullname // Full name (as retrieved from AD)
'iat' => time(), // Issued at: time when the token was generated
'iss' => $_SERVER['SERVER_NAME'], // Issuer
'sub' => $strGivenname, // Subject (ie. username)
'name' => $strFullname // Full name (as retrieved from AD)
];
$secureToken = JWT::encode($jwtPayload, base64_decode($settings->JWT['PrivateKey_base64']));