Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
C
common
Project
Project
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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
曲欣亮
common
Commits
88089064
Commit
88089064
authored
Dec 29, 2018
by
Quxl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
x
parent
0a7b4ff1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
5 deletions
+4
-5
MD5Util.java
src/main/java/com/egolm/common/MD5Util.java
+4
-5
No files found.
src/main/java/com/egolm/common/MD5Util.java
View file @
88089064
...
@@ -5,7 +5,7 @@ package com.egolm.common;
...
@@ -5,7 +5,7 @@ package com.egolm.common;
import
java.security.MessageDigest
;
import
java.security.MessageDigest
;
import
java.util.Iterator
;
import
java.util.Iterator
;
import
java.util.Map
;
import
java.util.Map
.Entry
;
import
java.util.Set
;
import
java.util.Set
;
import
java.util.SortedMap
;
import
java.util.SortedMap
;
import
java.util.TreeMap
;
import
java.util.TreeMap
;
...
@@ -17,13 +17,12 @@ public class MD5Util {
...
@@ -17,13 +17,12 @@ public class MD5Util {
* @param parameters
* @param parameters
* @return
* @return
*/
*/
@SuppressWarnings
(
"unchecked"
)
public
static
String
createSign
(
String
characterEncoding
,
SortedMap
<
Object
,
Object
>
parameters
){
public
static
String
createSign
(
String
characterEncoding
,
SortedMap
<
Object
,
Object
>
parameters
){
StringBuffer
sb
=
new
StringBuffer
();
StringBuffer
sb
=
new
StringBuffer
();
Set
es
=
parameters
.
entrySet
();
//所有参与传参的参数按照accsii排序(升序)
Set
<?>
es
=
parameters
.
entrySet
();
//所有参与传参的参数按照accsii排序(升序)
Iterator
it
=
es
.
iterator
();
Iterator
<?>
it
=
es
.
iterator
();
while
(
it
.
hasNext
())
{
while
(
it
.
hasNext
())
{
Map
.
Entry
entry
=
(
Map
.
Entry
)
it
.
next
();
Entry
<?,
?>
entry
=
(
Entry
<?,
?>
)
it
.
next
();
String
k
=
(
String
)
entry
.
getKey
();
String
k
=
(
String
)
entry
.
getKey
();
Object
v
=
entry
.
getValue
();
Object
v
=
entry
.
getValue
();
if
(
null
!=
v
&&
!
""
.
equals
(
v
)&&
!
"sign"
.
equals
(
k
)
)
{
if
(
null
!=
v
&&
!
""
.
equals
(
v
)&&
!
"sign"
.
equals
(
k
)
)
{
...
...
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