Questions tagged [gemalto]

Gemalto is an international digital security company providing software applications, secure personal devices such as smart cards and tokens in addition to managed services.

Gemalto is an international digital security company providing software applications, secure personal devices such as smart cards and tokens in addition to managed services.

They provide development suites to design and develop successful applications and services that use Gemalto products or integrate with them.

54 questions
0
votes
1 answer

How can I create EF by APDU commands on Gemalto IdPrime 930 smartcard

I'm trying to create EF on the smartcard using APDU command: 80 E0 00 00 1C 62 1A 80 01 80 82 01 01 83 02 55 5A 86 09 00 00 00 00 00 00 00 00 00 A5 03 83 01 00 and get the error 69 85 (Condition of use not satisfied:- more than 1 logical channel…
Darya
  • 1
  • 2
0
votes
1 answer

Load STK applet on SIM card boot

Are there any methods that a Sim Toolkit applet is selected when phone boots or SIM card is inserted on phone? I want an applet on a SIM card that automatically executes some commands and display a message when SIM is installed on phone or phone…
VSB
  • 9,825
  • 16
  • 72
  • 145
0
votes
1 answer

Configure Safenet Luna EFT HSM to allow ISO-0 to ISO-1 pin translation

As the title states I need to be able to convert an ISO-0 formatted encrypted pin block to ISO-1 format using a Safenet(Gemalto) Luna EFT. I am connecting over TCP/IP and sending commands formatted per programmer's guide. I am using PIN-TRANSLATE-2…
Alwyn Schoeman
  • 467
  • 7
  • 13
0
votes
2 answers

Gemalto ID Bridge CT-40 with VB.NET

I had a POS Application, and I need to access the customer identification no with the smart card reader (Gemalto ID Bridge CT-40) from my application. Is there any SDK or Dll file available on Windows to access smart card reader, my Application is…
Lisa
  • 55
  • 9
0
votes
1 answer

What is cbc_param when we use pkcs11.C_EncryptInit

Moving from PTK to Luna and now in code, I need to pass cbc_param, before the inside object was the only mechanism. Can somebody explain what is this about? How PTK manage cbc_param? What is the difference with and without cbc_param? var cbc_param =…
user8269715
  • 1
  • 1
  • 4
0
votes
2 answers

Smart Card gives null as a value of private key

I am using a Gemalto Smart card to sign XML documents. I have a method which returns the certificate and searches by the thumbprint that is hard coded. I am unable to obtain the private key from that Smart card and sign the doc with it. It returns…
grozdeto
  • 1,201
  • 1
  • 13
  • 34
0
votes
1 answer

Create File command failed while creating DF in SmartCrad

I am trying to create New Dedicated file(DF) using create file command with following data field: 62 1A 81 02 04 00 82 01 38 83 02 3F 20 8A 01 05 8C 04 43 12 11 11 9C 04 43 12 11 11 I am getting following Error : 69 85 (Condition of use not…
hw_tman
  • 29
  • 3
0
votes
2 answers

Trouble with GlobalPlatform Secure Connection

I am trying to work with Gemalto sim card (JavaCard 3.0, GlobalPlatform 2.2.1). I want to read applets list and card life state. Then set OP_SECURED state and communicate with custom applet on card. I'm tried to run simple script in…
OneUser
  • 3
  • 3
0
votes
1 answer

Gemalto Third Party dll Referencing in c#

I have a wpf application with a feature to read passports and driver's licenses using a gemalto QS1000 and the 3M SDK. The SDK and drivers are installed on my dev machine (C:\Program Files (x86)\3M\3M Page Reader\3.3.3.10\bin...). According to the…
A. Dixon
  • 187
  • 3
  • 17
0
votes
1 answer

C# how to prevent multiple Windows PIN prompts when using a smart card?

I'm using a Gemalto IDPrime .NET smart card for my application. The following method encrypts some bytes and displays the signature: private static void SimpleDataEncryption() { var csp = new CspParameters(1, "Microsoft Base Smart Card Crypto…
Pete
  • 265
  • 6
  • 24
0
votes
1 answer

PKCS11 - Delete prefix "SunPKCS11-"?

It is possible to delete the prefix "SunPKCS11-"? because always I get a provider whose name is "SunPKCS11-SmartCard" and not "SmartCard" . this my code : String configName = "pkcs11.cfg"; Provider p = getInstalledProvider(providerName); if (p ==…
Sabri Mbarek
  • 31
  • 1
  • 12
0
votes
1 answer

How to sign an xml with XADES4j, certificate store windows and Smart Card + PIN Code

I'm trying to sign an xml file using the XADES4j. I also use the smart card certification (will be loaded from the windows store). Is there an example that meet my search because i'm new with XML signature and smart cards. I searched a fix for few…
Sabri Mbarek
  • 31
  • 1
  • 12
0
votes
1 answer

chrome token signing Extension

I am trying to make an extension that will communicate with a native messaging host chrome-token-signing. I use gemalto smart card reader . I installed extension , it return an cmd window when I exit or put any string . I have message log TEST:…
0
votes
1 answer

How to sign PDF from Java EE with one USB encryption key?

currently I work on POC with Java EE in order to sign a PDF with the Gemalto key (the configuration on the key exchange between the web application and the USB already been made) Actions are: The user connects to the web application with a USB stick…
pi-2r
  • 1,259
  • 4
  • 27
  • 52
0
votes
0 answers

Is there a way to force c# code to prompt for pin code using Gemalto smart card?

I'm looking for a way to force c# code to enable PIN prompt to the user with Gemalto smart card, I have tried : PIN pin = new PIN("0000", 3); pin.Verify("0000"); I created The PIN Object only to use verify method