Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
Y
yzg-util
Project
Project
Details
Activity
Releases
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
YZG
yzg-util
Commits
82dc5851
Commit
82dc5851
authored
Jun 27, 2023
by
yanzg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
表结构修改
parent
bc4d7ef1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
+11
-0
TestRsa.java
yzg-util-base/src/test/java/helper/TestRsa.java
+11
-0
No files found.
yzg-util-base/src/test/java/helper/TestRsa.java
View file @
82dc5851
...
@@ -5,6 +5,8 @@ import com.yanzuoguang.util.thread.ThreadHelper;
...
@@ -5,6 +5,8 @@ import com.yanzuoguang.util.thread.ThreadHelper;
import
org.junit.Assert
;
import
org.junit.Assert
;
import
org.junit.Test
;
import
org.junit.Test
;
import
java.security.PublicKey
;
public
class
TestRsa
{
public
class
TestRsa
{
@Test
@Test
...
@@ -28,6 +30,15 @@ public class TestRsa {
...
@@ -28,6 +30,15 @@ public class TestRsa {
testRsaPrivateEncode
(
rsaInfo
);
testRsaPrivateEncode
(
rsaInfo
);
}
}
@Test
public
void
testAccount
()
{
String
publicKey
=
"MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDP6PNloM90hUD4exz88EKbqPeGhxiQgyMfTNOuMqcQuKp+j7/5jkJ3CuJDGmZfgg9JTGlJ7r/SbSGA6TPFuVdD3vrHyHPxrURTeaKptI6qxCht9LltJtoTnE7mSEhNiGCjA6cZk8fi8SuFghGDO7I3zqYeSsdQK0qAWqwXZwTeRwIDAQAB"
;
String
accountInfo
=
"F1t4CswQFSfhoTuNUoiO/jOfbuqZTvV8r0U3LxNA7OTb8UY0+Yt9a/R/sWgko4/lrM4ISWHvkZJEuU+szJ6J8vS2hrAZShZ6GER45DcArDVkjTnNeLQvL+eB3uVGUS3hwjG0rWRZjyMsSJJoFmSp8RR3l1bSmcSw2dRoGEpOboo="
;
PublicKey
key
=
RsaHelper
.
getPublicKey
(
publicKey
);
String
s
=
RsaHelper
.
decryptionByPublicKey
(
accountInfo
,
key
);
System
.
out
.
println
(
s
);
}
private
void
testRsaPublicEncode
(
RsaHelper
.
RsaInfo
rsaInfo
)
{
private
void
testRsaPublicEncode
(
RsaHelper
.
RsaInfo
rsaInfo
)
{
StringBuilder
sb
=
new
StringBuilder
();
StringBuilder
sb
=
new
StringBuilder
();
for
(
int
i
=
0
;
i
<
50
;
i
++)
{
for
(
int
i
=
0
;
i
<
50
;
i
++)
{
...
...
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