Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
J
jacobitus
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Carlos Jimenez
jacobitus
Commits
57b238cf
Commit
57b238cf
authored
Aug 02, 2020
by
Alberto Inch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Corrección cierre de sesión.
parent
bcd54ae5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
1 deletion
+9
-1
source/Fido/src/main/java/gob/adsib/fido/stores/PkcsN11Manager.java
...o/src/main/java/gob/adsib/fido/stores/PkcsN11Manager.java
+8
-0
source/FidoMonitor/src/main/java/gob/adsib/fidomonitor/Config.java
...doMonitor/src/main/java/gob/adsib/fidomonitor/Config.java
+1
-1
No files found.
source/Fido/src/main/java/gob/adsib/fido/stores/PkcsN11Manager.java
View file @
57b238cf
...
...
@@ -291,6 +291,13 @@ public class PkcsN11Manager extends KeyStoreManager{
public
void
logout
()
throws
Exception
{
if
(
sunPKCS11
==
null
)
return
;
try
{
sunPKCS11
.
logout
();
}
catch
(
RuntimeException
e
)
{
System
.
out
.
println
(
e
.
getMessage
());
}
try
{
// Obtenemos el Wrapper del sunPKCS11
Field
f
=
SunPKCS11
.
class
.
getDeclaredField
(
"p11"
);
...
...
@@ -300,6 +307,7 @@ public class PkcsN11Manager extends KeyStoreManager{
}
catch
(
Exception
e
)
{
e
.
printStackTrace
();
}
sunPKCS11
.
clear
();
sunPKCS11
.
setCallbackHandler
(
null
);
Security
.
removeProvider
(
sunPKCS11
.
getName
());
...
...
source/FidoMonitor/src/main/java/gob/adsib/fidomonitor/Config.java
View file @
57b238cf
...
...
@@ -17,7 +17,7 @@ import javax.swing.JLabel;
public
class
Config
{
private
static
Config
config
;
private
final
static
String
CONFIG_FILE_NAME
=
"fido.properties"
;
public
static
String
FIDO_VERSION
=
"Jacobitus Fido v3.1.
0
"
;
public
static
String
FIDO_VERSION
=
"Jacobitus Fido v3.1.
1
"
;
public
static
String
PROPERTIE_APP_NAME
=
"fido_app.properties"
;
public
static
String
PROFILE_DIR_NAME
=
"FidoProfiles"
;
...
...
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