From 47a09c52508ec0e95f991122464ab8c17d59db65 Mon Sep 17 00:00:00 2001 From: Frank Morgner Date: Mon, 26 May 2014 22:03:43 +0200 Subject: [PATCH] moved --datasetfile to nPA group --- virtualsmartcard/src/vpicc/vicc.in | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/virtualsmartcard/src/vpicc/vicc.in b/virtualsmartcard/src/vpicc/vicc.in index 5fd7b53..58f1fd5 100644 --- a/virtualsmartcard/src/vpicc/vicc.in +++ b/virtualsmartcard/src/vpicc/vicc.in @@ -45,16 +45,6 @@ parser.add_argument("-f", "--file", action="store", type=argparse.FileType('r'), help="load a saved smart card image") -parser.add_argument("-d", "--datasetfile", - action="store", - help="Load the smartcard's data groups (DGs) from the specified dataset file. For DGs not in dataset file default values are used. \ -The data groups in the data set file must have the following syntax: \ ---------------------------------------------------- Datagroupname=Datagroupvalue \ ---------------------------------------------------- \ -For Example: GivenNames=GERTRUD. \ -The following Dataset Elements may be used in the dataset file: \ -DocumentType, IssuingState, DateOfExpiry, GivenNames, FamilyNames, ReligiousArtisticName, AcademicTitle, DateOfBirth, PlaceOfBirth, Nationality, Sex, Country, City, ZIP, Street, CommunityID, dg12, dg13, dg14, dg15, dg16, dg19, dg20, dg21.\ -") parser.add_argument("-H", "--hostname", action="store", type=str, @@ -97,6 +87,16 @@ npa.add_argument("--ca-key", action="store", type=argparse.FileType('rb'), help="the chip's private key for CA (default: randomly generated, invalidates signature of EF.CardSecurity)") +npa.add_argument("-d", "--datasetfile", + action="store", + help="Load the smartcard's data groups (DGs) from the specified dataset file. For DGs not in dataset file default values are used. \ +The data groups in the data set file must have the following syntax: \ +--------------------------------------------------- Datagroupname=Datagroupvalue \ +--------------------------------------------------- \ +For Example: GivenNames=GERTRUD. \ +The following Dataset Elements may be used in the dataset file: \ +DocumentType, IssuingState, DateOfExpiry, GivenNames, FamilyNames, ReligiousArtisticName, AcademicTitle, DateOfBirth, PlaceOfBirth, Nationality, Sex, Country, City, ZIP, Street, CommunityID, dg12, dg13, dg14, dg15, dg16, dg19, dg20, dg21.\ +") args = parser.parse_args()