Skip to content

Commit a99de69

Browse files
committed
Merge branch 'release/v2.4.3'
2 parents 60f15ba + 58d75f7 commit a99de69

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+486
-486
lines changed

dist/GCLLib.js

+55-55
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/GCLLib.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/lib/index.d.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ export * from './scripts/plugins/smartcards/pki/BeLawyer/BeLawyer';
5454
export * from './scripts/plugins/smartcards/pki/BeLawyer/BeLawyerModel';
5555
export * from './scripts/plugins/smartcards/pki/luxtrust/LuxTrust';
5656
export * from './scripts/plugins/smartcards/pki/luxtrust/LuxTrustModel';
57-
export * from './scripts/plugins/smartcards/pki/oberthur/Oberthur';
58-
export * from './scripts/plugins/smartcards/pki/oberthur/OberthurModel';
57+
export * from './scripts/plugins/smartcards/pki/idemia_ias_ecc/Idemia_Ias_Ecc';
58+
export * from './scripts/plugins/smartcards/pki/idemia_ias_ecc/Idemia_Ias_EccModel';
5959
export * from './scripts/plugins/smartcards/Card';
6060
export * from './scripts/plugins/ssh/Ssh';
6161
export * from './scripts/plugins/ssh/SshModel';

dist/lib/scripts/core/GCLLib.d.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { AbstractEMV } from '../plugins/smartcards/emv/EMVModel';
77
import { AbstractOcra } from '../plugins/smartcards/ocra/ocraModel';
88
import { AbstractAventra } from '../plugins/smartcards/pki/aventra/AventraModel';
99
import { AbstractLuxTrust } from '../plugins/smartcards/pki/luxtrust/LuxTrustModel';
10-
import { AbstractOberthur } from '../plugins/smartcards/pki/oberthur/OberthurModel';
10+
import { AbstractIdemia_Ias_Ecc } from '../plugins/smartcards/pki/idemia_ias_ecc/Idemia_Ias_EccModel';
1111
import { AbstractPiv } from '../plugins/smartcards/piv/pivModel';
1212
import { AbstractMobib } from '../plugins/smartcards/mobib/mobibModel';
1313
import { AbstractEidLUX, PinType } from '../plugins/smartcards/eid/lux/EidLuxModel';
@@ -70,7 +70,7 @@ export declare class GCLClient {
7070
mobib: (reader_id?: string) => AbstractMobib;
7171
ocra: (reader_id?: string) => AbstractOcra;
7272
aventra: (reader_id?: string) => AbstractAventra;
73-
oberthur: (reader_id?: string) => AbstractOberthur;
73+
idemia_ias_ecc: (reader_id?: string) => AbstractIdemia_Ias_Ecc;
7474
piv: (reader_id?: string) => AbstractPiv;
7575
pteid: (reader_id?: string) => AbstractEidPT;
7676
pkcs11: () => AbstractPkcs11;

dist/lib/scripts/plugins/PluginFactory.d.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { AbstractIsabel } from './smartcards/isabel/IsabelModel';
55
import { AbstractOcra } from './smartcards/ocra/ocraModel';
66
import { AbstractAventra } from './smartcards/pki/aventra/AventraModel';
77
import { AbstractLuxTrust } from './smartcards/pki/luxtrust/LuxTrustModel';
8-
import { AbstractOberthur } from './smartcards/pki/oberthur/OberthurModel';
8+
import { AbstractIdemia_Ias_Ecc } from './smartcards/pki/idemia_ias_ecc/Idemia_Ias_EccModel';
99
import { AbstractPiv } from './smartcards/piv/pivModel';
1010
import { AbstractMobib } from './smartcards/mobib/mobibModel';
1111
import { AbstractEidLUX, PinType } from './smartcards/eid/lux/EidLuxModel';
@@ -32,7 +32,7 @@ export interface AbstractFactory {
3232
createMobib(reader_id?: string): AbstractMobib;
3333
createOcra(reader_id?: string): AbstractOcra;
3434
createAventraNO(reader_id?: string): AbstractAventra;
35-
createOberthurNO(reader_id?: string): AbstractOberthur;
35+
createIdemia_Ias_EccNO(reader_id?: string): AbstractIdemia_Ias_Ecc;
3636
createPIV(reader_id?: string): AbstractPiv;
3737
createPKCS11(): AbstractPkcs11;
3838
createJavaKeyTool(): AbstractJavaKeyTool;
@@ -55,7 +55,7 @@ export declare class PluginFactory implements AbstractFactory {
5555
createMobib(reader_id?: string): AbstractMobib;
5656
createOcra(reader_id?: string): AbstractOcra;
5757
createAventraNO(reader_id?: string): AbstractAventra;
58-
createOberthurNO(reader_id?: string): AbstractOberthur;
58+
createIdemia_Ias_EccNO(reader_id?: string): AbstractIdemia_Ias_Ecc;
5959
createPIV(reader_id?: string): AbstractPiv;
6060
createPKCS11(): AbstractPkcs11;
6161
createRemoteLoading(reader_id?: string): AbstractRemoteLoading;

dist/lib/scripts/plugins/smartcards/pki/oberthur/Oberthur.d.ts dist/lib/scripts/plugins/smartcards/pki/idemia_ias_ecc/Idemia_Ias_Ecc.d.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
import { T1CLibException } from '../../../../core/exceptions/CoreExceptions';
22
import { CertificateResponse, T1CResponse } from '../../../../core/service/CoreModel';
33
import { GenericCertCard, VerifyPinData } from '../../Card';
4-
import { AbstractOberthur } from './OberthurModel';
4+
import { AbstractIdemia_Ias_Ecc } from './Idemia_Ias_EccModel';
55
import { Options } from '../../../../util/RequestHandler';
66
import { LocalConnection } from '../../../../core/client/Connection';
7-
export declare class Oberthur extends GenericCertCard implements AbstractOberthur {
7+
export declare class Idemia_Ias_Ecc extends GenericCertCard implements AbstractIdemia_Ias_Ecc {
88
static CONTAINER_PREFIX: string;
99
constructor(baseUrl: string, containerUrl: string, connection: LocalConnection, reader_id: string);
1010
allDataFilters(): string[];

0 commit comments

Comments
 (0)