#!/bin/sh


printf "%s\n%s" $2 $3 | ecryptfs-wrap-passphrase /var/www/keys/$1
if [ $? -eq 0 ] ;
then
	exit 0
else
	exit 1
fi

