From 3bb123c3d525829ab57a86206d94c9aa24ed4fd8 Mon Sep 17 00:00:00 2001 From: terrafrost Date: Sat, 30 Aug 2014 19:44:12 -0500 Subject: [PATCH] ASN1: CS adjustment (rm whitespace at eol) --- phpseclib/File/ASN1.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpseclib/File/ASN1.php b/phpseclib/File/ASN1.php index 31cc517e..4bdf13ea 100644 --- a/phpseclib/File/ASN1.php +++ b/phpseclib/File/ASN1.php @@ -313,7 +313,7 @@ class File_ASN1 $length = ord($this->_string_shift($encoded)); $start++; if ( $length == 0x80 ) { // indefinite length - // "[A sender shall] use the indefinite form (see 8.1.3.6) if the encoding is constructed and is not all + // "[A sender shall] use the indefinite form (see 8.1.3.6) if the encoding is constructed and is not all // immediately available." -- paragraph 8.1.3.2.c $length = strlen($encoded); } elseif ( $length & 0x80 ) { // definite length, long form