Changeset 6909
- Timestamp:
- 01/03/08 07:46:15 (11 months ago)
- Files:
-
- plugins/dwCryptPlugin/LICENSE (modified) (1 diff)
- plugins/dwCryptPlugin/README (modified) (1 diff)
- plugins/dwCryptPlugin/lib/sfCrypt.class.php (modified) (1 diff)
- plugins/dwCryptPlugin/package.xml (modified) (3 diffs)
- plugins/dwCryptPlugin/test/sfCryptTest.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
plugins/dwCryptPlugin/LICENSE
r997 r6909 1 Copyright (c) 2004-2006 Dustin Whittle1 The MIT License 2 2 3 Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 3 Permission is hereby granted, free of charge, to any person obtaining a copy 4 of this software and associated documentation files (the "Software"), to deal 5 in the Software without restriction, including without limitation the rights 6 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 copies of the Software, and to permit persons to whom the Software is 8 furnished to do so, subject to the following conditions: 4 9 5 The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 10 The above copyright notice and this permission notice shall be included in 11 all copies or substantial portions of the Software. 6 12 7 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 13 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 THE SOFTWARE. plugins/dwCryptPlugin/README
r2860 r6909 1 = sfCryptPlugin plugin =1 = dwCryptPlugin = 2 2 3 The ` sfCryptPlugin` provides abstraction for the mcrypt library.3 The `dwCryptPlugin` provides abstraction for the mcrypt library. 4 4 5 5 == Installation == 6 6 7 7 * Install the plugin 8 8 9 9 {{{ 10 symfony plugin-install http://plugins.symfony-project. com/sfCryptPlugin10 symfony plugin-install http://plugins.symfony-project.org/dwCryptPlugin 11 11 }}} 12 12 plugins/dwCryptPlugin/lib/sfCrypt.class.php
r2520 r6909 15 15 * This class provides an abstraction layer to the PHP module mcrypt. Provides encryption/decryption. 16 16 * 17 * @package symfony.runtime.addon 17 * @package symfony 18 * @subpackage dwCryptPlugin 18 19 * @author Dustin Whittle <dustin.whittle@symfony-project.com> 19 20 * @version SVN: $Id$ 20 21 */ 21 22 22 class sfCrypt 23 23 { plugins/dwCryptPlugin/package.xml
r2888 r6909 1 1 <?xml version="1.0" encoding="UTF-8"?> 2 2 <package packagerversion="1.4.1" version="2.0" xmlns="http://pear.php.net/dtd/package-2.0" xmlns:tasks="http://pear.php.net/dtd/tasks-1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://pear.php.net/dtd/tasks-1.0 http://pear.php.net/dtd/tasks-1.0.xsd http://pear.php.net/dtd/package-2.0 http://pear.php.net/dtd/package-2.0.xsd"> 3 <name> sfCryptPlugin</name>4 <channel>pear.symfony-project. com</channel>5 <summary> sfCryptPlugin</summary>6 <description> symfony encryption plugin with support for mcrypt or PEAR Crypt_Blowfish.</description>3 <name>dwCryptPlugin</name> 4 <channel>pear.symfony-project.org</channel> 5 <summary>dwCryptPlugin</summary> 6 <description>dwCryptPlugin with support for mcrypt or PEAR Crypt_Blowfish.</description> 7 7 <lead> 8 8 <name>Dustin Whittle</name> 9 9 <user>dwhittle</user> 10 <email>dustin.whittle@symfony-project. com</email>10 <email>dustin.whittle@symfony-project.org</email> 11 11 <active>yes</active> 12 12 </lead> 13 <date>200 6-11-29</date>13 <date>2008-01-01</date> 14 14 <version> 15 <release>1.0. 3</release>16 <api>1.0. 2</api>15 <release>1.0.0</release> 16 <api>1.0.0</api> 17 17 </version> 18 18 <stability> … … 20 20 <api>stable</api> 21 21 </stability> 22 <license uri="http://www.symfony-project. com/license">MIT license</license>22 <license uri="http://www.symfony-project.org/content/license">MIT license</license> 23 23 <notes>-</notes> 24 24 <contents> … … 47 47 <package> 48 48 <name>symfony</name> 49 <channel>pear.symfony-project. com</channel>49 <channel>pear.symfony-project.org</channel> 50 50 <min>1.0.0</min> 51 <max>1.1.0</max> 52 <exclude>1.1.0</exclude> 51 <max>1.2.0</max> 53 52 </package> 54 53 </required> plugins/dwCryptPlugin/test/sfCryptTest.php
r2520 r6909 1 1 <?php 2 3 /* 4 * @package symfony 5 * @subpackage dwCryptPlugin 6 * @author Dustin Whittle <dustin.whittle@symfony-project.com> 7 * @version SVN: $Id$ 8 */ 2 9 3 10 require_once(dirname(__FILE__).'/../../../test/bootstrap/unit.php');