Skip to content

Instantly share code, notes, and snippets.

@ryantenney
Created August 20, 2010 22:23
Show Gist options
  • Save ryantenney/541325 to your computer and use it in GitHub Desktop.
Save ryantenney/541325 to your computer and use it in GitHub Desktop.
<?php
// helper func for Cherokee webserver's hidden downloads module
function secure_download ($prefix, $url, $secret) {
$time = sprintf('%08x', time());
return "$prefix/".md5($secret.$url.$time)."/$time$url";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment