Portugese eID

The Portugese eID container facilitates communication with card readers with inserted Portugese eID smart card. The T1C-JLIB client library provides function to communicate with the smart card and facilitates integration into a native or Java application. This document describes the functionality provided by the Portugese eID container on the T1C-GCL (Generic Connector Library).

Get Portugese eID container object

For more information on how to configure the T1C-JLIB client library see Client Configuration. Initialize a gclClient:

LibConfig conf = new LibConfig();
conf.setEnvironment(Environment.DEV);
conf.setDsUri(DS_URI);
conf.setOcvUri(OCV_URI);
conf.setGclClientUri(URI_T1C_GCL);
conf.setApiKey(API_KEY);
conf.setHardwarePinPadForced(false);
conf.setDefaultPollingIntervalInSeconds(5);
conf.setDefaultPollingTimeoutInSeconds(10);
conf.setSessionTimeout(60);
T1cClient t1cClient = new T1cClient(conf);

Obtain the Reader-ID

The constructor for the Portugese eID expect as the parameter to be a valid reader-ID. A reader-ID can be obtained from the exposed core functionality, for more information see
Core Services.
Core services responds with available card-readers, available card in a card-reader, etc.
For example:
In order to get all connected card-readers, with available cards:

List<GclReader> reader = t1cClient.getCore().getReadersWithInsertedCard();

This function call returns:

com.t1t.t1c.GclReader

Name Description Example Value Type
id The reader ID "57a3e2e71c48cee9" java.lang.String
name The reader name "Bit4Id miniLector" java.lang.String
pinpad The presence of a hardware PIN-pad false java.lang.Boolean
card The inserted card see below com.t1t.t1c.core.GclCard

com.t1t.t1c.GclCard

Name Description Example Value Type
atr Answer to Reset "3B9813400AA503010101AD1311" java.lang.String
description List of descriptions ["Portugese eID Card"] java.util.List<java.lang.String>

We notice that a card object is available in the response in the context of a detected reader.
The reader in the example above is Bit4id miniLector, has no pin-pad capabilities, and there is a card detected with given ATR and description "Portugese eID Card".
An ATR (Answer To Reset) identifies the type of a smart-card.
The container must be instantiated with the GclReader object containing the Portugese eID card.

PtEIdContainer container = client.getPtIdContainer(reader);

All methods for pteid will use the selected reader - identified by the reader object.

Cardholder Information

The card holder is the person identified using the Portugese eID card. It's important to note that all data must be validated in your backend. Data validation can be done using the appropriate certificate (public key).

IdData

Contains all card holder related data, excluding the card holder address and photo.
The service can be called:

GclPtIdData idData = container.getIdData();

Response:

com.t1t.t1c.containers.smartcards.eid.pt.GclPtIdData

Name Description Example Value Type
accidentalIndications The indications "Sem ID Esq;Sem ID Dta" java.lang.String
civilianNumber The civilian number "990001822" java.lang.String
country The country "PRT" java.lang.String
dateOfBirth The date of birth "19 08 1960" java.lang.String
documentNumber The document number "99000182 2 ZZ2" java.lang.String
documentNumberPan The document number PAN "9999000000026918" java.lang.String
documentType The document type "Cartão de Cidadão" java.lang.String
documentVersion The document version "001.001.11" java.lang.String
gender The gender "F" java.lang.String
givenNameFather The father's given name "Carlos" java.lang.String
givenNameMother The mother's given name "Maria" java.lang.String
healthNo The health number "990001822" java.lang.String
height The height "1,68" java.lang.String
issuingEntity The issuing entity "República Portuguesa" java.lang.String
localOfRequest The local of request "AMA" java.lang.String
mrz1 The MRZ1 "I<PRT990001822<ZZ29<<<<<<<<<<<" java.lang.String
mrz2 The MRZ2 "6008190F1610316PRT<<<<<<<<<<<8" java.lang.String
mrz3 The MRZ3 "REVOGADO<<ANA<<<<<<<<<<<<<<<<<" java.lang.String
name The given name "Ana" java.lang.String
nationality The nationality "PRT" java.lang.String
photo The base 64 encoded photo data "..." java.lang.String
rawData The base 64 encoded raw data "...." java.lang.String
socialSecurityNo The social security number "11999999960" java.lang.String
surname The surname "Revogado" java.lang.String
surnameFather The father's surname "Revogado" java.lang.String
surnameMother The mother's surname "Revogado" java.lang.String
taxNo The tax number "399990046" java.lang.String
validityBeginDate The card validity start date "08 04 2013" java.lang.String
validityEndDate The card validity end date "31 10 2016" java.lang.String

IdData without photo

Reading all the id data with the photo can be slow as the photo contains a lot of data. If only the data is required, the service can be called to read the id data without the photo.

GclPtIdData idData = container.getIdDataWithOutPhoto();

Response:

com.t1t.t1c.containers.smartcards.eid.pt.GclPtIdData

photo property will be null

Photo

Contains the card holder's photo stored on the smart card. The service can be called:

String photo = container.getPhoto()

Response:

"/9j/4AAQSkZJRgABA...59aVpcklSDzyKUTEDGK//9k="

Address

Contains the card holders address stored on the smart card. The information is proctected by the address PIN code. The service can be called:

Read the address on a pinpad reader

GclPtIdAddress address = container.getAddress();

Read the address on a non pinpad reader

GclPtIdAddress address = container.getAddress("1234");

Response:

com.t1t.t1c.containers.smartcards.eid.pt.GclPtIdAddress

Name Description Example Value Type
abbrBuildingType The abbreviated building type "" java.lang.String
abbrStreetType The abbreviated street type "AV" java.lang.String
civilParish The civil parish code "110623" java.lang.String
civilParishDescription The civil parish description "Nossa Senhora de Fátima" java.lang.String
district The document number "11" java.lang.String
districtDescription The document number PAN "Lisboa" java.lang.String
doorNo The door number "202" java.lang.String
floor The floor "" java.lang.String
isNational The national flag true java.lang.Boolean
genAddressNumber The general address number "200801" java.lang.String
locality The locality "Lisboa" java.lang.String
municipality The municipality code "1106" java.lang.String
municipalityDescription The municipality description "Lisboa" java.lang.String
place The issuing entity "República Portuguesa" java.lang.String
postalLocality The postal locality "LISBOA" java.lang.String
rawData The base 64 encoded raw data "...." java.lang.String
side The side "" java.lang.String
streetName The street name "5 de Outubro" java.lang.String
streetType The street type "Avenida" java.lang.String
type The type "N" java.lang.String
zip3 The zip3 value "065" java.lang.String
zip4 The zip4 value "1050" java.lang.String

Certificates

Exposes all the certificates publicly available on the smart card.

T1C-JLIB will return the raw base64 certificate, optionally it can also return an java.security.cert.Certificate object representing the certificate. To enable parsing, parseCerts must be set to true.

Root Certificate

Contains the 'root certificate' stored on the smart card. The root certificate is used to sign the 'citizen CA certificate'.
The service can be called:

T1cCertificate rootCertificate = container.getRootCertificate(true);

Response:

com.t1t.t1c.model.T1cCertificate

Name Description Example Value Type
base64 The base64 encoded certificate ""MIIFjjCCA3agAwI...rTBDdrlEWVaLrY+M+xeIctrC0WnP7u4xg==" java.lang.String
parsed The decoded certificate N/A java.security.cert.Certificate

Root Authentication Certificate

Contains the 'root authentication certificate' stored on the smart card. The 'root authenticate certificate' is used to sign the 'authenticate certificate'. The service can be called:

T1cCertificate rootAuthenticationCertificate = container.getRootAuthenticationCertificate(true);

Response:

com.t1t.t1c.model.T1cCertificate

Root Non-repudiation Certificate

Contains the root non-repudiation certificate stored on the smart card. The 'root non-repudiation certificate' is used to sign the 'non-repudiation certificate'. The service can be called:

T1cCertificate rootNonRepudiationCertificate = container.getRootNonRepudationCertificate(true);

Response:

com.t1t.t1c.model.T1cCertificate

Authentication Certificate

Contains the 'authentication certificate' stored on the smart card. The 'authentication certificate' contains the public key corresponding the private RSA authentication key.
The service can be called:

T1cCertificate authenticationCertificate = container.getAuthenticationCertificate(true);

Response:

com.t1t.t1c.model.T1cCertificate

Non-repudiation Certificate

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 service can be called:

T1cCertificate nonRepudiationCertificate = container.getNonRepudiationCertificate(true);

Response:

com.t1t.t1c.model.T1cCertificate

Data Filter

Filter Card Holder Data

All data on the smart card can be dumped at once, or using a filter. In order to read all data at once:

PtIdAllData data = container.getAllData();

Response:

com.t1t.t1c.containers.smartcards.eid.pt.PtIdAllData

Name Description Example Value Type
id The card holder id data See above com.t1t.t1c.containers.smartcards.eid.pt.GclPtIdData
authenticationCertificate The authentication certificate See above com.t1t.t1c.model.T1cCertificate
rootNonRepudiationCertificate The root non-repudiation certificate See above com.t1t.t1c.model.T1cCertificate
nonRepudiationCertificate The non-repudiation certificate See above com.t1t.t1c.model.T1cCertificate
rootAuthenticationCertificate The root authentication certificate See above java.lang.String
rootCertificate The root certificate See above com.t1t.t1c.model.T1cCertificate

The filter can be used to ask a list of custom data containers. For example, we want to read only the 'rn', 'picture' and 'rrn certificate':

List<String> filters = Arrays.asList("id","root-authentication-certificate");
boolean parseCertificates = true;
PtIdAllData data = container.getAllData(filters, true);

Filter Certificates

All certificates on the smart card can be dumped at once, or using a filter. In order to read all certificates at once:

PtIdAllCertificates certificates = container.getAllCertificates();

Response:

com.t1t.t1c.containers.smartcards.eid.pt.PtIdAllCertificates

Name Description Example Value Type
authenticationCertificate The authentication certificate See above com.t1t.t1c.model.T1cCertificate
rootNonRepudiationCertificate The root non-repudiation certificate See above com.t1t.t1c.model.T1cCertificate
nonRepudiationCertificate The non-repudiation certificate See above com.t1t.t1c.model.T1cCertificate
rootAuthenticationCertificate The root authentication certificate See above java.lang.String
rootCertificate The root certificate See above com.t1t.t1c.model.T1cCertificate

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 'rrn-certificate':

List<String> filters = Arrays.asList("root-certificate","authentication-certificate");
boolean parseCertificates = true;
PtIdAllCertificates certificates = container.getAllCertificates(filters, true);

Response:

com.t1t.t1c.containers.smartcards.eid.pt.PtIdAllCertificates

Sign Data

