Tag Archives: d'authentification

BCrypt Salts, PHP et MySql

When my bcrypt hash is stored into the database it contains the salt and the hash together.
From my understanding is that the the salt contains $2a$ to define bcrypt and two digits as the work amount. (Ie 10) Il… Continuer la lecture

Tagged , , , | Laisser un commentaire

Prevent sessions from expiring and causing errors

My question is more of a conceptual one, since I’m rather new to working with users and sessions.
My current setup is Codeigniter running with the Tank Auth user library
My problems I’m experiencing are, the users are being loggedContinuer la lecture

Tagged , , , | Laisser un commentaire

Authentification à l'aide de savon ID de session

I am building an API using Zend Soap and there has to be some sort of authentication to actually use the API. Also I don’t want the user credentials to be sent over the net each time a request isContinuer la lecture

Tagged , , , , | 1 Comment

Simple SSO system like Google Identity Toolkit but without the locked UI?

The Google Identity Toolkit is awesome. So clean and easy to set up! Trouble is, it forces you to use its UI, which isn’t working for me. Is there anything else out there that will let the visitor click aContinuer la lecture

Tagged , , , , | Laisser un commentaire

Groupe PRS-T1 navigateur pour télécharger le fichier avec. Htaccess-authentification

I have a php-download script that looks like this:

<?php
header("Pragma: public"); // required
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Cache-Control: private",false); // required for certain browsers
header("Content-Description: File Transfer");
header("Content-Disposition: attachment; filename="$file"");
header("Content-Type: $mimeType");
header("Content-Transfer-Encoding: binary");
header("Content-Length: $size");
// 

Continuer la lecture

Tagged , , , , | Laisser un commentaire

php authentication: everyone has access

My authentication script used to work (Je pense que) but after I installed kohana and altered a few things in apache my script stopped working.
My php script is very simple:

function authentifizieren() {
    header('WWW-Authenticate: Basic realm="Test Authentication System"');
    header('HTTP/1.0 401 

Continuer la lecture

Tagged , , | Laisser un commentaire

Dynamic Apache authentication via PHP

I would like to implement a dynamic authentication process using Apache and PHP.
My current project is break into two parts:

I have a classic LAMP project running, where users already have a login/password that I use to grant themContinuer la lecture

Tagged , , , , | 1 Comment

Authentification de l'application Facebook en utilisant le SDK PHP

I’m currently trying to create a canvas application for Facebook and I’m trying to get it so that the user has to verify they want to authorise the application before it runs.
I’m trying to do this with the PHPContinuer la lecture

Tagged , , , | 2 Commentaires

d'authentification dans iOS – pouvez-vous utiliser les cookies par session?

I’d like to serve info from PHP to an iPhone app based on what user’s logged in. Can I go the session/cookie route of authenticating requests from the app or do I have to use some sort of token authentication?… Continuer la lecture

Tagged , , | 1 Comment
10 pages