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
f8ba3bf6
Commit
f8ba3bf6
authored
Jun 27, 2023
by
yanzg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
表结构修改
parent
b0513f09
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
22 deletions
+0
-22
RsaHelper.java
.../src/main/java/com/yanzuoguang/util/helper/RsaHelper.java
+0
-22
No files found.
yzg-util-base/src/main/java/com/yanzuoguang/util/helper/RsaHelper.java
View file @
f8ba3bf6
...
...
@@ -484,33 +484,19 @@ public final class RsaHelper {
* 私钥
*/
private
String
privateKey
;
/**
* 加密超时时间
*/
private
long
timeout
;
public
RsaInfo
()
{
}
public
RsaInfo
(
PublicKey
publicKeyFrom
,
PrivateKey
privateKeyFrom
)
{
this
(
publicKeyFrom
,
privateKeyFrom
,
0
);
}
public
RsaInfo
(
PublicKey
publicKeyFrom
,
PrivateKey
privateKeyFrom
,
long
timeout
)
{
this
.
publicKeyFrom
=
publicKeyFrom
;
this
.
privateKeyFrom
=
privateKeyFrom
;
this
.
timeout
=
timeout
;
this
.
initToWithFrom
();
}
public
RsaInfo
(
String
publicKey
,
String
privateKey
)
{
this
(
publicKey
,
privateKey
,
0
);
}
public
RsaInfo
(
String
publicKey
,
String
privateKey
,
long
timeout
)
{
this
.
publicKey
=
publicKey
;
this
.
privateKey
=
privateKey
;
this
.
timeout
=
timeout
;
this
.
initFromWithTo
();
}
...
...
@@ -555,13 +541,5 @@ public final class RsaHelper {
public
void
setPrivateKey
(
String
privateKey
)
{
this
.
privateKey
=
privateKey
;
}
public
long
getTimeout
()
{
return
timeout
;
}
public
void
setTimeout
(
long
timeout
)
{
this
.
timeout
=
timeout
;
}
}
}
\ No newline at end of file
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