Data can be signed using the Portugese eID smart card. To do so, the T1C-GCL facilitates in:

  • Retrieving the certificate chain (root-certificate, root-non-repudiation 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:

List<String> filters = Arrays.asList("root_certificate","root_non_repudiation_certificate","non_repudiaton_certificate");
boolean parseCertificates = false;
PtIdAllData data = container.getAllData(filters, parseCertificates);
// Or directly retrieve the signing certificate chain in the form of Map<Integer, T1cCertificate>. The leaf certificate will always have 0 as key
Map<Integer, T1cCertificate> signingCertificateChain = container.getSigningCertificateChain();

Depending on the connected smart card reader. A sign can be executed in 2 modes:

  • Using a connected card reader with 'pin-pad' capabilities (keypad and display available)
  • Using a connected card reader without 'pin-pad' capabilities (no keypad nor display available)

Security consideration: In order to sign a hash, security considerations prefer using a 'pin-pad'.

Sign Hash without pin-pad

When the native or Java application is responsible for showing the password input, the following request is used to sign a given hash:

String signedData = container.sign(
                //data
                "I2e+u/sgy7fYgh+DWA0p2jzXQ7E=",
                //Digest algorithn
                DigestAlgorithm.SHA1,
                //Optional PIN
                "1234"
);

Response is a base64 encoded signed hash:

"W7wqvWA8m9SBALZPxN0qUCZfB1O/WLaM/silenLzSXXmeR+0nzB7hXC/Lc/fMru82m/AAqCuGTYMPKcIpQG6MtZ/SGVpZUA/71jv3D9CatmGYGZc52cpcb7cqOVT7EmhrMtwo/jyUbi/Dy5c8G05owkbgx6QxnLEuTLkfoqsW9Q="

The DigestAlgorithm argument can contain the following values: md5, sha1 and sha256.

Sign Hash with pin-pad

When the pin entry is done on the pin-pad, the following request is used to sign a given hash:

String signedData = container.sign(
                //data
                "I2e+u/sgy7fYgh+DWA0p2jzXQ7E=",
                //Digest algorithn
                DigestAlgorithm.SHA1
);

Response is a base64 encoded signed hash:

"W7wqvWA8m9SBALZPxN0qUCZfB1O/WLaM/silenLzSXXmeR+0nzB7hXC/Lc/fMru82m/AAqCuGTYMPKcIpQG6MtZ/SGVpZUA/71jv3D9CatmGYGZc52cpcb7cqOVT7EmhrMtwo/jyUbi/Dy5c8G05owkbgx6QxnLEuTLkfoqsW9Q="

The DigestAlgorithm argument can contain the following values: md5, 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: md5, sha1, sha256, sha512.
For example, we want the following text to be signed using sha256:

This is sample text to demonstrate siging with Portugese eID

You can use the following online tool to calculate the SHA256: calculate SHA256

Hexadecimal result:

135b870026cfbe12dec348069811fcde5bed28800ac54dbf45ecdf04eb13e95b

Notice that the length of the SHA256 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

Base64-encoded result:

E1uHACbPvhLew0gGmBH83lvtKIAKxU2/RezfBOsT6Vs=

Now we can sign the data:

String signedData = container.sign(
                //data
                "E1uHACbPvhLew0gGmBH83lvtKIAKxU2/RezfBOsT6Vs=",
                //Digest algorithn
                DigestAlgorithm.SHA256,
                //Optional PIN
                "1234"
);

Result:

"C7SG5eix1+lzMcZXgL0bCL+rLxKhd8ngrSj6mvlgooWH7CloEU13Rj8QiQHdhHnZgAi4Q0fCMIqAc4dn9uW9OP+MRitimRpYZcaDsGrUehPi/JpOD1e+ko7xKZ67ijUU4KTmG4HXc114oJ7xxx3CGL7TNFfvuEphLbbZa+9IZSSnYDOOENJqhggqqu7paSbLJrxC2zaeMxODKb5WSexHnZH6NnLPl2OmvPTYtxiTUMrLbFRsDRAziF6/VQkgM8/xOm+1/9Expv5DSLRY8RQ+wha6/nMlJjx50JszYIj2aBQKp4AOxPVdPewVGEWF4NF9ffrPLrOA2v2d7t5M4q7yxA==",

Note: If you want to convert a binary signed hash to HEX (for development) you can use for example an online hexdump tool:

http://www.fileformat.info/tool/hexdump.htm

Verify PIN

Verify PIN without pin-pad

When the native or Java application is responsible for showing the password input, the following request is used to verify a card holder PIN:

Boolean pinVerified = container.verifyPin("1234");

Response:

java.lang.Boolean

Verify PIN with pin-pad

When the pin entry is done on the pin-pad, the following request is used to verify a given PIN:

Boolean pinVerified = container.verifyPin();

Response:

java.lang.Boolean

Verify PIN - retries left

In order to inform a user upon the PIN retries left, the Portuguese eID doesn't provide a request to retrieve this information. After an unsuccesfull PIN verification, the container will throw a com.t1t.t1c.exceptions.VerifyPinException

Boolean pinVerified = container.verifyPin("1235");

The following exception will be thrown when PIN is wrong:

com.t1t.t1c.exceptions.VerifyPinException

Name Description Example Value Type
message The message "Wrong pin, 2 tries remaining" java.lang.String
retriesLeft The amount of retries left 2 java.lang.Integer

Note that, when the user has at least one retry left, entering a correct PIN resets the PIN retry status.

Authentication

The T1C-GCL is able to authenticate a card holder based on a challenge. The challenge can be:

  • provided by an external service
  • provided by the smart card

An authentication can be interpreted as a signature use case, the challenge is signed data, that can be validated in a back-end process.

To get the certificates necessary for signature validation in your back-end:

Map<Integer, T1cCertificate> signingCertificateChain = container.getAuthenticationCertificateChain();

External Challenge without pinpad

An external challenge on a non-pinpad reader is provided in the data property of the following example:

String authenticatedData = container.authenticate(
                //data
                "I2e+u/sgy7fYgh+DWA0p2jzXQ7E=",
                //Digest algorithn
                DigestAlgorithm.SHA256,
                //Optional PIN
                "1234"
);

Response:

"W7wqvWA8m9SBALZPxN0qUCZfB1O/WLaM/silenLzSXXmeR+0nzB7hXC/Lc/fMru82m/AAqCuGTYMPKcIpQG6MtZ/SGVpZUA/71jv3D9CatmGYGZc52cpcb7cqOVT7EmhrMtwo/jyUbi/Dy5c8G05owkbgx6QxnLEuTLkfoqsW9Q="

The DigestAlgorithm argument can contain the following values: md5, sha1 and sha256.

External Challenge with pinpad

An external challenge on a pinpad reader is provided in the data property of the following example:

String authenticatedData = container.authenticate(
                //data
                "I2e+u/sgy7fYgh+DWA0p2jzXQ7E=",
                //Digest algorithn
                DigestAlgorithm.SHA256
);

Response:

"W7wqvWA8m9SBALZPxN0qUCZfB1O/WLaM/silenLzSXXmeR+0nzB7hXC/Lc/fMru82m/AAqCuGTYMPKcIpQG6MtZ/SGVpZUA/71jv3D9CatmGYGZc52cpcb7cqOVT7EmhrMtwo/jyUbi/Dy5c8G05owkbgx6QxnLEuTLkfoqsW9Q="

The DigestAlgorithm argument can contain the following values: md5, sha1 and sha256.

Generated Challenge

A server generated challenge can be provided to the Java library. In order to do so, an additional contract must be provided with the 'OCV API' (Open Certificate Validation API).

results matching ""

    No results matching ""