You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@shindig.apache.org by ch...@apache.org on 2008/08/23 16:50:31 UTC

svn commit: r688335 - /incubator/shindig/trunk/php/src/common/samplecontainer/BasicBlobCrypter.php

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()