Questions tagged [e-token]

eToken is portable USB device that can be used to generate and provide secure storage for passwords, digital certificates, secure authentication, digital signing and encryption.

e-token usually comes with the required drivers that needs to be installed in the system or the can be downloaded from the e-token provider. The drivers include implementation of CSP (Cryptographic Service Provider) for CryptoAPI. CSP does the job of presenting certificates, stored in the token, to CryptoAPI. You can perform certain operations with the private key by calling the appropriate API. But the key itself is not extractable. User will have an unique password to use the e-token, This inhibits others from using the e-token.

29 questions
11
votes
3 answers

Adding a digital signature to a PDF using Java

I want to digitally sign a PDF file using a certificate stored on a USB-token, HSM, etc. How do I use the private key stored on the USB token using JAVA?
rajuthoutu
  • 188
  • 2
  • 2
  • 12
4
votes
3 answers

Reading a pfx file from usb token with java

I am trying to sign a pdf document in java using a USB e-token.I want to read the signature from USB token safenet (alladin etoken pro 72 k(Java)) and attach to pdf using java code.I have done digital signature signing using a key stored in my…
user3914864
  • 41
  • 1
  • 1
  • 3
4
votes
1 answer

Java keytool / KeyStore shows no entries for eToken

Edit: This page covers eTokens start to finish. I wish I had found this before posting (I found the section on udev was unneeded) Direct: https://r3blog.nl/index.php/etoken-pro-72k/ Wayback Machine:…
Huckle
  • 1,810
  • 3
  • 26
  • 40
3
votes
1 answer

How is SafeNet eToken 5110 different from SafeNet eToken 5100?

My EV code signing certificate is expiring, and I'm thinking about changing provider. However the new provider(Trust zone) is providing a SafeNet eToken 5100, the one I have now is a SafeNet eToken 5110. My questions are these: What are the…
DaniFlex
  • 31
  • 5
3
votes
1 answer

Keystore from digital signature e-token using java

How to create the keystore from digital signature e-token? How crate the path of keystore? How to sign with the keystore in any document using java application?
aich.pom
  • 173
  • 1
  • 13
3
votes
0 answers

PKCS11 : The specified module could not be found

I am using the below code for displaying the Digital Certificate info. String sFileName = System.getProperty("jboss.server.base.dir")+ "/properties/path.properties"; FileInputStream fis = new FileInputStream(sFileName); PropertyResourceBundle…
Ace
  • 700
  • 7
  • 37
3
votes
2 answers

How to determine which personal certificate comes from hardware device in C#?

Assuming I have multiple personal certificates for current user. But only one certificate belongs to Aladdin eToken. I want to determine which certificate belongs to Aladdin eToken. Should I use X509Store and X509Crtificate for this? Should I try…
skfd
  • 2,528
  • 1
  • 19
  • 29
3
votes
1 answer

Alladin eToken failure with importing RSA key

I am using SafeNet's (Alladin) eToken with PKCS11 interface to C#. I need to import a RSA key created without the eToken into the eToken. The creation of the RSA key is done through: RSACryptoServiceProvider RSA = new…
3
votes
1 answer

Open x509 Certificate store from Java APIs

I am trying to show the list of certificates from the Client Certificate store in JSP. In .Net there is an option to show the list of certificates with the following code... X509Store xStore = new X509Store(...); xStore.Open(...); // This will open…
user1006585
  • 85
  • 2
  • 10
2
votes
0 answers

Aladdin eToken smartcard not showing on keychain access app - OSX High sierra

I am having Aladdin eToken smart card and installed TokenD using OpenSC package for Mac.But inserted smart card certificate is not showing the in Keycahin access app. do I need to install any additional drivers on Mac? After OpenSC package…
iSpark
  • 952
  • 7
  • 18
2
votes
0 answers

Digital Signature using epass2003

I have a tried to extract the private key from epass2003 and make the signature on pdf but when I am extracting private key it is throwing null pointer exception I have attached the code that I have tried below can anyone update the solution for…
ARAVIND
  • 51
  • 1
  • 8
2
votes
0 answers

Race Condition in Java 8 PKCS11 KeyStore

I've been experimenting with an SafeNet (Aladdin) eToken and Java 8's PKCS11 interface. I noticed that when I was debugging the following code snippet it would work. If I ran it without the debugger I got an exception. I introduced an artificial…
Huckle
  • 1,810
  • 3
  • 26
  • 40
2
votes
2 answers

Digitally sign a hash value of a file directly instead of file

My ques is -- Is it possible to digitally sign a hash value of a file directly instead of file. I have to digitally sign a xml file in web environment through e-token. So I have to download the file from server to client and then get certificate…
Ankit Sharma
  • 1,569
  • 3
  • 19
  • 31
1
vote
0 answers

How create .p12 file?

I can not export .p12 file from digital certificate e-token. The option "Yes,export the private key" is inactive in internet explorer. And "Failed to create the PKCS #12 backup file for unknown reasons." get this message from firefox. What is the…
aich.pom
  • 173
  • 1
  • 13
1
vote
2 answers

How to access a url that requires a SafeNet eToken certificate using Java

Good afternoon, I have a SafeNet 5100 eToken already with a valid certificate in it that I use to access a web application from my company that requires it. When I try to access the web application using a web browser (like chrome) everything works…
t.pimentel
  • 1,465
  • 3
  • 17
  • 24
1
2