Author: chabotc
Date: Sat Aug 23 07:50:30 2008
New Revision: 688335
URL: http://svn.apache.org/viewvc?rev=688335&view=rev
Log:
Changed cipherkKey and hmacKey from private to protected vars
Modified:
incubator/shindig/trunk/php/src/common/samplecontainer/BasicBlobCrypter.php
Modified:
incubator/shindig/trunk/php/src/common/samplecontainer/BasicBlobCrypter.php
URL:
http://svn.apache.org/viewvc/incubator/shindig/trunk/php/src/common/samplecontainer/BasicBlobCrypter.php?rev=688335&r1=688334&r2=688335&view=diff
==============================================================================
--- incubator/shindig/trunk/php/src/common/samplecontainer/BasicBlobCrypter.php
(original)
+++ incubator/shindig/trunk/php/src/common/samplecontainer/BasicBlobCrypter.php
Sat Aug 23 07:50:30 2008
@@ -44,8 +44,8 @@
private $UTF8 = "UTF-8";
- private $cipherKey;
- private $hmacKey;
+ protected $cipherKey;
+ protected $hmacKey;
protected $allowPlaintextToken;
public function __construct()