Hard Token Management Framework 1.0 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Hard Token Management Framework 1.0 (Default branch)
# 1  
Old 06-29-2008
Hard Token Management Framework 1.0 (Default branch)

ImageHard Token Management Framework is an add-on toEJBCA Certificate Authority, and communicates withthe tokens through a PKCS11 interface. It comeswith a few ready-made modules that can be composedto fit the need of the organization. It has manyfeatures, including basic card administration andlocking functions.License: GNU Lesser General Public License (LGPL)Changes:
Key ceremoni parts did not compile with Java 1.5. When waiting for PIN unblock approval, the wrong text was displayed for the user. Swedish characters in global.properties didn't work well in Linux. Card/Certificate information was not cleared when the card was revoked. These have all been fixed. There is support to only return the 8 significant serial numbers of HardTokenSN. Applet support has been replaced by Java Web Start. A basic pine parameter has been added to IToken.removeObject. Support for uninitialized SetCos 4.4.1 cards using NetID 4.9.0.19 has been added. AutoLogon controller through PKCS11 has been added.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

1 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Hard disk and file management?

Dear experts, I have to write a small project named "Hard disk management and file management in Unix/Linux". I have absolutely NO idea about what Unix/Linux is, except that it is operational system. My question to you is: Whats is the difference between Unix and Linux and since the title of my... (3 Replies)
Discussion started by: makara
3 Replies
Login or Register to Ask a Question
Blt_TreeReleaseToken(3) 				      BLT Library Procedures					   Blt_TreeReleaseToken(3)

__________________________________________________________________________________________________________________________________________________

NAME
Blt_TreeReleaseToken - Releases token associated with tree object. SYNOPSIS
#include <bltTree.h> int Blt_TreeReleaseToken(token) ARGUMENTS
Blt_Tree *token (in) Token of tree to be released. _________________________________________________________________ DESCRIPTION
This procedure releases the token associated with a C-based tree data object. When all outstanding tokens for a tree data object have been released, then the data object itself will be freed. The arguments are as follows: token Token of the tree data object to be released. This token was initialized either by Tcl_TreeGetToken or Blt_TreeCreate earlier. RETURNS
Nothing. EXAMPLE
The following example creates and then releases a new token. Blt_Tree token; if (Blt_TreeCreate(interp, "myTree", &token) != TCL_OK) { return TCL_ERROR; } printf("tree is %s ", Blt_TreeName(token)); /* Tree will be destroyed when the token is released. */ Blt_TreeReleaseToken(token); KEYWORDS
tree, token BLT
2.4 Blt_TreeReleaseToken(3)