Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
U
UserAdminV2
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
庄欣
UserAdminV2
Commits
bb0967cc
Commit
bb0967cc
authored
Feb 16, 2012
by
Taylor Otwell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
throw exception if padding is invalid.
parent
1324ba36
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
1 deletions
+14
-1
laravel/crypter.php
+14
-1
No files found.
laravel/crypter.php
View file @
bb0967cc
...
@@ -131,7 +131,20 @@ class Crypter {
...
@@ -131,7 +131,20 @@ class Crypter {
{
{
$pad
=
ord
(
$value
[(
$length
=
Str
::
length
(
$value
))
-
1
]);
$pad
=
ord
(
$value
[(
$length
=
Str
::
length
(
$value
))
-
1
]);
return
substr
(
$value
,
0
,
$length
-
$pad
);
if
(
$pad
and
$pad
<
static
::
$block
)
{
// If the correct padding is present on the string, we will remove
// it and return the value. Otherwise, we'll throw an exception
// as the padding appears to have been changed.
if
(
preg_match
(
'/'
.
chr
(
$pad
)
.
'{'
.
$pad
.
'}$/'
,
$value
))
{
return
substr
(
$value
,
0
,
$length
-
$pad
);
}
throw
new
\Exception
(
"Decryption error. Padding is invalid."
);
}
return
$value
;
}
}
/**
/**
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment