- * Create a file filled with zeros.
- * @param $size size of the file.
- * @return a string corresponding to an id or the string "Error"
- */
-function
-jirafeau_block_init ($size)
-{
- if (!ctype_digit ($size) || $size <= 0)
- return "Error";
-
- /* Create folder. */
- $id;
- do
- {
- $id = jirafeau_gen_random (32);
- $p = VAR_BLOCK . s2p ($id);
- } while (file_exists ($p));
- @mkdir ($p, 0755, true);
- if (!file_exists ($p))
- {
- echo "Error";
- return;
- }
-
- /* Create block. */
- $p .= $id;
- $h = fopen ($p, 'w');
- $fill = str_repeat ("\0", 1024);
- for ($cnt = 0; $cnt < $size; $cnt += 1024)
- {
- if ($size - $cnt < 1024)
- $fill = str_repeat ("\0", $size - $cnt);
- if (fwrite ($h, $fill) === false)
- {
- fclose ($h);
- jirafeau_block_delete_ ($id);
- return "Error";
- }
- }
- fclose ($h);
-
- /* Generate a write/delete code. */
- $code = jirafeau_gen_random (12);
-
- /* Add block infos. */
- if (file_put_contents ($p . '_infos', date ('U') . NL . $size . NL . $code) === FALSE)
- {
- jirafeau_block_delete_ ($id);
- return "Error";
- }
-
- return $id . NL . $code;
-}
-
-/**
- * Read some data in a block.
- * @param $id identifier of the block
- * @param $start where to read data (starting from zero).
- * @param $length length to read.
- * @return echo data
- */
+ * Crypt file and returns decrypt key.
+ * @param $fp_src file path to the file to crypt.
+ * @param $fp_dst file path to the file to write crypted file (could be the same).
+ * @return decrypt key composed of the key and the iv separated by a point ('.')
+ */