The ID-One Cosmo V7-n is part of the Oberthur family of cryptographic modules called ID-One Cosmo V7. Modules within
this family share the same functionalities and the description of the ID-One Cosmo V7 applies to all versions including the ā-nā subject to this validation.
This document describes the functionality provided by the Oberthur ID-One smartcard - which is a PKI container - on the T1C-GCL (Generic Connector Library) implemented version:
ID-One Cosmo V7-n; FIPS 140-2 Security Policy
Interface Summary
The Abstract Oberthur smartcard interface is summarized in the following snippet:
In order to start with any use case, we need to select a card reader. The targeted reader will be passed as a parameter to the subsequent methods provided. This is part of the core Trust1Connector functionality. More information about core service functionality can be found on the following page: Core Services.
For demonstration purpose we'll add a simple console output callback, which we'll use throughout the documentation.
In the example you'll notice that we are using a dual interface uTrust reader, and a card has been inserted.
The reader id '2e49386c82131cc1' can be used as parameter in the next steps in order to select a smartcard reader for the functionality we want to execute.
Certificates
Exposes all the certificates publicly available on the smart card. The following certificates can be found on the card:
Root certificate
Signing certificate
Authentication certificate
Issuer certificate
Encryption certificate
and the ID of the certificate., optionally it can also return an object representing the certificate as parsed by PKI.js. To enable parsing, parseCerts must be set to true. The ID will be required by the signature functions as it indicates which private key linked to the certificate will be used to perform the signing.
Certificate Chain
Root Certificate
Contains the 'root certificate' stored on the smart card.
The service can be called:
Contains the 'authentication certificate' stored on the smart card. The 'authentication certificate' contains the public key corresponding to the private RSA authentication key. The 'authentication certificate' is needed for pin validation, authentication and singing. The whole certificate chain will be returned, with the authentication certificate as the first item.
The service can be called:
Contains the 'non-repudiation certificate' stored on the smart card. The 'non-repudiation certificate' contains the public key corresponding the private RSA non-repudiation key. The whole certificate chain will be returned, with the non-repudiation certificate as the first item.
The service can be called:
The filter can be used to ask a list of custom data containers. For example, we want to read only the 'root-certificate' and the 'authentication_certificate':
var filter = ['authentication-certificate','signing_certificate'];gclClient.oberthur(reader_id).allCerts({ filters: filter, parseCerts: boolean }, callback);
When the web or native application is responsible for showing the password input, the following request is used to verify a card holder PIN:
var data = {"pin":"..."}gclClient.oberthur(reader_id).verifyPin(data, callback);
Response:
{"success": true}
Pinpad support
It is not possible to verify a pin directly on a card reader as the Oberthur card has a length of maximum 64 characters while a pinpad only supports 8 characters.
Sign Data
Data can be signed using the Aventra smartcard. To do so, the T1C-GCL facilitates in:
Retrieving the certificate chain (root, intermediate and non-repudiation certificate)
Perform a sign operation (private key stays on the smart card)
Return the signed hash
To get the certificates necessary for signature validation in your back-end:
var filter = [];gclClient.oberthur(reader_id).allCertificates({ filters: filter, parseCerts:false }, callback);
When the web or native application is responsible for showing the password input, the following request is used to sign a given hash:
var data = {"pin":"...","algorithm_reference":"sha1","data":"I2e+u/sgy7fYgh+DWA0p2jzXQ7E=","id":"0414eac5c09c080d2603e9445c23d518b37b8cfa499e"}gclClient.oberthur(reader_id).signData(data, callback);
The 'algorithm_reference' property can contain the following values: sha1 and sha256.
The core services lists connected readers, and if they have pin-pad capability. You can find more information in the Core Service documentation on how to verify card reader capabilities.
Calculate Hash
In order to calculate a hash from the data to sign, you need to know the algorithm you will use in order to sign.
You might have noticed the algorithm_reference property provided in the sign request.
The algorithm_reference can be one of the values: sha1 and sha256.
For example, we want the following text to be signed using:
This is sample text to demonstrate siging with Aventra smartcard
Notice that the length of the SHA1 is always the same.
Now we need to convert the hexadecimal string to a base64-encoded string, another online tool can be used for this example: hex to base64 converter
var data = {"pin":"...","algorithm_reference":"sha1","data":"OTY4ODM2ODg3ODg3YWViYzdlZDBiMDgwMjQxZGQ5N2M4N2ZlMWRhZQ==","id":"0414eac5c09c080d2603e9445c23d518b37b8cfa499e"}gclClient.oberthur(reader_id).signData(data, callback);
An external challenge is provided in the data property of the following example:
var data = {"pin":"...","algorithm_reference":"sha1","data":"I2e+u/sgy7fYgh+DWA0p2jzXQ7E=","id":"04143e761e38cbf10b0e9ca40c2e09d83f4fd1c8b153"}gclClient.oberthur(reader_id).authenticate(data, callback);
The 'algorithm_reference' property can contain the following values: sha1 and sha256.
Generated Challenge
A server generated challenge can be provided to the JavaScript library.
In order to do so, an additional contract must be provided with the 'OCV API' (Open Certificate Validation API).
The calculated digest of the hash is prefixed with:
DigestInfo ::= SEQUENCE {
digestAlgorithm AlgorithmIdentifier,
digest OCTET STRING
}
Make sure this has been taken into consideration in order to validate the signature in a backend process.
Error Handling
Error Object
The functions specified are asynchronous and always need a callback function.
The callback function will reply with a data object in case of success, or with an error object in case of an error. An example callback: