diff --git a/AlgTest_JClient/dist/AlgTestJClient.jar b/AlgTest_JClient/dist/AlgTestJClient.jar index 909ae308..93125bae 100644 Binary files a/AlgTest_JClient/dist/AlgTestJClient.jar and b/AlgTest_JClient/dist/AlgTestJClient.jar differ diff --git a/AlgTest_JClient/src/algtestjclient/AlgTestJClient.java b/AlgTest_JClient/src/algtestjclient/AlgTestJClient.java index 745a6efb..106965e0 100644 --- a/AlgTest_JClient/src/algtestjclient/AlgTestJClient.java +++ b/AlgTest_JClient/src/algtestjclient/AlgTestJClient.java @@ -53,12 +53,18 @@ public class AlgTestJClient { public static final String ALGTEST_SINGLEPERAPDU = "AT_SINGLEPERAPDU"; // for 'New' AlgTest public static final String ALGTEST_PERFORMANCE = "AT_PERFORMANCE"; // for performance testing + /** + * Version 1.7.4 (20.04.2018) + * + fixed occasional freeze on some cards when testing MessageDigest performance + */ + public final static String ALGTEST_JCLIENT_VERSION_1_7_4 = "1.7.4"; + /** * Version 1.7.3 (10.06.2017) * + added new constants from JC3.0.5 * - fixed bug with incorrect testing of KeyAgreement */ - public final static String ALGTEST_JCLIENT_VERSION_1_7_3 = "1.7.3"; + //public final static String ALGTEST_JCLIENT_VERSION_1_7_3 = "1.7.3"; /** * Version 1.7.2 (06.05.2017) @@ -115,7 +121,7 @@ public class AlgTestJClient { /** * Current version */ - public final static String ALGTEST_JCLIENT_VERSION = ALGTEST_JCLIENT_VERSION_1_7_3; + public final static String ALGTEST_JCLIENT_VERSION = ALGTEST_JCLIENT_VERSION_1_7_4; public final static int STAT_OK = 0; /** diff --git a/AlgTest_JClient/src/algtestjclient/PerformanceTesting.java b/AlgTest_JClient/src/algtestjclient/PerformanceTesting.java index cff18fe7..c38c90bf 100644 --- a/AlgTest_JClient/src/algtestjclient/PerformanceTesting.java +++ b/AlgTest_JClient/src/algtestjclient/PerformanceTesting.java @@ -1190,12 +1190,12 @@ public void testMessageDigest(byte alg, String info, short numRepeatWholeOperati if (!m_bTestVariableData) { // Ordinary test of all available methods - testSet.algorithmMethod = JCConsts.MessageDigest_update; - this.perftest_measure(Consts.CLA_CARD_ALGTEST, Consts.INS_PREPARE_TEST_CLASS_MESSAGEDIGEST, Consts.INS_PERF_TEST_CLASS_MESSAGEDIGEST, testSet, info + " MessageDigest_update()"); testSet.algorithmMethod = JCConsts.MessageDigest_doFinal; - this.perftest_measure(Consts.CLA_CARD_ALGTEST, Consts.INS_PREPARE_TEST_CLASS_MESSAGEDIGEST, Consts.INS_PERF_TEST_CLASS_MESSAGEDIGEST, testSet, info + " MessageDigest_doFinal()"); + double doFinalTime = this.perftest_measure(Consts.CLA_CARD_ALGTEST, Consts.INS_PREPARE_TEST_CLASS_MESSAGEDIGEST, Consts.INS_PERF_TEST_CLASS_MESSAGEDIGEST, testSet, info + " MessageDigest_doFinal()"); + testSet.algorithmMethod = JCConsts.MessageDigest_update; + this.perftest_measure(Consts.CLA_CARD_ALGTEST, Consts.INS_PREPARE_TEST_CLASS_MESSAGEDIGEST, Consts.INS_PERF_TEST_CLASS_MESSAGEDIGEST, testSet, info + " MessageDigest_update()", doFinalTime); testSet.algorithmMethod = JCConsts.MessageDigest_reset; - this.perftest_measure(Consts.CLA_CARD_ALGTEST, Consts.INS_PREPARE_TEST_CLASS_MESSAGEDIGEST, Consts.INS_PERF_TEST_CLASS_MESSAGEDIGEST, testSet, info + " MessageDigest_reset()"); + this.perftest_measure(Consts.CLA_CARD_ALGTEST, Consts.INS_PREPARE_TEST_CLASS_MESSAGEDIGEST, Consts.INS_PERF_TEST_CLASS_MESSAGEDIGEST, testSet, info + " MessageDigest_reset()", doFinalTime); } else { // Test of speed dependant on data length diff --git a/AlgTest_JavaCard/AlgTest_v1.7.4_jc222.cap b/AlgTest_JavaCard/AlgTest_v1.7.4_jc222.cap new file mode 100644 index 00000000..60268afe Binary files /dev/null and b/AlgTest_JavaCard/AlgTest_v1.7.4_jc222.cap differ diff --git a/AlgTest_JavaCard/src/AlgTest/AlgPerformanceTest.java b/AlgTest_JavaCard/src/AlgTest/AlgPerformanceTest.java index 24a45d90..80ece051 100644 --- a/AlgTest_JavaCard/src/AlgTest/AlgPerformanceTest.java +++ b/AlgTest_JavaCard/src/AlgTest/AlgPerformanceTest.java @@ -1206,17 +1206,21 @@ void perftest_class_MessageDigest(APDU apdu) { m_testSettings.parse(apdu); short repeats = (short) (m_testSettings.numRepeatWholeOperation * m_testSettings.numRepeatSubOperation); short chunkDataLen = (short) (m_testSettings.dataLength1 / m_testSettings.numRepeatSubOperation); - + m_digest.reset(); + switch (m_testSettings.algorithmMethod) { case JCConsts.MessageDigest_update: - for (short i = 0; i < repeats; i++) { m_digest.update(m_ram1, (short) 0, chunkDataLen); } + for (short i = 0; i < repeats; i++) { + m_digest.update(m_ram1, (short) 0, chunkDataLen); + m_digest.reset(); // NOTE: added because some cards freeze after many update() then doFinal() call; time substraction needed + } break; case JCConsts.MessageDigest_doFinal: - for (short i = 0; i < repeats; i++) { m_digest.doFinal(m_ram1, (short) 0, chunkDataLen, m_ram1, chunkDataLen); } + for (short i = 0; i < repeats; i++) { m_digest.doFinal(m_ram1, (short) 0, chunkDataLen, m_ram2, (short) 0); } break; case JCConsts.MessageDigest_reset: for (short i = 0; i < m_testSettings.numRepeatWholeOperation; i++) { - m_digest.doFinal(m_ram1, (short) 0, chunkDataLen, m_ram1, chunkDataLen); // NOTE: time substraction needed + m_digest.doFinal(m_ram1, (short) 0, chunkDataLen, m_ram2, (short) 0); // NOTE: time substraction needed m_digest.reset(); } break; diff --git a/AlgTest_JavaCard/src/AlgTest/JCAlgTestApplet.java b/AlgTest_JavaCard/src/AlgTest/JCAlgTestApplet.java index 0425c892..7de3af6e 100644 --- a/AlgTest_JavaCard/src/AlgTest/JCAlgTestApplet.java +++ b/AlgTest_JavaCard/src/AlgTest/JCAlgTestApplet.java @@ -54,10 +54,16 @@ may be distributed under the terms of the GNU General Public License (GPL), public class JCAlgTestApplet extends javacard.framework.Applet { // NOTE: when incrementing version, don't forget to update ALGTEST_JAVACARD_VERSION_CURRENT value + /** + * Version 1.7.4 (20.04.2018) + fixed occasional freeze on some cards when + * testing MessageDigest performance + */ + final static byte ALGTEST_JAVACARD_VERSION_1_7_4[] = {(byte) 0x31, (byte) 0x2e, (byte) 0x37, (byte) 0x2e, (byte) 0x34}; + /** * Version 1.7.3 (10.06.2017) + fixed issue with incorrect test for KeyAgreement support */ - final static byte ALGTEST_JAVACARD_VERSION_1_7_3[] = {(byte) 0x31, (byte) 0x2e, (byte) 0x37, (byte) 0x2e, (byte) 0x33}; + //final static byte ALGTEST_JAVACARD_VERSION_1_7_3[] = {(byte) 0x31, (byte) 0x2e, (byte) 0x37, (byte) 0x2e, (byte) 0x33}; /** * Version 1.7.2 (06.05.2017) * + better support for RSA key collection @@ -141,7 +147,7 @@ public class JCAlgTestApplet extends javacard.framework.Applet */ //final static byte ALGTEST_JAVACARD_VERSION_1_0[] = {(byte) 0x31, (byte) 0x2e, (byte) 0x30}; - byte ALGTEST_JAVACARD_VERSION_CURRENT[] = ALGTEST_JAVACARD_VERSION_1_7_3; + byte ALGTEST_JAVACARD_VERSION_CURRENT[] = ALGTEST_JAVACARD_VERSION_1_7_4; // lower byte of exception is value as defined in JCSDK/api_classic/constant-values.htm final static short SW_Exception = (short) 0xff01; final static short SW_ArrayIndexOutOfBoundsException = (short) 0xff02; diff --git a/AlgTest_dist_1.7.4.zip b/AlgTest_dist_1.7.4.zip new file mode 100644 index 00000000..9036c0e3 Binary files /dev/null and b/AlgTest_dist_1.7.4.zip differ diff --git a/Profiles/AlgTest_html_table.html b/Profiles/AlgTest_html_table_20180404.html similarity index 95% rename from Profiles/AlgTest_html_table.html rename to Profiles/AlgTest_html_table_20180404.html index 7dbd4691..a4647020 100644 --- a/Profiles/AlgTest_html_table.html +++ b/Profiles/AlgTest_html_table_20180404.html @@ -1,131 +1,82 @@ - - - - - - - - - + + + + + +JavaCard support test + + +\n\n"; - List of supported JavaCard algorithms - - - - - - - - - - - - - - - - - - - -

List of supported JavaCard algorithms

- - logo - -

The table provides a list of algorithms defined in JavaCard API and supported by the particular smart card. The supported lengths of cryptographic keys, information about available RAM and EEPROM memory and garbage collection capabilities are also included.

- -
- -

- The set of cryptographic algorithms supported by the particular Java smart card is sometimes hard to obtain from vendor's specifications. Moreover, supported algorithms may change in more recent revisions of the firmware of given type of smart card. Typically, basic primitives like block cipher or asymmetric cryptography algorithm remain same as they are often implemented in hardware, but cryptographic constructions like particular MAC algorithm or supported key sizes may be added later. -

- -

- JCAlgTest tool allows you to enumerate the supported cryptographic algorithms specified in JavaCard 3.0.5 and earlier. This page summarizes results obtained for cards available in our CRoCS laboratory and also results contributed by the community (many thanks, folks!). -

- -

- The basic idea is simple - if the particular algorithm/key size is supported, then algorithm instance creation should succeed. Otherwise, CryptoException.NO_SUCH_ALGORITHM is thrown. Such a behavior can be employed for a quick test of supported algorithms. AlgTest applet tries to create an instance of an algorithm for all possible constants defined in JavaCard specification and eventually catch the exception. JCAlgTest tool also tests additional tweaks like the possibility to use raw RSA for fast modular multiplication (which is usable to implement classical Diffie-Hellman key exchange) or manufacturer pre-set default ECC curve for ECC key pair. -

- -
- - - - -

Tested cards abbreviations

c0 ACS ACOSJ (Combi) , ATR=3b 69 00 02 41 43 4f 53 4a 76 31 30 31 (provided by Alexandre Bouvier),
c1 Athena IDprotect , ATR=3B D5 18 FF 80 91 FE 1F C3 80 73 C8 21 13 08 (provided by Cosmo),
-c2 Axalto Cyberflex32 , ATR=3B 75 94 00 00 62 02 02 02 01 (provided by PetrS),
-c3 Axalto Cyberflex PalmeraV5 , ATR=3B E6 00 00 81 21 45 32 4B 01 01 01 01 7A (provided by PetrS),
-c4 Feitian C21C Samsung S3FS91J , ATR=3b fc 18 00 00 81 31 80 45 90 67 46 4a 01 00 05 24 c0 72 7e 00 86 (provided by Thotheolh Tay),
-c5 Feitian eJava Token , ATR=3b fc 18 00 00 81 31 80 45 90 67 46 4a 01 64 2f 70 c1 72 fe e0 fd (provided by Razvan Dragomirescu),
-c6 Feitian JavaCOS A22CR-ECC-SHA-2 ICFabDate 2015 , ATR=3b fc 18 00 00 81 31 80 45 90 67 46 4a 01 00 10 04 f2 72 fe 00 01 (provided by Kenneth Benson),
-c7 Feitian JavaCOS A22CR ICFabDate 2016 084 , ATR=3b 8c 80 01 90 67 46 4a 01 00 25 04 00 00 00 00 d6 (provided by Josh Harvey),
-c8 Feitian JavaCOS A22CR ICFabDate 2016 257 , ATR=3b 9c 95 80 81 1f 03 90 67 46 4a 01 00 35 04 f2 72 fe 00 a1 (provided by PetrS),
-c9 Feitian JavaCOS A22 , ATR=3b fc 18 00 00 81 31 80 45 90 67 46 4a 00 68 08 04 00 00 00 00 0e (provided by Ivo Kubjas and PetrS),
-c10 Feitian JavaCOS A22 ICFabDate 2015 , ATR=3b fc 18 00 00 81 31 80 45 90 67 46 4a 00 68 08 04 00 00 00 00 0e (provided by Ivo Kubjas and PetrS),
-c11 Feitian JavaCOS A40 ICFabDate 2016 201 , ATR=3b fc 18 00 00 81 31 80 45 90 67 46 4a 01 00 20 05 00 00 00 00 4e (provided by PetrS and Keneth Benson),
-c12 Feitian Java Card D11CR , ATR=3b 6a 00 00 09 44 31 31 43 52 02 00 25 c3 (provided by PetrS),
-c13 Feitian K9 NXPJ3E081 , ATR=3b f9 13 00 00 81 31 fe 45 4a 43 4f 50 32 34 32 52 33 a2 (provided by Thotheolh Tay),
-c14 G+D Smartcafe 6.0 80K ICFabDate 2015 024 , ATR=3b fe 18 00 00 80 31 fe 45 53 43 45 36 30 2d 43 44 30 38 31 2d 6e 46 a9 (provided by PetrS),
-c15 G+D SmartCafe Expert 144k Dual , ATR=3b fd 18 00 00 80 31 fe 45 73 66 74 65 20 63 64 31 34 34 2d 6e 66 d8 (provided by Diego NdK),
-c16 G+D Smartcafe Expert 3.2 72K ICFabDate 2003 126 , ATR=3b f7 18 00 00 80 31 fe 45 73 66 74 65 2d 6e 66 c4 (provided by Cosmo and PetrS),
-c17 G+D Smart Cafe Expert 4.x V2 ICFabDate 2007 079 , ATR=3b f8 18 00 00 80 31 fe 45 00 73 c8 40 13 00 90 00 92 (provided by PetrS), PerformanceGraphs
-c18 Gemalto IDCore 10 , ATR=3b 7d 96 00 00 80 31 80 65 b0 83 11 d0 a9 83 00 90 00 (provided by Martin Paljak),
-c19 Gemalto IDCore 3010 CC , ATR=3b 7d 96 00 00 80 31 80 65 b0 85 02 00 cf 83 01 90 00 (provided by Martin Paljak),
-c20 Gemalto TOP IM GXP4 , ATR=3b 7d 94 00 00 80 31 80 65 b0 83 11 d0 a9 83 00 90 00 (provided by PetrS),
-c21 Gemalto TwinGCX4 72k PK , ATR=3B 7A 94 00 00 80 65 A2 01 01 01 3D 72 D6 43 (provided by PetrS),
-c22 Gemplus GXPE64PK , ATR=3B 7E 94 00 00 80 25 A0 00 00 00 28 56 80 10 21 00 01 08 (provided by PetrS),
-c23 Gemplus GXPLiteGeneric , ATR=3B 7D 94 00 00 80 31 80 65 B0 83 01 02 90 83 00 90 00 (provided by PetrS),
-c24 Gemplus GXPR3r32 , ATR=3B 7D 94 00 00 80 31 80 65 B0 83 01 02 90 83 00 90 00 (provided by PetrS),
-c25 Gemplus GXPR3 , ATR=3B 7B 94 00 00 80 65 B0 83 01 01 74 83 00 90 00 (provided by PetrS),
-c26 Gemplus GXP R4 72K ICFabDate 2007 291 , ATR=3b 7d 94 00 00 80 31 80 65 b0 83 11 c0 a9 83 00 90 00 (provided by PetrS), PerformanceGraphs
-c27 Gemplus unknown jc2.1.2 ICFabDate 2006 005 , ATR=3b 7d 94 00 00 80 31 80 65 b0 83 11 11 ac 83 00 90 00 (provided by PetrS),
-c28 Infineon CJTOP 80K INF SLJ 52GLA080AL M8.4 ICFabDate 2012 001 , ATR=3b fe 18 00 00 80 31 fe 45 80 31 80 66 40 90 a5 10 2e 10 83 01 90 00 f2 (provided by PetrS), PerformanceGraphs
-c29 Infineon JTOPV2 16K , ATR=3B 6D 00 00 80 31 80 65 40 90 86 01 51 83 07 90 00 (provided by PetrS),
-c30 Infineon SLE78 Universal JCard , ATR=3b fd 96 00 00 81 31 fe 45 53 4c 4a 35 32 47 44 4c 31 32 38 43 52 57 (provided by Till Mass),
-c31 JavaCardOS Infineon JC30M48CR , ATR=3b 80 80 01 01 (provided by JavaCardOS and Thotheolh Tay),
-c32 JavaCardOS JC10M24R , ATR=3b 80 80 01 01 (provided by JavaCardOS),
-c33 Nokia 6131 , ATR=3B 88 80 01 00 73 C8 40 13 00 90 00 71 (provided by Hakan Karahan),
-c34 NXP JCOP J2A080 80K ICFabDate 2011 070 , ATR=3b f8 18 00 00 81 31 fe 45 4a 43 4f 50 76 32 34 31 bc (provided by PetrS),
-c35 NXP J2E145G ICFabDate 2013 025 , ATR=3b f9 13 00 00 81 31 fe 45 4a 43 4f 50 32 34 32 52 33 a2 (provided by PetrS and Lukas Malina),
-c36 NXP JCOP10 (DES only version) , ATR=3b e9 00 00 81 31 fe 45 4a 43 4f 50 31 30 56 32 32 a3 (provided by Henrik),
-c37 NXP JCOP31 , ATR=3B EB 00 00 81 31 20 45 4A 43 4F 50 33 31 33 36 47 44 54 78 (provided by PetrS),
-c38 NXP JCOP41 v221 , ATR=3b fa 18 00 00 81 31 fe 45 4a 43 4f 50 34 31 56 32 32 31 9d (provided by PetrS), PerformanceGraphs
-c39 NXP JCOP 10.18 v2.3.1 ICFabDate 2008 163 , ATR=3b fa 13 00 00 81 31 fe 45 4a 43 4f 50 31 30 56 32 33 31 93 (provided by PetrS),
-c40 NXP JCOP 21 v2.4.2R3 ICFabDate 2013 025 , ATR=3b f9 13 00 00 81 31 fe 45 4a 43 4f 50 32 34 32 52 33 a2 (provided by PetrS), PerformanceGraphs
-c41 NXP JCOP 21 V2.2 36K ICFabDate 2008 015 , ATR=3b f9 18 00 00 81 31 fe 45 4a 43 4f 50 32 31 56 32 32 a9 (provided by PetrS), PerformanceGraphs
-c42 NXP JCOP 31 V2.2 36K ICFabDate 2006 306 , ATR=3b eb 00 00 81 31 20 45 4a 43 4f 50 33 31 33 36 47 44 54 78 (provided by PetrS), PerformanceGraphs
-c43 NXP JCOP 31 V2.3.2 ICFabDate 2011 016 , ATR=3b 8a 80 01 4a 43 4f 50 33 31 56 32 33 32 7a (provided by Martin Omacka),
-c44 NXP JCOP 31 V2.4.1 72K ICFabDate 2012 240 , ATR=3b f8 13 00 00 81 31 fe 45 4a 43 4f 50 76 32 34 31 b7 (provided by PetrS), PerformanceGraphs
-c45 NXP JCOP CJ2A081 JC222 ICFabDate 2012 240 , ATR=3b f8 13 00 00 81 31 fe 45 4a 43 4f 50 76 32 34 31 b7 (provided by PetrS), PerformanceGraphs
-c46 NXP JCOP CJ3A080v241 , ATR=3B F8 13 00 00 81 31 FE 45 4A 43 4F 50 76 32 34 31 B7 (provided by Lazuardi Nasution), PerformanceGraphs
-c47 NXP JCOP CJ3A081 JC222 , ATR=3b fa 18 00 00 81 31 fe 45 4a 33 41 30 38 31 56 32 34 31 89 (provided by PetrS), PerformanceGraphs
-c48 NXP JCOP J2A080 , ATR=3b f6 18 00 ff 81 31 fe 45 4a 32 41 30 38 30 1b (provided by Pierre-d), PerformanceGraphs
-c49 NXP JCOP J2A080 80K ICFabDate 2011 070 , ATR=3b f8 18 00 00 81 31 fe 45 4a 43 4f 50 76 32 34 31 bc (provided by PetrS),
-c50 NXP JCOP J2D081 80K ICFabDate 2014 126 , ATR=3b f9 18 00 00 81 31 fe 45 4a 32 44 30 38 31 5f 50 56 b6 (provided by PetrS and Paul Crocker), PerformanceGraphs
-c51 NXP JCOP J3A040 ICFabDate 2010 071 , ATR=3b 88 80 01 4a 43 4f 50 76 32 34 31 5e (provided by Lukas Malina),
-c52 NXP JCOP J3D081 v242r2 ICFabDate 2012 334 , ATR=3b f9 13 00 00 81 31 fe 45 4a 43 4f 50 32 34 32 52 32 a3 (provided by Martin Paljak and Arnis UT),
-c53 NXP JCOP NXP250A v242r3 , ATR=3b f9 13 00 00 81 31 fe 45 4a 43 4f 50 32 34 32 52 33 a2 (provided by Amir Digar Nemikhandad),
-c54 Oberthur CosmoDual72K , ATR=3B 7B 18 00 00 00 31 C0 64 77 E3 03 00 82 90 00 (provided by PetrS),
-c55 Oberthur Cosmo V7 64K Dual 128K , ATR=3B DB 18 00 80 B1 FE 45 1F 83 00 31 C0 64 C7 FC 10 00 01 90 00 FA (provided by Cosmo),
-c56 Oberthur ID-ONE Cosmo 64 RSA v5.4 ICFabDate 2007 031 , ATR=3b 7b 18 00 00 00 31 c0 64 77 e9 10 00 01 90 00 (provided by PetrS), PerformanceGraphs
-c57 Softlock SLCOS InfineonSLE78 , ATR=3b 8a 80 01 53 4c 43 4f 53 20 54 3d 43 4c 0d (provided by Ahmed Mamdouh),
-c58 Unknown , ATR=3b 68 00 00 00 73 c8 40 12 00 90 00 (provided by Amir Digar Nemikhandad),
-c59 Yubikey Neo (Warning not open JavaCard) , ATR=3b fa 13 00 00 81 31 fe 15 59 75 62 69 6b 65 79 4e 45 4f a6 (provided by Pierre-d and Cosmo),
-c60 [undisclosed1] , ATR=3b xx xx xx xx xx xx xx xx xx xx xx xx xx xx (provided by Cosmo),
-c61 [undisclosed2] , ATR=3b xx xx xx xx xx xx xx xx xx xx xx xx xx xx xx xx xx xx xx xx xx xx xx (provided by Cosmo),
-c62 [undisclosed3] , ATR=3b xx xx xx xx xx xx xx xx xx xx xx xx xx xx xx xx xx xx xx xx xx xx xx (provided by Cosmo),
-c63 [undisclosed4] , ATR=3b xx xx xx xx xx xx xx xx xx xx xx xx xx xx xx xx xx xx xx xx xx xx xx (provided by Cosmo),
-c64 [undisclosed5] , ATR=3b 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 (provided by Metro),
-c65 [undisclosed6] , ATR=3b 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 (provided by Metro),
+c2 Athena IDProtect ICFabDate 2015 , ATR=3b d5 18 ff 81 91 fe 1f c3 80 73 c8 21 13 09 (provided by PetrS),
+c3 Axalto Cyberflex32 , ATR=3B 75 94 00 00 62 02 02 02 01 (provided by PetrS),
+c4 Axalto Cyberflex PalmeraV5 , ATR=3B E6 00 00 81 21 45 32 4B 01 01 01 01 7A (provided by PetrS),
+c5 Feitian C21C Samsung S3FS91J , ATR=3b fc 18 00 00 81 31 80 45 90 67 46 4a 01 00 05 24 c0 72 7e 00 86 (provided by Thotheolh Tay),
+c6 Feitian eJava Token , ATR=3b fc 18 00 00 81 31 80 45 90 67 46 4a 01 64 2f 70 c1 72 fe e0 fd (provided by Razvan Dragomirescu),
+c7 Feitian JavaCOS A22CR-ECC-SHA-2 ICFabDate 2015 , ATR=3b fc 18 00 00 81 31 80 45 90 67 46 4a 01 00 10 04 f2 72 fe 00 01 (provided by Kenneth Benson),
+c8 Feitian JavaCOS A22CR ICFabDate 2016 084 , ATR=3b 8c 80 01 90 67 46 4a 01 00 25 04 00 00 00 00 d6 (provided by Josh Harvey),
+c9 Feitian JavaCOS A22CR ICFabDate 2016 257 , ATR=3b 9c 95 80 81 1f 03 90 67 46 4a 01 00 35 04 f2 72 fe 00 a1 (provided by PetrS),
+c10 Feitian JavaCOS A22 , ATR=3b fc 18 00 00 81 31 80 45 90 67 46 4a 00 68 08 04 00 00 00 00 0e (provided by Ivo Kubjas and PetrS),
+c11 Feitian JavaCOS A22 ICFabDate 2015 , ATR=3b fc 18 00 00 81 31 80 45 90 67 46 4a 00 68 08 04 00 00 00 00 0e (provided by Ivo Kubjas and PetrS),
+c12 Feitian JavaCOS A40 ICFabDate 2016 201 , ATR=3b fc 18 00 00 81 31 80 45 90 67 46 4a 01 00 20 05 00 00 00 00 4e (provided by PetrS and Keneth Benson),
+c13 Feitian Java Card D11CR , ATR=3b 6a 00 00 09 44 31 31 43 52 02 00 25 c3 (provided by PetrS),
+c14 Feitian K9 NXPJ3E081 , ATR=3b f9 13 00 00 81 31 fe 45 4a 43 4f 50 32 34 32 52 33 a2 (provided by Thotheolh Tay),
+c15 G+D Smartcafe 6.0 80K ICFabDate 2015 024 , ATR=3b fe 18 00 00 80 31 fe 45 53 43 45 36 30 2d 43 44 30 38 31 2d 6e 46 a9 (provided by PetrS),
+c16 G+D SmartCafe Expert 144k Dual , ATR=3b fd 18 00 00 80 31 fe 45 73 66 74 65 20 63 64 31 34 34 2d 6e 66 d8 (provided by Diego NdK),
+c17 G+D Smartcafe Expert 3.2 72K ICFabDate 2003 126 , ATR=3b f7 18 00 00 80 31 fe 45 73 66 74 65 2d 6e 66 c4 (provided by Cosmo and PetrS),
+c18 G+D Smart Cafe Expert 4.x V2 ICFabDate 2007 079 , ATR=3b f8 18 00 00 80 31 fe 45 00 73 c8 40 13 00 90 00 92 (provided by PetrS), PerformanceGraphs
+c19 Gemalto IDCore 10 , ATR=3b 7d 96 00 00 80 31 80 65 b0 83 11 d0 a9 83 00 90 00 (provided by Martin Paljak),
+c20 Gemalto IDCore 3010 CC , ATR=3b 7d 96 00 00 80 31 80 65 b0 85 02 00 cf 83 01 90 00 (provided by Martin Paljak),
+c21 Gemalto TOP IM GXP4 , ATR=3b 7d 94 00 00 80 31 80 65 b0 83 11 d0 a9 83 00 90 00 (provided by PetrS),
+c22 Gemalto TwinGCX4 72k PK , ATR=3B 7A 94 00 00 80 65 A2 01 01 01 3D 72 D6 43 (provided by PetrS),
+c23 Gemplus GXPE64PK , ATR=3B 7E 94 00 00 80 25 A0 00 00 00 28 56 80 10 21 00 01 08 (provided by PetrS),
+c24 Gemplus GXPLiteGeneric , ATR=3B 7D 94 00 00 80 31 80 65 B0 83 01 02 90 83 00 90 00 (provided by PetrS),
+c25 Gemplus GXPR3r32 , ATR=3B 7D 94 00 00 80 31 80 65 B0 83 01 02 90 83 00 90 00 (provided by PetrS),
+c26 Gemplus GXPR3 , ATR=3B 7B 94 00 00 80 65 B0 83 01 01 74 83 00 90 00 (provided by PetrS),
+c27 Gemplus GXP R4 72K ICFabDate 2007 291 , ATR=3b 7d 94 00 00 80 31 80 65 b0 83 11 c0 a9 83 00 90 00 (provided by PetrS), PerformanceGraphs
+c28 Gemplus unknown jc2.1.2 ICFabDate 2006 005 , ATR=3b 7d 94 00 00 80 31 80 65 b0 83 11 11 ac 83 00 90 00 (provided by PetrS),
+c29 Infineon CJTOP 80K INF SLJ 52GLA080AL M8.4 ICFabDate 2012 001 , ATR=3b fe 18 00 00 80 31 fe 45 80 31 80 66 40 90 a5 10 2e 10 83 01 90 00 f2 (provided by PetrS), PerformanceGraphs
+c30 Infineon JTOPV2 16K , ATR=3B 6D 00 00 80 31 80 65 40 90 86 01 51 83 07 90 00 (provided by PetrS),
+c31 Infineon SLE78 Universal JCard , ATR=3b fd 96 00 00 81 31 fe 45 53 4c 4a 35 32 47 44 4c 31 32 38 43 52 57 (provided by Till Maas RedTeamPentesting),
+c32 JavaCardOS Infineon JC30M48CR , ATR=3b 80 80 01 01 (provided by JavaCardOS and Thotheolh Tay),
+c33 JavaCardOS JC10M24R , ATR=3b 80 80 01 01 (provided by JavaCardOS),
+c34 Nokia 6131 , ATR=3B 88 80 01 00 73 C8 40 13 00 90 00 71 (provided by Hakan Karahan),
+c35 NXP JCOP J2A080 80K ICFabDate 2011 070 , ATR=3b f8 18 00 00 81 31 fe 45 4a 43 4f 50 76 32 34 31 bc (provided by PetrS),
+c36 NXP J2E145G ICFabDate 2013 025 , ATR=3b f9 13 00 00 81 31 fe 45 4a 43 4f 50 32 34 32 52 33 a2 (provided by PetrS and Lukas Malina),
+c37 NXP JCOP10 (DES only version) , ATR=3b e9 00 00 81 31 fe 45 4a 43 4f 50 31 30 56 32 32 a3 (provided by Henrik),
+c38 NXP JCOP31 , ATR=3B EB 00 00 81 31 20 45 4A 43 4F 50 33 31 33 36 47 44 54 78 (provided by PetrS),
+c39 NXP JCOP41 v221 , ATR=3b fa 18 00 00 81 31 fe 45 4a 43 4f 50 34 31 56 32 32 31 9d (provided by PetrS), PerformanceGraphs
+c40 NXP JCOP 10.18 v2.3.1 ICFabDate 2008 163 , ATR=3b fa 13 00 00 81 31 fe 45 4a 43 4f 50 31 30 56 32 33 31 93 (provided by PetrS),
+c41 NXP JCOP 21 v2.4.2R3 ICFabDate 2013 025 , ATR=3b f9 13 00 00 81 31 fe 45 4a 43 4f 50 32 34 32 52 33 a2 (provided by PetrS), PerformanceGraphs
+c42 NXP JCOP 21 V2.2 36K ICFabDate 2008 015 , ATR=3b f9 18 00 00 81 31 fe 45 4a 43 4f 50 32 31 56 32 32 a9 (provided by PetrS), PerformanceGraphs
+c43 NXP JCOP 31 V2.2 36K ICFabDate 2006 306 , ATR=3b eb 00 00 81 31 20 45 4a 43 4f 50 33 31 33 36 47 44 54 78 (provided by PetrS), PerformanceGraphs
+c44 NXP JCOP 31 V2.3.2 ICFabDate 2011 016 , ATR=3b 8a 80 01 4a 43 4f 50 33 31 56 32 33 32 7a (provided by Martin Omacka),
+c45 NXP JCOP 31 V2.4.1 72K ICFabDate 2012 240 , ATR=3b f8 13 00 00 81 31 fe 45 4a 43 4f 50 76 32 34 31 b7 (provided by PetrS), PerformanceGraphs
+c46 NXP JCOP CJ2A081 JC222 ICFabDate 2012 240 , ATR=3b f8 13 00 00 81 31 fe 45 4a 43 4f 50 76 32 34 31 b7 (provided by PetrS), PerformanceGraphs
+c47 NXP JCOP CJ3A080v241 , ATR=3B F8 13 00 00 81 31 FE 45 4A 43 4F 50 76 32 34 31 B7 (provided by Lazuardi Nasution), PerformanceGraphs
+c48 NXP JCOP CJ3A081 JC222 , ATR=3b f8 13 00 00 81 31 fe 45 4a 33 41 30 38 31 56 32 34 31 89 (provided by PetrS), PerformanceGraphs
+c49 NXP JCOP J2A080 , ATR=3b f6 18 00 ff 81 31 fe 45 4a 32 41 30 38 30 1b (provided by Pierre-d), PerformanceGraphs
+c50 NXP JCOP J2A080 80K ICFabDate 2011 070 , ATR=3b f8 18 00 00 81 31 fe 45 4a 43 4f 50 76 32 34 31 bc (provided by PetrS),
+c51 NXP JCOP J2D081 80K ICFabDate 2014 126 , ATR=3b f9 18 00 00 81 31 fe 45 4a 32 44 30 38 31 5f 50 56 b6 (provided by PetrS and Paul Crocker), PerformanceGraphs
+c52 NXP JCOP J3A040 ICFabDate 2010 071 , ATR=3b 88 80 01 4a 43 4f 50 76 32 34 31 5e (provided by Lukas Malina),
+c53 NXP JCOP J3D081 v242r2 ICFabDate 2012 334 , ATR=3b f9 13 00 00 81 31 fe 45 4a 43 4f 50 32 34 32 52 32 a3 (provided by Martin Paljak and Arnis UT),
+c54 NXP JCOP NXP250A v242r3 , ATR=3b f9 13 00 00 81 31 fe 45 4a 43 4f 50 32 34 32 52 33 a2 (provided by Amir Digar Nemikhandad),
+c55 Oberthur CosmoDual72K , ATR=3B 7B 18 00 00 00 31 C0 64 77 E3 03 00 82 90 00 (provided by PetrS),
+c56 Oberthur Cosmo V7 64K Dual 128K , ATR=3B DB 18 00 80 B1 FE 45 1F 83 00 31 C0 64 C7 FC 10 00 01 90 00 FA (provided by Cosmo),
+c57 Oberthur ID-ONE Cosmo 64 RSA v5.4 ICFabDate 2007 031 , ATR=3b 7b 18 00 00 00 31 c0 64 77 e9 10 00 01 90 00 (provided by PetrS), PerformanceGraphs
+c58 Softlock SLCOS InfineonSLE78 , ATR=3b 8a 80 01 53 4c 43 4f 53 20 54 3d 43 4c 0d (provided by Ahmed Mamdouh),
+c59 Unknown , ATR=3b 68 00 00 00 73 c8 40 12 00 90 00 (provided by Amir Digar Nemikhandad),
+c60 Yubikey Neo (Warning not open JavaCard) , ATR=3b fa 13 00 00 81 31 fe 15 59 75 62 69 6b 65 79 4e 45 4f a6 (provided by Pierre-d and Cosmo),
+c61 [undisclosed1] , ATR=3b xx xx xx xx xx xx xx xx xx xx xx xx xx xx (provided by Cosmo),
+c62 [undisclosed2] , ATR=3b xx xx xx xx xx xx xx xx xx xx xx xx xx xx xx xx xx xx xx xx xx xx xx (provided by Cosmo),
+c63 [undisclosed3] , ATR=3b xx xx xx xx xx xx xx xx xx xx xx xx xx xx xx xx xx xx xx xx xx xx xx (provided by Cosmo),
+c64 [undisclosed4] , ATR=3b xx xx xx xx xx xx xx xx xx xx xx xx xx xx xx xx xx xx xx xx xx xx xx (provided by Cosmo),
+c65 [undisclosed5] , ATR=3b 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 (provided by Metro),
+c66 [undisclosed6] , ATR=3b 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 (provided by Metro),

Note: Some cards in the table come without full identification and ATR ('undisclosed') as submitters prefered not to disclose it at the momment. I'm publishing it anyway as the information that some card supporting particular algorithm exists is still interesting. Full identification might be added in future.

@@ -167,74 +118,75 @@

Click on each checkbox to show/hide corresponding column (card)

c0 - ACS ACOSJ (Combi)

c1 - Athena IDprotect

-

c2 - Axalto Cyberflex32

-

c3 - Axalto Cyberflex PalmeraV5

-

c4 - Feitian C21C Samsung S3FS91J

-

c5 - Feitian eJava Token

-

c6 - Feitian JavaCOS A22CR-ECC-SHA-2 ICFabDate 2015

-

c7 - Feitian JavaCOS A22CR ICFabDate 2016 084

-

c8 - Feitian JavaCOS A22CR ICFabDate 2016 257

-

c9 - Feitian JavaCOS A22

-

c10 - Feitian JavaCOS A22 ICFabDate 2015

-

c11 - Feitian JavaCOS A40 ICFabDate 2016 201

-

c12 - Feitian Java Card D11CR

-

c13 - Feitian K9 NXPJ3E081

-

c14 - G+D Smartcafe 6.0 80K ICFabDate 2015 024

-

c15 - G+D SmartCafe Expert 144k Dual

-

c16 - G+D Smartcafe Expert 3.2 72K ICFabDate 2003 126

-

c17 - G+D Smart Cafe Expert 4.x V2 ICFabDate 2007 079

-

c18 - Gemalto IDCore 10

-

c19 - Gemalto IDCore 3010 CC

-

c20 - Gemalto TOP IM GXP4

-

c21 - Gemalto TwinGCX4 72k PK

-

c22 - Gemplus GXPE64PK

+

c2 - Athena IDProtect ICFabDate 2015

+

c3 - Axalto Cyberflex32

+

c4 - Axalto Cyberflex PalmeraV5

+

c5 - Feitian C21C Samsung S3FS91J

+

c6 - Feitian eJava Token

+

c7 - Feitian JavaCOS A22CR-ECC-SHA-2 ICFabDate 2015

+

c8 - Feitian JavaCOS A22CR ICFabDate 2016 084

+

c9 - Feitian JavaCOS A22CR ICFabDate 2016 257

+

c10 - Feitian JavaCOS A22

+

c11 - Feitian JavaCOS A22 ICFabDate 2015

+

c12 - Feitian JavaCOS A40 ICFabDate 2016 201

+

c13 - Feitian Java Card D11CR

+

c14 - Feitian K9 NXPJ3E081

+

c15 - G+D Smartcafe 6.0 80K ICFabDate 2015 024

+

c16 - G+D SmartCafe Expert 144k Dual

+

c17 - G+D Smartcafe Expert 3.2 72K ICFabDate 2003 126

+

c18 - G+D Smart Cafe Expert 4.x V2 ICFabDate 2007 079

+

c19 - Gemalto IDCore 10

+

c20 - Gemalto IDCore 3010 CC

+

c21 - Gemalto TOP IM GXP4

+

c22 - Gemalto TwinGCX4 72k PK

-

c23 - Gemplus GXPLiteGeneric

-

c24 - Gemplus GXPR3r32

-

c25 - Gemplus GXPR3

-

c26 - Gemplus GXP R4 72K ICFabDate 2007 291

-

c27 - Gemplus unknown jc2.1.2 ICFabDate 2006 005

-

c28 - Infineon CJTOP 80K INF SLJ 52GLA080AL M8.4 ICFabDate 2012 001

-

c29 - Infineon JTOPV2 16K

-

c30 - Infineon SLE78 Universal JCard

-

c31 - JavaCardOS Infineon JC30M48CR

-

c32 - JavaCardOS JC10M24R

-

c33 - Nokia 6131

-

c34 - NXP JCOP J2A080 80K ICFabDate 2011 070

-

c35 - NXP J2E145G ICFabDate 2013 025

-

c36 - NXP JCOP10 (DES only version)

-

c37 - NXP JCOP31

-

c38 - NXP JCOP41 v221

-

c39 - NXP JCOP 10.18 v2.3.1 ICFabDate 2008 163

-

c40 - NXP JCOP 21 v2.4.2R3 ICFabDate 2013 025

-

c41 - NXP JCOP 21 V2.2 36K ICFabDate 2008 015

-

c42 - NXP JCOP 31 V2.2 36K ICFabDate 2006 306

-

c43 - NXP JCOP 31 V2.3.2 ICFabDate 2011 016

-

c44 - NXP JCOP 31 V2.4.1 72K ICFabDate 2012 240

-

c45 - NXP JCOP CJ2A081 JC222 ICFabDate 2012 240

+

c23 - Gemplus GXPE64PK

+

c24 - Gemplus GXPLiteGeneric

+

c25 - Gemplus GXPR3r32

+

c26 - Gemplus GXPR3

+

c27 - Gemplus GXP R4 72K ICFabDate 2007 291

+

c28 - Gemplus unknown jc2.1.2 ICFabDate 2006 005

+

c29 - Infineon CJTOP 80K INF SLJ 52GLA080AL M8.4 ICFabDate 2012 001

+

c30 - Infineon JTOPV2 16K

+

c31 - Infineon SLE78 Universal JCard

+

c32 - JavaCardOS Infineon JC30M48CR

+

c33 - JavaCardOS JC10M24R

+

c34 - Nokia 6131

+

c35 - NXP JCOP J2A080 80K ICFabDate 2011 070

+

c36 - NXP J2E145G ICFabDate 2013 025

+

c37 - NXP JCOP10 (DES only version)

+

c38 - NXP JCOP31

+

c39 - NXP JCOP41 v221

+

c40 - NXP JCOP 10.18 v2.3.1 ICFabDate 2008 163

+

c41 - NXP JCOP 21 v2.4.2R3 ICFabDate 2013 025

+

c42 - NXP JCOP 21 V2.2 36K ICFabDate 2008 015

+

c43 - NXP JCOP 31 V2.2 36K ICFabDate 2006 306

+

c44 - NXP JCOP 31 V2.3.2 ICFabDate 2011 016

+

c45 - NXP JCOP 31 V2.4.1 72K ICFabDate 2012 240

-

c46 - NXP JCOP CJ3A080v241

-

c47 - NXP JCOP CJ3A081 JC222

-

c48 - NXP JCOP J2A080

-

c49 - NXP JCOP J2A080 80K ICFabDate 2011 070

-

c50 - NXP JCOP J2D081 80K ICFabDate 2014 126

-

c51 - NXP JCOP J3A040 ICFabDate 2010 071

-

c52 - NXP JCOP J3D081 v242r2 ICFabDate 2012 334

-

c53 - NXP JCOP NXP250A v242r3

-

c54 - Oberthur CosmoDual72K

-

c55 - Oberthur Cosmo V7 64K Dual 128K

-

c56 - Oberthur ID-ONE Cosmo 64 RSA v5.4 ICFabDate 2007 031

-

c57 - Softlock SLCOS InfineonSLE78

-

c58 - Unknown

-

c59 - Yubikey Neo (Warning not open JavaCard)

-

c60 - [undisclosed1]

-

c61 - [undisclosed2]

-

c62 - [undisclosed3]

-

c63 - [undisclosed4]

-

c64 - [undisclosed5]

-

c65 - [undisclosed6]

+

c46 - NXP JCOP CJ2A081 JC222 ICFabDate 2012 240

+

c47 - NXP JCOP CJ3A080v241

+

c48 - NXP JCOP CJ3A081 JC222

+

c49 - NXP JCOP J2A080

+

c50 - NXP JCOP J2A080 80K ICFabDate 2011 070

+

c51 - NXP JCOP J2D081 80K ICFabDate 2014 126

+

c52 - NXP JCOP J3A040 ICFabDate 2010 071

+

c53 - NXP JCOP J3D081 v242r2 ICFabDate 2012 334

+

c54 - NXP JCOP NXP250A v242r3

+

c55 - Oberthur CosmoDual72K

+

c56 - Oberthur Cosmo V7 64K Dual 128K

+

c57 - Oberthur ID-ONE Cosmo 64 RSA v5.4 ICFabDate 2007 031

+

c58 - Softlock SLCOS InfineonSLE78

+

c59 - Unknown

+

c60 - Yubikey Neo (Warning not open JavaCard)

+

c61 - [undisclosed1]

+

c62 - [undisclosed2]

+

c63 - [undisclosed3]

+

c64 - [undisclosed4]

+

c65 - [undisclosed5]

+

c66 - [undisclosed6]


@@ -244,82 +196,84 @@

Click on each checkbox to show/hide corresponding column (card)



- + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -365,7 +319,7 @@

Click on each checkbox to show/hide corresponding column (card)

- + @@ -390,6 +344,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -460,76 +415,78 @@

Click on each checkbox to show/hide corresponding column (card)

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -600,6 +557,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -670,6 +628,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -740,6 +699,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -810,6 +770,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -944,82 +905,85 @@

Click on each checkbox to show/hide corresponding column (card)

+ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -1090,76 +1054,78 @@

Click on each checkbox to show/hide corresponding column (card)

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -1230,6 +1196,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -1300,6 +1267,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -1370,6 +1338,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -1440,6 +1409,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -1510,6 +1480,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -1580,6 +1551,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -1650,6 +1622,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -1720,6 +1693,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -1790,6 +1764,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -1860,6 +1835,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -1930,6 +1906,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -2000,6 +1977,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -2070,6 +2048,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -2140,6 +2119,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -2210,6 +2190,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -2280,6 +2261,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -2350,6 +2332,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -2420,6 +2403,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -2490,6 +2474,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -2560,6 +2545,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -2630,6 +2616,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -2700,6 +2687,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -2770,6 +2758,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -2840,6 +2829,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -2910,6 +2900,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -2980,6 +2971,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -3050,76 +3042,78 @@

Click on each checkbox to show/hide corresponding column (card)

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -3190,6 +3184,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -3260,6 +3255,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -3330,6 +3326,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -3400,6 +3397,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -3470,6 +3468,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -3540,6 +3539,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -3610,6 +3610,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -3680,6 +3681,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -3750,6 +3752,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -3820,6 +3823,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -3890,6 +3894,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -3960,6 +3965,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -4030,6 +4036,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -4100,6 +4107,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -4170,6 +4178,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -4240,6 +4249,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -4310,6 +4320,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -4380,6 +4391,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -4450,6 +4462,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -4520,6 +4533,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -4590,6 +4604,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -4660,6 +4675,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -4730,6 +4746,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -4800,6 +4817,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -4870,6 +4888,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -4940,6 +4959,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -5010,6 +5030,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -5080,6 +5101,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -5150,6 +5172,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -5220,6 +5243,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -5290,6 +5314,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -5360,6 +5385,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -5430,6 +5456,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -5500,6 +5527,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -5570,6 +5598,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -5640,6 +5669,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -5710,6 +5740,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -5780,6 +5811,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -5850,6 +5882,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -5920,6 +5953,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -5990,6 +6024,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -6060,6 +6095,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -6130,6 +6166,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -6200,6 +6237,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -6270,6 +6308,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -6340,6 +6379,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -6410,6 +6450,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -6480,6 +6521,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -6525,7 +6567,7 @@

Click on each checkbox to show/hide corresponding column (card)

- + @@ -6550,76 +6592,78 @@

Click on each checkbox to show/hide corresponding column (card)

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -6690,6 +6734,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -6760,6 +6805,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -6830,6 +6876,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -6900,6 +6947,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -6970,6 +7018,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -7040,6 +7089,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -7110,6 +7160,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -7155,7 +7206,7 @@

Click on each checkbox to show/hide corresponding column (card)

- + @@ -7180,6 +7231,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -7225,7 +7277,7 @@

Click on each checkbox to show/hide corresponding column (card)

- + @@ -7250,6 +7302,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -7295,7 +7348,7 @@

Click on each checkbox to show/hide corresponding column (card)

- + @@ -7320,6 +7373,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -7365,7 +7419,7 @@

Click on each checkbox to show/hide corresponding column (card)

- + @@ -7390,76 +7444,78 @@

Click on each checkbox to show/hide corresponding column (card)

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -7530,6 +7586,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -7600,6 +7657,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -7645,7 +7703,7 @@

Click on each checkbox to show/hide corresponding column (card)

- + @@ -7670,6 +7728,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -7715,7 +7774,7 @@

Click on each checkbox to show/hide corresponding column (card)

- + @@ -7740,6 +7799,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -7785,7 +7845,7 @@

Click on each checkbox to show/hide corresponding column (card)

- + @@ -7810,6 +7870,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -7855,7 +7916,7 @@

Click on each checkbox to show/hide corresponding column (card)

- + @@ -7880,76 +7941,78 @@

Click on each checkbox to show/hide corresponding column (card)

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -8020,6 +8083,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -8090,6 +8154,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -8160,6 +8225,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -8230,6 +8296,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -8300,6 +8367,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -8370,6 +8438,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -8440,6 +8509,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -8510,6 +8580,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -8580,6 +8651,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -8650,6 +8722,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -8720,6 +8793,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -8790,6 +8864,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -8860,6 +8935,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -8930,6 +9006,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -9000,6 +9077,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -9070,6 +9148,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -9140,6 +9219,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -9210,6 +9290,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -9280,6 +9361,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -9350,6 +9432,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -9420,6 +9503,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -9490,6 +9574,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -9560,6 +9645,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -9630,6 +9716,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -9700,6 +9787,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -9770,6 +9858,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -9840,6 +9929,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -9910,6 +10000,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -9980,6 +10071,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -10050,6 +10142,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -10120,6 +10213,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -10190,6 +10284,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -10260,6 +10355,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -10330,6 +10426,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -10400,6 +10497,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -10470,6 +10568,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -10540,6 +10639,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -10610,6 +10710,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -10680,6 +10781,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -10750,6 +10852,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -10820,6 +10923,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -10890,6 +10994,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -10960,6 +11065,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -11030,6 +11136,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -11100,6 +11207,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -11170,6 +11278,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -11240,6 +11349,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -11310,6 +11420,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -11380,6 +11491,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -11450,6 +11562,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -11520,6 +11633,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -11590,6 +11704,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -11660,6 +11775,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -11730,6 +11846,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -11800,6 +11917,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -11870,6 +11988,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -11940,6 +12059,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -12010,6 +12130,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -12080,6 +12201,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -12150,6 +12272,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -12220,6 +12343,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -12290,6 +12414,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -12360,6 +12485,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -12430,6 +12556,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -12500,6 +12627,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -12570,6 +12698,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -12640,6 +12769,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -12710,6 +12840,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -12780,6 +12911,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -12850,6 +12982,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -12920,6 +13053,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -12990,6 +13124,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -13060,6 +13195,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -13130,6 +13266,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -13200,6 +13337,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -13270,6 +13408,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -13340,76 +13479,78 @@

Click on each checkbox to show/hide corresponding column (card)

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -13480,6 +13621,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -13550,6 +13692,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -13620,6 +13763,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -13690,6 +13834,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -13760,6 +13905,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -13830,6 +13976,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -13900,6 +14047,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -13970,6 +14118,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -14040,6 +14189,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -14110,76 +14260,78 @@

Click on each checkbox to show/hide corresponding column (card)

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -14250,6 +14402,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -14320,6 +14473,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -14390,6 +14544,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -14460,6 +14615,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -14530,6 +14686,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -14600,6 +14757,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -14670,6 +14828,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -14740,6 +14899,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -14810,6 +14970,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -14880,76 +15041,78 @@

Click on each checkbox to show/hide corresponding column (card)

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -15020,6 +15183,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -15090,6 +15254,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -15160,76 +15325,78 @@

Click on each checkbox to show/hide corresponding column (card)

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -15300,6 +15467,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -15370,6 +15538,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -15440,6 +15609,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -15510,76 +15680,78 @@

Click on each checkbox to show/hide corresponding column (card)

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -15650,6 +15822,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -15720,6 +15893,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -15790,6 +15964,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -15860,6 +16035,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -15905,7 +16081,7 @@

Click on each checkbox to show/hide corresponding column (card)

- + @@ -15930,6 +16106,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -15975,7 +16152,7 @@

Click on each checkbox to show/hide corresponding column (card)

- + @@ -16000,6 +16177,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -16070,6 +16248,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -16140,76 +16319,78 @@

Click on each checkbox to show/hide corresponding column (card)

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -16280,6 +16461,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -16350,6 +16532,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -16395,7 +16578,7 @@

Click on each checkbox to show/hide corresponding column (card)

- + @@ -16420,6 +16603,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -16465,7 +16649,7 @@

Click on each checkbox to show/hide corresponding column (card)

- + @@ -16490,6 +16674,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -16535,7 +16720,7 @@

Click on each checkbox to show/hide corresponding column (card)

- + @@ -16560,6 +16745,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -16605,7 +16791,7 @@

Click on each checkbox to show/hide corresponding column (card)

- + @@ -16630,6 +16816,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -16675,7 +16862,7 @@

Click on each checkbox to show/hide corresponding column (card)

- + @@ -16700,76 +16887,78 @@

Click on each checkbox to show/hide corresponding column (card)

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -16840,6 +17029,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -16910,76 +17100,78 @@

Click on each checkbox to show/hide corresponding column (card)

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -17050,6 +17242,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -17120,6 +17313,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -17190,6 +17384,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -17260,6 +17455,7 @@

Click on each checkbox to show/hide corresponding column (card)

+ @@ -17327,100 +17523,9 @@

Click on each checkbox to show/hide corresponding column (card)

Basic info introduced in JC ver. c0 c1c2c3c4c5c6c7c8c9c10c11c12c13c14c15c16c17c18c19c20c21c22c23c24c25c26c27c28c29c30c31c32c33c34c35c36c37c38c39c40c41c42c43c44c45c46c47c48c49c50c51c52c53c54c55c56c57c58c59c60c61c62c63c64c65c2c3c4c5c6c7c8c9c10c11c12c13c14c15c16c17c18c19c20c21c22c23c24c25c26c27c28c29c30c31c32c33c34c35c36c37c38c39c40c41c42c43c44c45c46c47c48c49c50c51c52c53c54c55c56c57c58c59c60c61c62c63c64c65c66
AlgTest applet version 1.7.1 1.21.7.3 0.1 0.1 1.6.0 1.7.0 1.7.0 1.21.21.7.3 1.1 1.7.0 1.7.0 - 2.2.22.2.2 2.1.2 2.1.2 - introduced in JC ver. c0 c1c2c3c4c5c6c7c8c9c10c11c12c13c14c15c16c17c18c19c20c21c22c23c24c25c26c27c28c29c30c31c32c33c34c35c36c37c38c39c40c41c42c43c44c45c46c47c48c49c50c51c52c53c54c55c56c57c58c59c60c61c62c63c64c65c2c3c4c5c6c7c8c9c10c11c12c13c14c15c16c17c18c19c20c21c22c23c24c25c26c27c28c29c30c31c32c33c34c35c36c37c38c39c40c41c42c43c44c45c46c47c48c49c50c51c52c53c54c55c56c57c58c59c60c61c62c63c64c65c66
JCSystem.getVersion()[Major.Minor] ≤2.1 3.0 2.22.2 - - 3.0 2.2.0 yes yesyes - - yes 2.2.1 20340B >32767B>32767B - - >32767B 2.2.1 1154B 4878B4157B - - 3940B 2.2.1 3624B 4878B32767B - - 1024B - - --
javacardx.apdu.ExtendedLength introduced in JC ver. c0 c1c2c3c4c5c6c7c8c9c10c11c12c13c14c15c16c17c18c19c20c21c22c23c24c25c26c27c28c29c30c31c32c33c34c35c36c37c38c39c40c41c42c43c44c45c46c47c48c49c50c51c52c53c54c55c56c57c58c59c60c61c62c63c64c65c2c3c4c5c6c7c8c9c10c11c12c13c14c15c16c17c18c19c20c21c22c23c24c25c26c27c28c29c30c31c32c33c34c35c36c37c38c39c40c41c42c43c44c45c46c47c48c49c50c51c52c53c54c55c56c57c58c59c60c61c62c63c64c65c66
Extended APDU 2.2.2 - -- no no - introduced in JC ver. c0 c1c2c3c4c5c6c7c8c9c10c11c12c13c14c15c16c17c18c19c20c21c22c23c24c25c26c27c28c29c30c31c32c33c34c35c36c37c38c39c40c41c42c43c44c45c46c47c48c49c50c51c52c53c54c55c56c57c58c59c60c61c62c63c64c65c2c3c4c5c6c7c8c9c10c11c12c13c14c15c16c17c18c19c20c21c22c23c24c25c26c27c28c29c30c31c32c33c34c35c36c37c38c39c40c41c42c43c44c45c46c47c48c49c50c51c52c53c54c55c56c57c58c59c60c61c62c63c64c65c66
ALG_DES_CBC_NOPAD ≤2.1 yes yesyes yes yes yes ≤2.1 yes yesyes yes yes yes ≤2.1 yes yesyes yes yes yes ≤2.1 yes nono no no yes ≤2.1 yes yesyes yes yes yes ≤2.1 yes yesyes yes yes yes ≤2.1 yes yesyes yes yes yes ≤2.1 yes nono no no yes ≤2.1 no nono no no no ≤2.1 yes yesyes yes yes yes ≤2.1 no nono no no no 2.1.1 yes yesyes yes yes yes 2.2.0 yes yesyes no suspicious yes yes 2.2.0 yes yesyes no suspicious yes yes 2.2.0 no nono no no no 2.2.2 yes yesyes no no yes 2.2.2 yes yesyes no no yes 3.0.1 no nono - - no 3.0.1 no nono - - no 3.0.1 no nono - - no 3.0.1 no nono - - no 3.0.1 yes nono - - yes 3.0.1 yes nono - - yes 3.0.1 yes nono - - yes 3.0.1 yes nono - - yes 3.0.1 yes nono - - yes 3.0.1 yes nono - - yes introduced in JC ver. c0 c1c2c3c4c5c6c7c8c9c10c11c12c13c14c15c16c17c18c19c20c21c22c23c24c25c26c27c28c29c30c31c32c33c34c35c36c37c38c39c40c41c42c43c44c45c46c47c48c49c50c51c52c53c54c55c56c57c58c59c60c61c62c63c64c65c2c3c4c5c6c7c8c9c10c11c12c13c14c15c16c17c18c19c20c21c22c23c24c25c26c27c28c29c30c31c32c33c34c35c36c37c38c39c40c41c42c43c44c45c46c47c48c49c50c51c52c53c54c55c56c57c58c59c60c61c62c63c64c65c66
ALG_DES_MAC4_NOPAD ≤2.1 yes nono no yes yes ≤2.1 yes yesyes yes yes yes ≤2.1 yes nono no yes yes ≤2.1 yes yesyes yes yes yes ≤2.1 yes nono no yes yes ≤2.1 yes yesyes yes yes yes ≤2.1 yes nono no no yes ≤2.1 yes nono no no yes ≤2.1 no yesyes no yes yes ≤2.1 no yesyes yes yes yes ≤2.1 no nono yes yes yes ≤2.1 no nono no no no ≤2.1 no nono no no no ≤2.1 no nono no no no ≤2.1 no nono no no no ≤2.1 no nono no no no 2.2.0 yes noyes no no no 2.2.0 no yesyes no suspicious yes yes 2.2.0 yes nono no no yes 2.2.0 yes noyes no no yes 2.2.0 no noyes no no no 2.2.0 no nono no no no 2.2.0 no nono no no no 2.2.2 no nono no no no 2.2.2 no nono no no no 2.2.2 no nono no no no 2.2.2 no nono no no no 2.2.2 no nono no no no 2.2.2 no nono no no no 2.2.2 no nono no no yes 2.2.2 no nono no no no 2.2.2 no yesyes no no yes 3.0.1 yes nosuspicious yes - - no 3.0.1 yes nono - - no 3.0.1 no nono - - no 3.0.1 no nono - - no 3.0.1 yes nosuspicious yes - - no 3.0.1 yes nono - - no 3.0.1 no nono - - no 3.0.1 no nosuspicious yes - - no 3.0.1 no nono - - no 3.0.1 no nono - - no 3.0.1 no nono - - no 3.0.1 no nosuspicious yes - - no 3.0.1 no nono - - no 3.0.1 no nono - - no 3.0.4 yes nono - - no 3.0.4 yes nono - - no 3.0.5 - -no - - - - - --no - - - introduced in JC ver. c0 c1c2c3c4c5c6c7c8c9c10c11c12c13c14c15c16c17c18c19c20c21c22c23c24c25c26c27c28c29c30c31c32c33c34c35c36c37c38c39c40c41c42c43c44c45c46c47c48c49c50c51c52c53c54c55c56c57c58c59c60c61c62c63c64c65c2c3c4c5c6c7c8c9c10c11c12c13c14c15c16c17c18c19c20c21c22c23c24c25c26c27c28c29c30c31c32c33c34c35c36c37c38c39c40c41c42c43c44c45c46c47c48c49c50c51c52c53c54c55c56c57c58c59c60c61c62c63c64c65c66
ALG_SHA ≤2.1 yes yesyes yes yes yes ≤2.1 yes nono yes yes yes ≤2.1 no nono no no no 2.2.2 yes yesyes no no yes 2.2.2 yes noyes no no yes 2.2.2 yes noyes no no yes 3.0.1 yes nosuspicious yes - - no 3.0.5 - -no - - - - - --no - - - 3.0.5 - -no - - - - - --no - - - 3.0.5 - -no - - - - - --no - - - 3.0.5 - -no - - - - - --no - - - introduced in JC ver. c0 c1c2c3c4c5c6c7c8c9c10c11c12c13c14c15c16c17c18c19c20c21c22c23c24c25c26c27c28c29c30c31c32c33c34c35c36c37c38c39c40c41c42c43c44c45c46c47c48c49c50c51c52c53c54c55c56c57c58c59c60c61c62c63c64c65c2c3c4c5c6c7c8c9c10c11c12c13c14c15c16c17c18c19c20c21c22c23c24c25c26c27c28c29c30c31c32c33c34c35c36c37c38c39c40c41c42c43c44c45c46c47c48c49c50c51c52c53c54c55c56c57c58c59c60c61c62c63c64c65c66
ALG_PSEUDO_RANDOM ≤2.1 yes yesyes yes yes yes ≤2.1 yes yesyes yes yes yes 3.0.5 - -no - - - - - --no - - - 3.0.5 - -no - - - - - --no - - - 3.0.5 - -no - - - - - --no - - - 3.0.5 - -no - - - - - --no - - - introduced in JC ver. c0 c1c2c3c4c5c6c7c8c9c10c11c12c13c14c15c16c17c18c19c20c21c22c23c24c25c26c27c28c29c30c31c32c33c34c35c36c37c38c39c40c41c42c43c44c45c46c47c48c49c50c51c52c53c54c55c56c57c58c59c60c61c62c63c64c65c2c3c4c5c6c7c8c9c10c11c12c13c14c15c16c17c18c19c20c21c22c23c24c25c26c27c28c29c30c31c32c33c34c35c36c37c38c39c40c41c42c43c44c45c46c47c48c49c50c51c52c53c54c55c56c57c58c59c60c61c62c63c64c65c66
TYPE_DES_TRANSIENT_RESET ≤2.1 yes yesyes yes yes yes ≤2.1 yes yesyes yes yes yes ≤2.1 yes yesyes yes yes yes ≤2.1 yes yesyes yes yes yes ≤2.1 yes yesyes no yes yes 2.2.0 yes yesyes no suspicious yes yes 2.2.0 yes yesyes no suspicious yes yes 2.2.0 yes yesyes no suspicious yes yes 2.2.0 yes yesyes no no yes 2.2.0 yes yesyes no no yes ≤2.1 yes yesyes yes yes yes 2.2.0 yes yesyes no suspicious yes no 2.2.0 yes yesyes suspicious yes suspicious yes yes 2.2.0 yes yesyes no suspicious yes yes ≤2.1 yes yesyes yes yes yes 2.2.0 yes yesyes no no yes 2.2.0 yes yesyes no no yes 2.2.0 yes yesyes no no yes ≤2.1 yes yesyes no no yes 3.0.1 no nono no no no ≤2.1 yes yesyes yes yes yes 2.2.0 yes yesyes no suspicious yes no 2.2.0 yes yesyes suspicious yes suspicious yes yes 2.2.0 yes yesyes no suspicious yes yes ≤2.1 yes yesyes yes yes yes 2.2.0 yes yesyes no no yes 2.2.0 yes yesyes no no yes 2.2.0 yes yesyes no no yes ≤2.1 yes yesyes no no yes 3.0.1 no nono no no no 3.0.1 yes nono - - yes 3.0.1 yes nono - - yes ≤2.1 yes yesyes yes yes yes 2.2.0 yes yesyes no suspicious yes no 2.2.0 yes yesyes suspicious yes suspicious yes yes 2.2.0 yes yesyes no suspicious yes yes ≤2.1 yes yesyes yes yes yes 2.2.0 yes yesyes no suspicious yes yes 2.2.0 yes yesyes no suspicious yes yes 2.2.0 yes yesyes no no yes ≤2.1 yes yesyes no no yes 3.0.1 no nono no no no 3.0.1 yes nono - - yes 3.0.1 yes nono - - yes ≤2.1 no nono no no no ≤2.1 no nono no no no ≤2.1 no nono no no no 3.0.1 no nono - - no 3.0.1 no nono - - no ≤2.1 no nono no no no ≤2.1 no nono no no no ≤2.1 no nono no no no 2.2.0 no nono no no no 2.2.0 no nono no no no 2.2.0 no nono no no no 2.2.0 no nono no no no 3.0.1 no nono - - no 3.0.1 no nono - - no 2.2.0 yes nono no no no 2.2.0 yes nono no no no 2.2.0 yes noyes no no no 2.2.0 yes noyes no no no 3.0.1 yes nosuspicious yes - - no 3.0.1 yes nosuspicious yes - - no 3.0.1 yes nosuspicious yes - - no 3.0.4 no nosuspicious yes - - no 3.0.1 no nono - - no 3.0.1 no nono - - no 2.2.2 yes yesyes no no yes 2.2.2 yes yesyes no no yes 2.2.2 yes yesyes no no yes 2.2.2 no nono no no no 2.2.2 no nono no no no 2.2.2 no nono no no no 2.2.2 no nono no no no 2.2.2 no nono no no no 2.2.2 no nono no no no introduced in JC ver. c0 c1c2c3c4c5c6c7c8c9c10c11c12c13c14c15c16c17c18c19c20c21c22c23c24c25c26c27c28c29c30c31c32c33c34c35c36c37c38c39c40c41c42c43c44c45c46c47c48c49c50c51c52c53c54c55c56c57c58c59c60c61c62c63c64c65c2c3c4c5c6c7c8c9c10c11c12c13c14c15c16c17c18c19c20c21c22c23c24c25c26c27c28c29c30c31c32c33c34c35c36c37c38c39c40c41c42c43c44c45c46c47c48c49c50c51c52c53c54c55c56c57c58c59c60c61c62c63c64c65c66
ALG_RSA LENGTH_RSA_512 2.1.1 yes yesyes ? yes yes 2.2.0 yes yesyes no suspicious yes no 2.1.1 yes yesyes ? yes yes 2.2.0 yes yesyes no suspicious yes yes 2.1.1 yes yesyes ? yes yes 2.2.0 yes yesyes no suspicious yes yes 2.2.0 yes yesyes no no yes 2.2.0 yes yesyes no no yes 2.1.1 yes yesyes no no yes 3.0.1 no nono no no no introduced in JC ver. c0 c1c2c3c4c5c6c7c8c9c10c11c12c13c14c15c16c17c18c19c20c21c22c23c24c25c26c27c28c29c30c31c32c33c34c35c36c37c38c39c40c41c42c43c44c45c46c47c48c49c50c51c52c53c54c55c56c57c58c59c60c61c62c63c64c65c2c3c4c5c6c7c8c9c10c11c12c13c14c15c16c17c18c19c20c21c22c23c24c25c26c27c28c29c30c31c32c33c34c35c36c37c38c39c40c41c42c43c44c45c46c47c48c49c50c51c52c53c54c55c56c57c58c59c60c61c62c63c64c65c66
ALG_RSA_CRT LENGTH_RSA_512 2.1.1 yes yesyes ? yes yes 2.2.0 yes yesyes no error no 2.1.1 yes yesyes ? yes yes 2.2.0 yes yesyes no error yes 2.1.1 yes yesyes ? yes yes 2.2.0 yes yesyes no no yes 2.2.0 yes yesyes no no yes 2.2.0 yes yesyes no no yes 2.1.1 yes yesyes no no yes 3.0.1 no nono no no no introduced in JC ver. c0 c1c2c3c4c5c6c7c8c9c10c11c12c13c14c15c16c17c18c19c20c21c22c23c24c25c26c27c28c29c30c31c32c33c34c35c36c37c38c39c40c41c42c43c44c45c46c47c48c49c50c51c52c53c54c55c56c57c58c59c60c61c62c63c64c65c2c3c4c5c6c7c8c9c10c11c12c13c14c15c16c17c18c19c20c21c22c23c24c25c26c27c28c29c30c31c32c33c34c35c36c37c38c39c40c41c42c43c44c45c46c47c48c49c50c51c52c53c54c55c56c57c58c59c60c61c62c63c64c65c66
ALG_DSA LENGTH_DSA_512 2.1.1 no nono no no no 2.1.1 no nono no no no 2.1.1 no nono no no no introduced in JC ver. c0 c1c2c3c4c5c6c7c8c9c10c11c12c13c14c15c16c17c18c19c20c21c22c23c24c25c26c27c28c29c30c31c32c33c34c35c36c37c38c39c40c41c42c43c44c45c46c47c48c49c50c51c52c53c54c55c56c57c58c59c60c61c62c63c64c65c2c3c4c5c6c7c8c9c10c11c12c13c14c15c16c17c18c19c20c21c22c23c24c25c26c27c28c29c30c31c32c33c34c35c36c37c38c39c40c41c42c43c44c45c46c47c48c49c50c51c52c53c54c55c56c57c58c59c60c61c62c63c64c65c66
ALG_EC_F2M LENGTH_EC_F2M_113 2.2.1 no nono no no no 2.2.1 no nono no no no 2.2.1 no nono no no no 2.2.1 no nono no no no introduced in JC ver. c0 c1c2c3c4c5c6c7c8c9c10c11c12c13c14c15c16c17c18c19c20c21c22c23c24c25c26c27c28c29c30c31c32c33c34c35c36c37c38c39c40c41c42c43c44c45c46c47c48c49c50c51c52c53c54c55c56c57c58c59c60c61c62c63c64c65c2c3c4c5c6c7c8c9c10c11c12c13c14c15c16c17c18c19c20c21c22c23c24c25c26c27c28c29c30c31c32c33c34c35c36c37c38c39c40c41c42c43c44c45c46c47c48c49c50c51c52c53c54c55c56c57c58c59c60c61c62c63c64c65c66
ALG_EC_FP LENGTH_EC_FP_112 2.2.1 yes nono no no no 2.2.1 yes nono no no no 2.2.1 yes noyes no no no 2.2.1 yes noyes no no no 3.0.1 yes nosuspicious yes - - no suspicious yes suspicious yes -error(ILLEGAL_VALUE)suspicious yes - yes yes 3.0.1 yes nosuspicious yes - - no suspicious yes suspicious yes -error(ILLEGAL_VALUE)suspicious yes - yes yes 3.0.1 yes nosuspicious yes - - no 3.0.4 no nosuspicious yes - - no introduced in JC ver. c0 c1c2c3c4c5c6c7c8c9c10c11c12c13c14c15c16c17c18c19c20c21c22c23c24c25c26c27c28c29c30c31c32c33c34c35c36c37c38c39c40c41c42c43c44c45c46c47c48c49c50c51c52c53c54c55c56c57c58c59c60c61c62c63c64c65c2c3c4c5c6c7c8c9c10c11c12c13c14c15c16c17c18c19c20c21c22c23c24c25c26c27c28c29c30c31c32c33c34c35c36c37c38c39c40c41c42c43c44c45c46c47c48c49c50c51c52c53c54c55c56c57c58c59c60c61c62c63c64c65c66
ALG_EC_SVDP_DH/ALG_EC_SVDP_DH_KDF 2.2.1 yes yesyes no no no 2.2.1 - noyes no no - 3.0.1 - nosuspicious yes - - - - - -nosuspicious yes - - - 3.0.1 - nosuspicious yes - - - - - -nosuspicious yes - - - 3.0.5 - -suspicious yes - - - - - --suspicious yes - - - 3.0.5 - -suspicious yes - - - - - --suspicious yes - - - 3.0.5 - -suspicious yes - - - - - --suspicious yes - - - introduced in JC ver. c0 c1c2c3c4c5c6c7c8c9c10c11c12c13c14c15c16c17c18c19c20c21c22c23c24c25c26c27c28c29c30c31c32c33c34c35c36c37c38c39c40c41c42c43c44c45c46c47c48c49c50c51c52c53c54c55c56c57c58c59c60c61c62c63c64c65c2c3c4c5c6c7c8c9c10c11c12c13c14c15c16c17c18c19c20c21c22c23c24c25c26c27c28c29c30c31c32c33c34c35c36c37c38c39c40c41c42c43c44c45c46c47c48c49c50c51c52c53c54c55c56c57c58c59c60c61c62c63c64c65c66
ALG_ISO3309_CRC16 2.2.1 yes noyes no no yes 2.2.1 yes noyes no no yes introduced in JC ver. c0 c1c2c3c4c5c6c7c8c9c10c11c12c13c14c15c16c17c18c19c20c21c22c23c24c25c26c27c28c29c30c31c32c33c34c35c36c37c38c39c40c41c42c43c44c45c46c47c48c49c50c51c52c53c54c55c56c57c58c59c60c61c62c63c64c65c2c3c4c5c6c7c8c9c10c11c12c13c14c15c16c17c18c19c20c21c22c23c24c25c26c27c28c29c30c31c32c33c34c35c36c37c38c39c40c41c42c43c44c45c46c47c48c49c50c51c52c53c54c55c56c57c58c59c60c61c62c63c64c65c66
Allocate RSA 1024 objects yes yesyes yes - yes yes yesyes no - yes yes yesyes no - no yes yesyes no - no no yesyes no - no
- - -
- -

-Variable RSA 1024 - support for the variable public exponent. If supported, Diffie-Hellman can be implemented via NOPAD RSA (see https://github.com/ASKGLab/DHApplet for example), user-defined fast modular exponentiation can be executed on the smart card accelerated by the cryptographic coprocessor. This is a very specific feature and you will probably not need it. -

-
-

-The results for almost all possible constants defined in JavaCard specification JC2.1 and later are transmitted to PC (JCAlgTestPC application) and saved into CSV file. -

- -

- -Please download packed binaries and source codes here: AlgTest GitHub repository (contains source codes, compiled versions, Java and C++ client) - -

- - - - -
-

If you like to run JCAlgTest by yourself...

-

-Usage:
-

    -
  1. Download prepared version or compile your own modification of AlgTest applet - Download and try compiled and converted applet *.cap from prepared AlgTest suite. If you are unable to upload the package to card or install it, then see Caveats, comment out unsupported classes and compile your own limited version of AlgTest applet (see Applet playground or compilation with NetBeans for step-by-step JavaCard compile & convert instructions).
  2. -
  3. Upload AlgTest package to your smart card and install it - Use uploader supplied by your card vendor (e.g., GPShell, GlobalPlatformPro tool, Gemplus RADIII, IBM JCOP or Cyberflex Access Toolkit). Package AID: 6D 79 70 61 63 6B 61 67 31, Applet AID: 6D 79 70 61 63 30 30 30 31. No special installation parameters are given/required.
  4. -
  5. Run application AlgTestJClient.jar - Choose the target reader for card with uploaded AlgTest applet and let it run. CSV file with values separated by the semicolon is created (AlgTest_ATR.csv).
  6. -
-

-
-

- Examined classes:
-

-

-
- -

Example of code for ALG_DES_CBC_NOPAD algorithm:

-

-
-try {
-  m_cipher = Cipher.getInstance(ALG_DES_CBC_NOPAD, false);
-  // If this line is reached, than DES in CBC mode with no padding (ALG_DES_CBC_NOPAD) is supported.
-  supported = true;
-}
-catch (CryptoException e) {
-  if (e.getReason() == CryptoException.NO_SUCH_ALGORITHM) {
-	// algorithm is not supported
-	supported = false;
-  }
-  else {
-	// other error occured
-  }
-}
-
-

- -
- -

- Caveats:
-

-

- - - - - - - - - - + \ No newline at end of file diff --git a/Profiles/performance/fixed/Athena_IDProtect____PERFORMANCE_SYMMETRIC_ASYMMETRIC_DATAFIXED_3b_d5_18_ff_81_91_fe_1f_c3_80_73_c8_21_13_09_(provided_by_PetrS).csv b/Profiles/performance/fixed/Athena_IDProtect____PERFORMANCE_SYMMETRIC_ASYMMETRIC_DATAFIXED_3b_d5_18_ff_81_91_fe_1f_c3_80_73_c8_21_13_09_(provided_by_PetrS).csv new file mode 100644 index 00000000..7b50d93b --- /dev/null +++ b/Profiles/performance/fixed/Athena_IDProtect____PERFORMANCE_SYMMETRIC_ASYMMETRIC_DATAFIXED_3b_d5_18_ff_81_91_fe_1f_c3_80_73_c8_21_13_09_(provided_by_PetrS).csv @@ -0,0 +1,10100 @@ +INFO: This file was generated by AlgTest utility. See http://www.fi.muni.cz/~xsvenda/jcsupport.html for more results, source codes and other details.; +Tested and provided by; insert your name please.; +Execution date/time; 2018/04/20 15:40:35 +AlgTestJClient version; 1.7.3 +AlgTest applet version; 1.7.3 +Used reader; PC/SC terminal Generic EMV Smartcard Reader 0 +Card ATR; 3b d5 18 ff 81 91 fe 1f c3 80 73 c8 21 13 09 +Card name; Athena IDProtect +Used protocol; T=1 + +JCSystem.getVersion()[Major.Minor];2.2; +JCSystem.isObjectDeletionSupported;yes; +JCSystem.MEMORY_TYPE_PERSISTENT;>32767B; +JCSystem.MEMORY_TYPE_TRANSIENT_RESET;4157B; +JCSystem.MEMORY_TYPE_TRANSIENT_DESELECT;32767B; +JCSystem.MEMORY_TYPE_TRANSIENT_DESELECT;32767B; + +CPLC; 9f 7f 2a 41 80 01 0b 82 11 03 52 00 05 38 31 00 06 37 2b 48 4a 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +CPLC.ICFabricator;4180;Atmel +CPLC.ICType;010b +CPLC.OperatingSystemID;8211 +CPLC.OperatingSystemReleaseDate;0352 +CPLC.OperatingSystemReleaseLevel;0005 +CPLC.ICFabricationDate;3831;(Y DDD) date in that year +CPLC.ICSerialNumber;0006372b +CPLC.ICBatchIdentifier;484a +CPLC.ICModuleFabricator;0000 +CPLC.ICModulePackagingDate;0000 +CPLC.ICCManufacturer;0000 +CPLC.ICEmbeddingDate;0000 +CPLC.ICPrePersonalizer;0000 +CPLC.ICPrePersonalizationEquipmentDate;0000 +CPLC.ICPrePersonalizationEquipmentID;00000000 +CPLC.ICPersonalizer;0000 +CPLC.ICPersonalizationDate;0000 +CPLC.ICPersonalizationEquipmentID;00000000 +CPLC.ICPersonalizationEquipmentID;00000000 + + +MESSAGE DIGEST + +method name:; ALG_SHA MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 01 ff ff ff ff ff ff 00 06 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;79.00;78.00;78.00;79.00;78.00; +baseline stats (ms):;avg:;78.40;min:;78.00;max:;79.00; +operation raw measurements (ms):;290.60;291.60;283.60;284.60;287.60; +operation stats (ms/op):;avg op:;5.75;min op:;5.67;max op:;5.83; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_SHA MessageDigest_update() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 01 ff ff ff ff ff ff 00 02 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;70.00;71.00;69.00;70.00;71.00; +baseline stats (ms):;avg:;70.20;min:;69.00;max:;71.00; +operation raw measurements (ms):;253.05;252.05;253.05;253.05;255.05; +operation stats (ms/op):;avg op:;5.06;min op:;5.04;max op:;5.10; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_SHA MessageDigest_reset() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 01 ff ff ff ff ff ff 00 04 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;71.00;69.00;71.00;70.00;70.00; +baseline stats (ms):;avg:;70.20;min:;69.00;max:;71.00; +operation raw measurements (ms):;309.05;306.05;308.05;308.05;309.05; +operation stats (ms/op):;avg op:;6.16;min op:;6.12;max op:;6.18; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_MD5 MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 02 ff ff ff ff ff ff 00 06 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_MD5 MessageDigest_update() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 02 ff ff ff ff ff ff 00 02 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_MD5 MessageDigest_reset() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 02 ff ff ff ff ff ff 00 04 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RIPEMD160 MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 03 ff ff ff ff ff ff 00 06 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RIPEMD160 MessageDigest_update() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 03 ff ff ff ff ff ff 00 02 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RIPEMD160 MessageDigest_reset() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 03 ff ff ff ff ff ff 00 04 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_SHA_256 MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 04 ff ff ff ff ff ff 00 06 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;69.00;69.00;69.00;70.00;70.00; +baseline stats (ms):;avg:;69.40;min:;69.00;max:;70.00; +operation raw measurements (ms):;590.60;590.60;591.60;592.60;591.60; +operation stats (ms/op):;avg op:;11.83;min op:;11.81;max op:;11.85; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_SHA_256 MessageDigest_update() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 04 ff ff ff ff ff ff 00 02 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;70.00;69.00;70.00;69.00;70.00; +baseline stats (ms):;avg:;69.60;min:;69.00;max:;70.00; +operation raw measurements (ms):;484.57;484.57;485.57;484.57;483.57; +operation stats (ms/op):;avg op:;9.69;min op:;9.67;max op:;9.71; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_SHA_256 MessageDigest_reset() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 04 ff ff ff ff ff ff 00 04 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;70.00;71.00;70.00;69.00;70.00; +baseline stats (ms):;avg:;70.25;min:;69.00;max:;71.00; +operation raw measurements (ms):;597.92;596.92;595.92;611.92;597.92; +operation stats (ms/op):;avg op:;12.00;min op:;11.92;max op:;12.24; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_SHA_384 MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 05 ff ff ff ff ff ff 00 06 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;75.00;76.00;72.00;66.00;80.00; +baseline stats (ms):;avg:;75.75;min:;66.00;max:;80.00;;;CHECK +operation raw measurements (ms):;282.25;283.25;283.25;282.25;283.25; +operation stats (ms/op):;avg op:;5.66;min op:;5.65;max op:;5.67; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_SHA_384 MessageDigest_update() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 05 ff ff ff ff ff ff 00 02 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;67.00;65.00;66.00;66.00;67.00; +baseline stats (ms):;avg:;66.20;min:;65.00;max:;67.00; +operation raw measurements (ms):;217.14;218.14;217.14;218.14;218.14; +operation stats (ms/op):;avg op:;4.35;min op:;4.34;max op:;4.36; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_SHA_384 MessageDigest_reset() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 05 ff ff ff ff ff ff 00 04 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;66.00;66.00;67.00;68.00;67.00; +baseline stats (ms):;avg:;66.80;min:;66.00;max:;68.00; +operation raw measurements (ms):;305.54;305.54;305.54;305.54;307.54; +operation stats (ms/op):;avg op:;6.12;min op:;6.11;max op:;6.15; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_SHA_512 MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 06 ff ff ff ff ff ff 00 06 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;67.00;65.00;67.00;67.00;66.00; +baseline stats (ms):;avg:;66.75;min:;65.00;max:;67.00; +operation raw measurements (ms):;294.25;291.25;291.25;295.25;291.25; +operation stats (ms/op):;avg op:;5.85;min op:;5.83;max op:;5.91; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_SHA_512 MessageDigest_update() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 06 ff ff ff ff ff ff 00 02 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;66.00;67.00;67.00;68.00;66.00; +baseline stats (ms):;avg:;66.80;min:;66.00;max:;68.00; +operation raw measurements (ms):;217.35;217.35;217.35;219.35;235.35; +operation stats (ms/op):;avg op:;4.43;min op:;4.35;max op:;4.71;;CHECK +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_SHA_512 MessageDigest_reset() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 06 ff ff ff ff ff ff 00 04 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;68.00;76.00;67.00;66.00;67.00; +baseline stats (ms):;avg:;68.80;min:;66.00;max:;76.00;;;CHECK +operation raw measurements (ms):;302.35;302.35;303.35;301.35;305.35; +operation stats (ms/op):;avg op:;6.06;min op:;6.03;max op:;6.11; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_SHA_224 MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 07 ff ff ff ff ff ff 00 06 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;69.00;67.00;68.00;65.00;66.00; +baseline stats (ms):;avg:;67.00;min:;65.00;max:;69.00; +operation raw measurements (ms):;590.00;594.00;594.00;594.00;595.00; +operation stats (ms/op):;avg op:;11.87;min op:;11.80;max op:;11.90; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_SHA_224 MessageDigest_update() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 07 ff ff ff ff ff ff 00 02 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;69.00;67.00;68.00;68.00;70.00; +baseline stats (ms):;avg:;68.40;min:;67.00;max:;70.00; +operation raw measurements (ms):;485.73;485.73;481.73;484.73;484.73; +operation stats (ms/op):;avg op:;9.69;min op:;9.63;max op:;9.71; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_SHA_224 MessageDigest_reset() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 07 ff ff ff ff ff ff 00 04 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;69.00;69.00;69.00;68.00;70.00; +baseline stats (ms):;avg:;69.25;min:;68.00;max:;70.00; +operation raw measurements (ms):;595.88;597.88;598.88;597.88;597.88; +operation stats (ms/op):;avg op:;11.95;min op:;11.92;max op:;11.98; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_SHA3_224 MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 08 ff ff ff ff ff ff 00 06 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_SHA3_224 MessageDigest_update() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 08 ff ff ff ff ff ff 00 02 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_SHA3_224 MessageDigest_reset() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 08 ff ff ff ff ff ff 00 04 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_SHA3_256 MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 09 ff ff ff ff ff ff 00 06 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_SHA3_256 MessageDigest_update() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 09 ff ff ff ff ff ff 00 02 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_SHA3_256 MessageDigest_reset() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 09 ff ff ff ff ff ff 00 04 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_SHA3_384 MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 0a ff ff ff ff ff ff 00 06 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_SHA3_384 MessageDigest_update() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 0a ff ff ff ff ff ff 00 02 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_SHA3_384 MessageDigest_reset() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 0a ff ff ff ff ff ff 00 04 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_SHA3_512 MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 0b ff ff ff ff ff ff 00 06 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_SHA3_512 MessageDigest_update() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 0b ff ff ff ff ff ff 00 02 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_SHA3_512 MessageDigest_reset() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 0b ff ff ff ff ff ff 00 04 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + + +MESSAGE DIGEST - END + + +RANDOM GENERATOR + +method name:; ALG_PSEUDO_RANDOM RandomData_generateData() +measurement config:;appletPrepareINS;33;appletMeasureINS;42;config;00 16 00 01 ff ff ff ff ff ff 00 03 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;70.00;69.00;69.00;69.00;69.00; +baseline stats (ms):;avg:;69.20;min:;69.00;max:;70.00; +operation raw measurements (ms):;31.80;30.80;30.80;31.80;31.80; +operation stats (ms/op):;avg op:;0.63;min op:;0.62;max op:;0.64; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_PSEUDO_RANDOM RandomData_setSeed() +measurement config:;appletPrepareINS;33;appletMeasureINS;42;config;00 16 00 01 ff ff ff ff ff ff 00 02 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;69.00;69.00;69.00;70.00;70.00; +baseline stats (ms):;avg:;69.40;min:;69.00;max:;70.00; +operation raw measurements (ms):;11.60;12.60;11.60;12.60;12.60; +operation stats (ms/op):;avg op:;0.24;min op:;0.23;max op:;0.25; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_SECURE_RANDOM RandomData_generateData() +measurement config:;appletPrepareINS;33;appletMeasureINS;42;config;00 16 00 02 ff ff ff ff ff ff 00 03 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;66.00;67.00;69.00;70.00;68.00; +baseline stats (ms):;avg:;68.00;min:;66.00;max:;70.00; +operation raw measurements (ms):;1150.00;1151.00;1151.00;1150.00;1150.00; +operation stats (ms/op):;avg op:;23.01;min op:;23.00;max op:;23.02; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_SECURE_RANDOM RandomData_setSeed() +measurement config:;appletPrepareINS;33;appletMeasureINS;42;config;00 16 00 02 ff ff ff ff ff ff 00 02 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;69.00;69.00;70.00;70.00;69.00; +baseline stats (ms):;avg:;69.40;min:;69.00;max:;70.00; +operation raw measurements (ms):;8.60;9.60;12.60;13.60;11.60; +operation stats (ms/op):;avg op:;0.22;min op:;0.17;max op:;0.27;;CHECK +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_TRNG RandomData_generateData() +measurement config:;appletPrepareINS;33;appletMeasureINS;42;config;00 16 00 03 ff ff ff ff ff ff 00 03 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_TRNG RandomData_setSeed() +measurement config:;appletPrepareINS;33;appletMeasureINS;42;config;00 16 00 03 ff ff ff ff ff ff 00 02 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_ALG_PRESEEDED_DRBG RandomData_generateData() +measurement config:;appletPrepareINS;33;appletMeasureINS;42;config;00 16 00 04 ff ff ff ff ff ff 00 03 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_ALG_PRESEEDED_DRBG RandomData_setSeed() +measurement config:;appletPrepareINS;33;appletMeasureINS;42;config;00 16 00 04 ff ff ff ff ff ff 00 02 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_FAST RandomData_generateData() +measurement config:;appletPrepareINS;33;appletMeasureINS;42;config;00 16 00 05 ff ff ff ff ff ff 00 03 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_FAST RandomData_setSeed() +measurement config:;appletPrepareINS;33;appletMeasureINS;42;config;00 16 00 05 ff ff ff ff ff ff 00 02 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_KEYGENERATION RandomData_generateData() +measurement config:;appletPrepareINS;33;appletMeasureINS;42;config;00 16 00 06 ff ff ff ff ff ff 00 03 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_KEYGENERATION RandomData_setSeed() +measurement config:;appletPrepareINS;33;appletMeasureINS;42;config;00 16 00 06 ff ff ff ff ff ff 00 02 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + + +RANDOM GENERATOR - END + + +CIPHER + +method name:; TYPE_DES LENGTH_DES ALG_DES_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 01 ff ff 00 03 00 40 00 07 01 00 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;88.00;87.00;88.00;87.00;88.00; +baseline stats (ms):;avg:;87.60;min:;87.00;max:;88.00; +operation raw measurements (ms):;1337.40;1339.40;1339.40;1339.40;1338.40; +operation stats (ms/op):;avg op:;26.78;min op:;26.75;max op:;26.79; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES ALG_DES_CBC_NOPAD Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 01 ff ff 00 03 00 40 00 04 01 00 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;86.00;85.00;84.00;86.00;87.00; +baseline stats (ms):;avg:;85.60;min:;84.00;max:;87.00; +operation raw measurements (ms):;332.40;329.40;328.40;326.40;328.40; +operation stats (ms/op):;avg op:;6.58;min op:;6.53;max op:;6.65; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES ALG_DES_CBC_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 02 ff ff 00 03 00 40 00 07 01 00 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;87.00;87.00;87.00;88.00;88.00; +baseline stats (ms):;avg:;87.40;min:;87.00;max:;88.00; +operation raw measurements (ms):;1337.60;1336.60;1338.60;1340.60;1339.60; +operation stats (ms/op):;avg op:;26.77;min op:;26.73;max op:;26.81; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES ALG_DES_CBC_ISO9797_M1 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 02 ff ff 00 03 00 40 00 04 01 00 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;88.00;87.00;89.00;86.00;87.00; +baseline stats (ms):;avg:;87.40;min:;86.00;max:;89.00; +operation raw measurements (ms):;318.60;328.60;324.60;324.60;327.60; +operation stats (ms/op):;avg op:;6.50;min op:;6.37;max op:;6.57; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES ALG_DES_CBC_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 03 ff ff 00 03 00 40 00 07 01 00 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;87.00;89.00;87.00;87.00;88.00; +baseline stats (ms):;avg:;87.60;min:;87.00;max:;89.00; +operation raw measurements (ms):;1379.40;1380.40;1380.40;1378.40;1380.40; +operation stats (ms/op):;avg op:;27.60;min op:;27.57;max op:;27.61; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES ALG_DES_CBC_ISO9797_M2 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 03 ff ff 00 03 00 40 00 04 01 00 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;88.00;87.00;86.00;85.00;84.00; +baseline stats (ms):;avg:;86.00;min:;84.00;max:;88.00; +operation raw measurements (ms):;323.00;330.00;330.00;328.00;329.00; +operation stats (ms/op):;avg op:;6.56;min op:;6.46;max op:;6.60; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES ALG_DES_CBC_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 04 ff ff 00 03 00 40 00 07 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_CBC_PKCS5 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 04 ff ff 00 03 00 40 00 04 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 05 ff ff 00 03 00 40 00 07 01 00 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;87.00;86.00;89.00;87.00;87.00; +baseline stats (ms):;avg:;87.20;min:;86.00;max:;89.00; +operation raw measurements (ms):;1301.80;1302.80;1303.80;1302.80;1305.80; +operation stats (ms/op):;avg op:;26.07;min op:;26.04;max op:;26.12; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES ALG_DES_ECB_NOPAD Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 05 ff ff 00 03 00 40 00 04 01 00 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;87.00;85.00;88.00;88.00;84.00; +baseline stats (ms):;avg:;86.40;min:;84.00;max:;88.00; +operation raw measurements (ms):;320.60;328.60;327.60;326.60;326.60; +operation stats (ms/op):;avg op:;6.52;min op:;6.41;max op:;6.57; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES ALG_DES_ECB_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 06 ff ff 00 03 00 40 00 07 01 00 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;84.00;85.00;84.00;84.00;86.00; +baseline stats (ms):;avg:;84.60;min:;84.00;max:;86.00; +operation raw measurements (ms):;1302.40;1302.40;1306.40;1307.40;1304.40; +operation stats (ms/op):;avg op:;26.09;min op:;26.05;max op:;26.15; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES ALG_DES_ECB_ISO9797_M1 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 06 ff ff 00 03 00 40 00 04 01 00 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;86.00;88.00;86.00;88.00;87.00; +baseline stats (ms):;avg:;87.00;min:;86.00;max:;88.00; +operation raw measurements (ms):;317.00;326.00;324.00;327.00;326.00; +operation stats (ms/op):;avg op:;6.48;min op:;6.34;max op:;6.54; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES ALG_DES_ECB_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 07 ff ff 00 03 00 40 00 07 01 00 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;85.00;87.00;84.00;87.00;87.00; +baseline stats (ms):;avg:;86.50;min:;84.00;max:;87.00; +operation raw measurements (ms):;1339.50;1342.50;1343.50;1343.50;1343.50; +operation stats (ms/op):;avg op:;26.85;min op:;26.79;max op:;26.87; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES ALG_DES_ECB_ISO9797_M2 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 07 ff ff 00 03 00 40 00 04 01 00 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;86.00;88.00;87.00;88.00;88.00; +baseline stats (ms):;avg:;87.75;min:;86.00;max:;88.00; +operation raw measurements (ms):;318.25;327.25;325.25;326.25;327.25; +operation stats (ms/op):;avg op:;6.50;min op:;6.37;max op:;6.55; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES ALG_DES_ECB_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 08 ff ff 00 03 00 40 00 07 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_ECB_PKCS5 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 08 ff ff 00 03 00 40 00 04 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 01 ff ff 00 03 00 80 00 07 01 00 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;87.00;87.00;87.00;87.00;87.00; +baseline stats (ms):;avg:;87.00;min:;87.00;max:;87.00; +operation raw measurements (ms):;1371.00;1371.00;1371.00;1369.00;1371.00; +operation stats (ms/op):;avg op:;27.41;min op:;27.38;max op:;27.42; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_CBC_NOPAD Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 01 ff ff 00 03 00 80 00 04 01 00 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;87.00;87.00;85.00;86.00;88.00; +baseline stats (ms):;avg:;86.60;min:;85.00;max:;88.00; +operation raw measurements (ms):;318.40;326.40;325.40;327.40;328.40; +operation stats (ms/op):;avg op:;6.50;min op:;6.37;max op:;6.57; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_CBC_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 02 ff ff 00 03 00 80 00 07 01 00 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;87.00;87.00;87.00;87.00;85.00; +baseline stats (ms):;avg:;87.00;min:;85.00;max:;87.00; +operation raw measurements (ms):;1370.00;1373.00;1371.00;1373.00;1371.00; +operation stats (ms/op):;avg op:;27.43;min op:;27.40;max op:;27.46; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_CBC_ISO9797_M1 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 02 ff ff 00 03 00 80 00 04 01 00 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;88.00;87.00;88.00;87.00;86.00; +baseline stats (ms):;avg:;87.20;min:;86.00;max:;88.00; +operation raw measurements (ms):;317.80;327.80;326.80;326.80;326.80; +operation stats (ms/op):;avg op:;6.50;min op:;6.36;max op:;6.56; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_CBC_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 03 ff ff 00 03 00 80 00 07 01 00 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;87.00;87.00;88.00;88.00;87.00; +baseline stats (ms):;avg:;87.40;min:;87.00;max:;88.00; +operation raw measurements (ms):;1410.60;1412.60;1410.60;1412.60;1412.60; +operation stats (ms/op):;avg op:;28.24;min op:;28.21;max op:;28.25; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_CBC_ISO9797_M2 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 03 ff ff 00 03 00 80 00 04 01 00 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;87.00;87.00;88.00;88.00;87.00; +baseline stats (ms):;avg:;87.40;min:;87.00;max:;88.00; +operation raw measurements (ms):;319.60;327.60;327.60;327.60;327.60; +operation stats (ms/op):;avg op:;6.52;min op:;6.39;max op:;6.55; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_CBC_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 04 ff ff 00 03 00 80 00 07 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_CBC_PKCS5 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 04 ff ff 00 03 00 80 00 04 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 05 ff ff 00 03 00 80 00 07 01 00 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;86.00;87.00;87.00;89.00;86.00; +baseline stats (ms):;avg:;87.00;min:;86.00;max:;89.00; +operation raw measurements (ms):;1333.00;1334.00;1332.00;1334.00;1335.00; +operation stats (ms/op):;avg op:;26.67;min op:;26.64;max op:;26.70; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_ECB_NOPAD Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 05 ff ff 00 03 00 80 00 04 01 00 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;88.00;84.00;84.00;86.00;87.00; +baseline stats (ms):;avg:;85.80;min:;84.00;max:;88.00; +operation raw measurements (ms):;318.20;330.20;327.20;325.20;328.20; +operation stats (ms/op):;avg op:;6.52;min op:;6.36;max op:;6.60; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_ECB_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 06 ff ff 00 03 00 80 00 07 01 00 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;88.00;86.00;85.00;87.00;88.00; +baseline stats (ms):;avg:;86.80;min:;85.00;max:;88.00; +operation raw measurements (ms):;1334.20;1334.20;1333.20;1334.20;1337.20; +operation stats (ms/op):;avg op:;26.69;min op:;26.66;max op:;26.74; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_ECB_ISO9797_M1 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 06 ff ff 00 03 00 80 00 04 01 00 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;87.00;88.00;88.00;88.00;88.00; +baseline stats (ms):;avg:;88.00;min:;87.00;max:;88.00; +operation raw measurements (ms):;318.00;325.00;324.00;327.00;328.00; +operation stats (ms/op):;avg op:;6.49;min op:;6.36;max op:;6.56; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_ECB_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 07 ff ff 00 03 00 80 00 07 01 00 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;85.00;83.00;87.00;87.00;88.00; +baseline stats (ms):;avg:;86.75;min:;83.00;max:;88.00; +operation raw measurements (ms):;1373.25;1373.25;1375.25;1377.25;1375.25; +operation stats (ms/op):;avg op:;27.50;min op:;27.47;max op:;27.55; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_ECB_ISO9797_M2 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 07 ff ff 00 03 00 80 00 04 01 00 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;88.00;87.00;88.00;88.00;87.00; +baseline stats (ms):;avg:;87.60;min:;87.00;max:;88.00; +operation raw measurements (ms):;319.40;324.40;327.40;327.40;326.40; +operation stats (ms/op):;avg op:;6.50;min op:;6.39;max op:;6.55; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_ECB_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 08 ff ff 00 03 00 80 00 07 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_ECB_PKCS5 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 08 ff ff 00 03 00 80 00 04 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 01 ff ff 00 03 00 c0 00 07 01 00 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;86.00;87.00;87.00;84.00;85.00; +baseline stats (ms):;avg:;85.80;min:;84.00;max:;87.00; +operation raw measurements (ms):;3608.20;3611.20;3612.20;3608.20;3611.20; +operation stats (ms/op):;avg op:;72.20;min op:;72.16;max op:;72.24; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_CBC_NOPAD Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 01 ff ff 00 03 00 c0 00 04 01 00 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;88.00;85.00;84.00;83.00;84.00; +baseline stats (ms):;avg:;84.80;min:;83.00;max:;88.00; +operation raw measurements (ms):;322.20;331.20;330.20;329.20;329.20; +operation stats (ms/op):;avg op:;6.57;min op:;6.44;max op:;6.62; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_CBC_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 02 ff ff 00 03 00 c0 00 07 01 00 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;87.00;87.00;86.00;87.00;87.00; +baseline stats (ms):;avg:;87.00;min:;86.00;max:;87.00; +operation raw measurements (ms):;3604.00;3607.00;3608.00;3610.00;3608.00; +operation stats (ms/op):;avg op:;72.15;min op:;72.08;max op:;72.20; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_CBC_ISO9797_M1 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 02 ff ff 00 03 00 c0 00 04 01 00 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;86.00;84.00;84.00;84.00;86.00; +baseline stats (ms):;avg:;84.80;min:;84.00;max:;86.00; +operation raw measurements (ms):;323.20;325.20;327.20;326.20;327.20; +operation stats (ms/op):;avg op:;6.52;min op:;6.46;max op:;6.54; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_CBC_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 03 ff ff 00 03 00 c0 00 07 01 00 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;84.00;83.00;84.00;84.00;84.00; +baseline stats (ms):;avg:;84.00;min:;83.00;max:;84.00; +operation raw measurements (ms):;3720.00;3724.00;3723.00;3722.00;3722.00; +operation stats (ms/op):;avg op:;74.44;min op:;74.40;max op:;74.48; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_CBC_ISO9797_M2 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 03 ff ff 00 03 00 c0 00 04 01 00 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;86.00;86.00;84.00;88.00;86.00; +baseline stats (ms):;avg:;86.50;min:;84.00;max:;88.00; +operation raw measurements (ms):;317.50;325.50;325.50;325.50;324.50; +operation stats (ms/op):;avg op:;6.47;min op:;6.35;max op:;6.51; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_CBC_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 04 ff ff 00 03 00 c0 00 07 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_CBC_PKCS5 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 04 ff ff 00 03 00 c0 00 04 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 05 ff ff 00 03 00 c0 00 07 01 00 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;85.00;90.00;85.00;86.00;87.00; +baseline stats (ms):;avg:;86.60;min:;85.00;max:;90.00; +operation raw measurements (ms):;3608.40;3574.40;3575.40;3574.40;3576.40; +operation stats (ms/op):;avg op:;71.64;min op:;71.49;max op:;72.17; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_ECB_NOPAD Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 05 ff ff 00 03 00 c0 00 04 01 00 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;88.00;88.00;88.00;88.00;87.00; +baseline stats (ms):;avg:;88.00;min:;87.00;max:;88.00; +operation raw measurements (ms):;318.00;330.00;327.00;328.00;328.00; +operation stats (ms/op):;avg op:;6.52;min op:;6.36;max op:;6.60; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_ECB_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 06 ff ff 00 03 00 c0 00 07 01 00 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;87.00;88.00;88.00;88.00;87.00; +baseline stats (ms):;avg:;87.60;min:;87.00;max:;88.00; +operation raw measurements (ms):;3569.40;3574.40;3573.40;3574.40;3575.40; +operation stats (ms/op):;avg op:;71.47;min op:;71.39;max op:;71.51; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_ECB_ISO9797_M1 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 06 ff ff 00 03 00 c0 00 04 01 00 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;87.00;88.00;87.00;87.00;88.00; +baseline stats (ms):;avg:;87.40;min:;87.00;max:;88.00; +operation raw measurements (ms):;319.60;327.60;327.60;328.60;325.60; +operation stats (ms/op):;avg op:;6.52;min op:;6.39;max op:;6.57; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_ECB_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 07 ff ff 00 03 00 c0 00 07 01 00 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;88.00;86.00;87.00;88.00;87.00; +baseline stats (ms):;avg:;87.20;min:;86.00;max:;88.00; +operation raw measurements (ms):;3680.80;3683.80;3684.80;3681.80;3681.80; +operation stats (ms/op):;avg op:;73.65;min op:;73.62;max op:;73.70; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_ECB_ISO9797_M2 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 07 ff ff 00 03 00 c0 00 04 01 00 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;87.00;88.00;87.00;88.00;88.00; +baseline stats (ms):;avg:;87.60;min:;87.00;max:;88.00; +operation raw measurements (ms):;318.40;327.40;327.40;326.40;327.40; +operation stats (ms/op):;avg op:;6.51;min op:;6.37;max op:;6.55; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_ECB_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 08 ff ff 00 03 00 c0 00 07 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_ECB_PKCS5 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 08 ff ff 00 03 00 c0 00 04 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_128_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0d ff ff 00 0f 00 80 00 07 01 00 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;87.00;88.00;87.00;88.00;88.00; +baseline stats (ms):;avg:;87.60;min:;87.00;max:;88.00; +operation raw measurements (ms):;494.40;495.40;494.40;495.40;494.40; +operation stats (ms/op):;avg op:;9.90;min op:;9.89;max op:;9.91; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_128_CBC_NOPAD Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0d ff ff 00 0f 00 80 00 04 01 00 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;87.00;87.00;88.00;88.00;86.00; +baseline stats (ms):;avg:;87.20;min:;86.00;max:;88.00; +operation raw measurements (ms):;319.80;326.80;326.80;327.80;327.80; +operation stats (ms/op):;avg op:;6.52;min op:;6.40;max op:;6.56; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_128_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0e ff ff 00 0f 00 80 00 07 01 00 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;361.00;88.00;87.00;88.00;87.00; +baseline stats (ms):;avg:;142.20;min:;87.00;max:;361.00;;;CHECK +operation raw measurements (ms):;411.80;408.80;407.80;408.80;407.80; +operation stats (ms/op):;avg op:;8.18;min op:;8.16;max op:;8.24; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_128_ECB_NOPAD Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0e ff ff 00 0f 00 80 00 04 01 00 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;87.00;87.00;88.00;88.00;87.00; +baseline stats (ms):;avg:;87.40;min:;87.00;max:;88.00; +operation raw measurements (ms):;318.60;326.60;326.60;326.60;326.60; +operation stats (ms/op):;avg op:;6.50;min op:;6.37;max op:;6.53; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_192_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 12 ff ff 00 0f 00 80 00 07 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_192_CBC_NOPAD Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 12 ff ff 00 0f 00 80 00 04 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_192_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 13 ff ff 00 0f 00 80 00 07 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_192_ECB_NOPAD Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 13 ff ff 00 0f 00 80 00 04 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_256_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 14 ff ff 00 0f 00 80 00 07 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_256_CBC_NOPAD Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 14 ff ff 00 0f 00 80 00 04 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_256_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 15 ff ff 00 0f 00 80 00 07 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_256_ECB_NOPAD Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 15 ff ff 00 0f 00 80 00 04 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_CBC_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 16 ff ff 00 0f 00 80 00 07 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_CBC_ISO9797_M1 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 16 ff ff 00 0f 00 80 00 04 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_CBC_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 17 ff ff 00 0f 00 80 00 07 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_CBC_ISO9797_M2 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 17 ff ff 00 0f 00 80 00 04 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_CBC_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 18 ff ff 00 0f 00 80 00 07 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_CBC_PKCS5 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 18 ff ff 00 0f 00 80 00 04 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_ECB_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 19 ff ff 00 0f 00 80 00 07 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_ECB_ISO9797_M1 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 19 ff ff 00 0f 00 80 00 04 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_ECB_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 1a ff ff 00 0f 00 80 00 07 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_ECB_ISO9797_M2 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 1a ff ff 00 0f 00 80 00 04 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_ECB_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 1b ff ff 00 0f 00 80 00 07 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_ECB_PKCS5 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 1b ff ff 00 0f 00 80 00 04 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_128_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0d ff ff 00 0f 00 c0 00 07 01 00 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;88.00;87.00;86.00;87.00;88.00; +baseline stats (ms):;avg:;87.20;min:;86.00;max:;88.00; +operation raw measurements (ms):;572.80;572.80;573.80;572.80;571.80; +operation stats (ms/op):;avg op:;11.46;min op:;11.44;max op:;11.48; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_128_CBC_NOPAD Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0d ff ff 00 0f 00 c0 00 04 01 00 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;87.00;88.00;88.00;86.00;88.00; +baseline stats (ms):;avg:;87.75;min:;86.00;max:;88.00; +operation raw measurements (ms):;318.25;328.25;327.25;327.25;327.25; +operation stats (ms/op):;avg op:;6.51;min op:;6.37;max op:;6.57; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_128_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0e ff ff 00 0f 00 c0 00 07 01 00 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;88.00;86.00;84.00;86.00;88.00; +baseline stats (ms):;avg:;86.40;min:;84.00;max:;88.00; +operation raw measurements (ms):;542.60;541.60;542.60;542.60;542.60; +operation stats (ms/op):;avg op:;10.85;min op:;10.83;max op:;10.85; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_128_ECB_NOPAD Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0e ff ff 00 0f 00 c0 00 04 01 00 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;87.00;88.00;87.00;87.00;88.00; +baseline stats (ms):;avg:;87.40;min:;87.00;max:;88.00; +operation raw measurements (ms):;318.60;348.60;329.60;329.60;329.60; +operation stats (ms/op):;avg op:;6.62;min op:;6.37;max op:;6.97;;CHECK +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_192_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 12 ff ff 00 0f 00 c0 00 07 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_192_CBC_NOPAD Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 12 ff ff 00 0f 00 c0 00 04 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_192_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 13 ff ff 00 0f 00 c0 00 07 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_192_ECB_NOPAD Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 13 ff ff 00 0f 00 c0 00 04 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_256_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 14 ff ff 00 0f 00 c0 00 07 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_256_CBC_NOPAD Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 14 ff ff 00 0f 00 c0 00 04 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_256_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 15 ff ff 00 0f 00 c0 00 07 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_256_ECB_NOPAD Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 15 ff ff 00 0f 00 c0 00 04 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_CBC_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 16 ff ff 00 0f 00 c0 00 07 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_CBC_ISO9797_M1 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 16 ff ff 00 0f 00 c0 00 04 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_CBC_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 17 ff ff 00 0f 00 c0 00 07 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_CBC_ISO9797_M2 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 17 ff ff 00 0f 00 c0 00 04 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_CBC_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 18 ff ff 00 0f 00 c0 00 07 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_CBC_PKCS5 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 18 ff ff 00 0f 00 c0 00 04 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_ECB_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 19 ff ff 00 0f 00 c0 00 07 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_ECB_ISO9797_M1 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 19 ff ff 00 0f 00 c0 00 04 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_ECB_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 1a ff ff 00 0f 00 c0 00 07 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_ECB_ISO9797_M2 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 1a ff ff 00 0f 00 c0 00 04 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_ECB_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 1b ff ff 00 0f 00 c0 00 07 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_ECB_PKCS5 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 1b ff ff 00 0f 00 c0 00 04 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_128_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0d ff ff 00 0f 01 00 00 07 01 00 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;87.00;87.00;87.00;87.00;88.00; +baseline stats (ms):;avg:;87.20;min:;87.00;max:;88.00; +operation raw measurements (ms):;639.80;640.80;639.80;639.80;639.80; +operation stats (ms/op):;avg op:;12.80;min op:;12.80;max op:;12.82; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_128_CBC_NOPAD Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0d ff ff 00 0f 01 00 00 04 01 00 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;86.00;87.00;88.00;87.00;87.00; +baseline stats (ms):;avg:;87.25;min:;86.00;max:;88.00; +operation raw measurements (ms):;317.75;327.75;326.75;326.75;328.75; +operation stats (ms/op):;avg op:;6.51;min op:;6.36;max op:;6.58; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_128_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0e ff ff 00 0f 01 00 00 07 01 00 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;87.00;87.00;87.00;88.00;88.00; +baseline stats (ms):;avg:;87.40;min:;87.00;max:;88.00; +operation raw measurements (ms):;607.60;607.60;608.60;608.60;608.60; +operation stats (ms/op):;avg op:;12.16;min op:;12.15;max op:;12.17; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_128_ECB_NOPAD Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0e ff ff 00 0f 01 00 00 04 01 00 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;87.00;87.00;87.00;87.00;88.00; +baseline stats (ms):;avg:;87.20;min:;87.00;max:;88.00; +operation raw measurements (ms):;316.80;326.80;327.80;327.80;326.80; +operation stats (ms/op):;avg op:;6.50;min op:;6.34;max op:;6.56; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_192_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 12 ff ff 00 0f 01 00 00 07 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_192_CBC_NOPAD Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 12 ff ff 00 0f 01 00 00 04 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_192_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 13 ff ff 00 0f 01 00 00 07 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_192_ECB_NOPAD Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 13 ff ff 00 0f 01 00 00 04 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_256_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 14 ff ff 00 0f 01 00 00 07 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_256_CBC_NOPAD Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 14 ff ff 00 0f 01 00 00 04 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_256_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 15 ff ff 00 0f 01 00 00 07 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_256_ECB_NOPAD Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 15 ff ff 00 0f 01 00 00 04 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_CBC_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 16 ff ff 00 0f 01 00 00 07 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_CBC_ISO9797_M1 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 16 ff ff 00 0f 01 00 00 04 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_CBC_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 17 ff ff 00 0f 01 00 00 07 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_CBC_ISO9797_M2 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 17 ff ff 00 0f 01 00 00 04 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_CBC_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 18 ff ff 00 0f 01 00 00 07 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_CBC_PKCS5 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 18 ff ff 00 0f 01 00 00 04 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_ECB_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 19 ff ff 00 0f 01 00 00 07 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_ECB_ISO9797_M1 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 19 ff ff 00 0f 01 00 00 04 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_ECB_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 1a ff ff 00 0f 01 00 00 07 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_ECB_ISO9797_M2 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 1a ff ff 00 0f 01 00 00 04 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_ECB_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 1b ff ff 00 0f 01 00 00 07 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_ECB_PKCS5 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 1b ff ff 00 0f 01 00 00 04 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_512 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 ff ff 00 05 02 00 00 07 00 20 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_512 ALG_RSA_ISO14888 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 ff ff 00 05 02 00 00 04 00 20 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_512 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b ff ff 00 05 02 00 00 07 00 20 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_512 ALG_RSA_ISO9796 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b ff ff 00 05 02 00 00 04 00 20 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_512 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c ff ff 00 05 02 00 00 07 00 40 ff ff 00 01 00 32 00 01 +baseline measurements (ms):;99.00;100.00;101.00;446.00;100.00; +baseline stats (ms):;avg:;169.20;min:;99.00;max:;446.00;;;CHECK +operation raw measurements (ms):;4631.80;4631.80;4633.80;4639.80;4635.80; +operation stats (ms/op):;avg op:;92.69;min op:;92.64;max op:;92.80; +operation info:;data length;64;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_512 ALG_RSA_NOPAD Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c ff ff 00 05 02 00 00 04 00 40 ff ff 00 01 00 32 00 01 +baseline measurements (ms):;154.00;102.00;100.00;99.00;99.00; +baseline stats (ms):;avg:;110.80;min:;99.00;max:;154.00;;;CHECK +operation raw measurements (ms):;315.20;316.20;315.20;316.20;316.20; +operation stats (ms/op):;avg op:;6.32;min op:;6.30;max op:;6.32; +operation info:;data length;64;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_512 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a ff ff 00 05 02 00 00 07 00 20 ff ff 00 01 00 32 00 01 +baseline measurements (ms):;108.00;108.00;107.00;108.00;107.00; +baseline stats (ms):;avg:;107.60;min:;107.00;max:;108.00; +operation raw measurements (ms):;4688.40;4694.40;4696.40;4693.40;4706.40; +operation stats (ms/op):;avg op:;93.92;min op:;93.77;max op:;94.13; +operation info:;data length;32;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_512 ALG_RSA_PKCS1 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a ff ff 00 05 02 00 00 04 00 20 ff ff 00 01 00 32 00 01 +baseline measurements (ms):;108.00;108.00;107.00;108.00;107.00; +baseline stats (ms):;avg:;107.60;min:;107.00;max:;108.00; +operation raw measurements (ms):;325.40;327.40;326.40;326.40;325.40; +operation stats (ms/op):;avg op:;6.52;min op:;6.51;max op:;6.55; +operation info:;data length;32;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_512 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f ff ff 00 05 02 00 00 07 00 20 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_512 ALG_RSA_PKCS1_OAEP Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f ff ff 00 05 02 00 00 04 00 20 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_736 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 ff ff 00 05 02 e0 00 07 00 2e ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_736 ALG_RSA_ISO14888 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 ff ff 00 05 02 e0 00 04 00 2e ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_736 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b ff ff 00 05 02 e0 00 07 00 2e ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_736 ALG_RSA_ISO9796 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b ff ff 00 05 02 e0 00 04 00 2e ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_736 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c ff ff 00 05 02 e0 00 07 00 5c ff ff 00 01 00 32 00 01 +baseline measurements (ms):;102.00;102.00;101.00;101.00;101.00; +baseline stats (ms):;avg:;101.40;min:;101.00;max:;102.00; +operation raw measurements (ms):;9207.60;9185.60;9172.60;9181.60;9195.60; +operation stats (ms/op):;avg op:;183.77;min op:;183.45;max op:;184.15; +operation info:;data length;92;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_736 ALG_RSA_NOPAD Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c ff ff 00 05 02 e0 00 04 00 5c ff ff 00 01 00 32 00 01 +baseline measurements (ms):;102.00;101.00;102.00;101.00;100.00; +baseline stats (ms):;avg:;101.20;min:;100.00;max:;102.00; +operation raw measurements (ms):;326.80;328.80;326.80;327.80;327.80; +operation stats (ms/op):;avg op:;6.55;min op:;6.54;max op:;6.58; +operation info:;data length;92;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_736 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a ff ff 00 05 02 e0 00 07 00 2e ff ff 00 01 00 32 00 01 +baseline measurements (ms):;111.00;111.00;110.00;109.00;110.00; +baseline stats (ms):;avg:;110.20;min:;109.00;max:;111.00; +operation raw measurements (ms):;9196.80;9207.80;9228.80;9194.80;9199.80; +operation stats (ms/op):;avg op:;184.11;min op:;183.90;max op:;184.58; +operation info:;data length;46;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_736 ALG_RSA_PKCS1 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a ff ff 00 05 02 e0 00 04 00 2e ff ff 00 01 00 32 00 01 +baseline measurements (ms):;109.00;110.00;109.00;110.00;110.00; +baseline stats (ms):;avg:;109.60;min:;109.00;max:;110.00; +operation raw measurements (ms):;327.40;328.40;327.40;328.40;327.40; +operation stats (ms/op):;avg op:;6.56;min op:;6.55;max op:;6.57; +operation info:;data length;46;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_736 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f ff ff 00 05 02 e0 00 07 00 2e ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_736 ALG_RSA_PKCS1_OAEP Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f ff ff 00 05 02 e0 00 04 00 2e ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_768 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 ff ff 00 05 03 00 00 07 00 30 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_768 ALG_RSA_ISO14888 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 ff ff 00 05 03 00 00 04 00 30 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_768 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b ff ff 00 05 03 00 00 07 00 30 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_768 ALG_RSA_ISO9796 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b ff ff 00 05 03 00 00 04 00 30 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_768 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c ff ff 00 05 03 00 00 07 00 60 ff ff 00 01 00 32 00 01 +baseline measurements (ms):;102.00;101.00;101.00;101.00;102.00; +baseline stats (ms):;avg:;101.40;min:;101.00;max:;102.00; +operation raw measurements (ms):;10258.60;10282.60;10266.60;10265.60;10257.60; +operation stats (ms/op):;avg op:;205.32;min op:;205.15;max op:;205.65; +operation info:;data length;96;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_768 ALG_RSA_NOPAD Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c ff ff 00 05 03 00 00 04 00 60 ff ff 00 01 00 32 00 01 +baseline measurements (ms):;103.00;100.00;101.00;101.00;101.00; +baseline stats (ms):;avg:;101.20;min:;100.00;max:;103.00; +operation raw measurements (ms):;327.80;327.80;327.80;328.80;328.80; +operation stats (ms/op):;avg op:;6.56;min op:;6.56;max op:;6.58; +operation info:;data length;96;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_768 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a ff ff 00 05 03 00 00 07 00 30 ff ff 00 01 00 32 00 01 +baseline measurements (ms):;112.00;110.00;110.00;110.00;110.00; +baseline stats (ms):;avg:;110.40;min:;110.00;max:;112.00; +operation raw measurements (ms):;10273.60;10279.60;10256.60;10291.60;10294.60; +operation stats (ms/op):;avg op:;205.58;min op:;205.13;max op:;205.89; +operation info:;data length;48;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_768 ALG_RSA_PKCS1 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a ff ff 00 05 03 00 00 04 00 30 ff ff 00 01 00 32 00 01 +baseline measurements (ms):;111.00;110.00;109.00;108.00;110.00; +baseline stats (ms):;avg:;109.60;min:;108.00;max:;111.00; +operation raw measurements (ms):;327.40;328.40;329.40;328.40;329.40; +operation stats (ms/op):;avg op:;6.57;min op:;6.55;max op:;6.59; +operation info:;data length;48;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_768 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f ff ff 00 05 03 00 00 07 00 30 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_768 ALG_RSA_PKCS1_OAEP Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f ff ff 00 05 03 00 00 04 00 30 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_896 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 ff ff 00 05 03 80 00 07 00 38 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_896 ALG_RSA_ISO14888 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 ff ff 00 05 03 80 00 04 00 38 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_896 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b ff ff 00 05 03 80 00 07 00 38 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_896 ALG_RSA_ISO9796 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b ff ff 00 05 03 80 00 04 00 38 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_896 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c ff ff 00 05 03 80 00 07 00 70 ff ff 00 01 00 32 00 01 +baseline measurements (ms):;100.00;98.00;98.00;100.00;103.00; +baseline stats (ms):;avg:;99.80;min:;98.00;max:;103.00; +operation raw measurements (ms):;14924.20;14871.20;14900.20;14911.20;14890.20; +operation stats (ms/op):;avg op:;297.99;min op:;297.42;max op:;298.48; +operation info:;data length;112;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_896 ALG_RSA_NOPAD Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c ff ff 00 05 03 80 00 04 00 70 ff ff 00 01 00 32 00 01 +baseline measurements (ms):;104.00;101.00;103.00;102.00;103.00; +baseline stats (ms):;avg:;102.60;min:;101.00;max:;104.00; +operation raw measurements (ms):;327.40;328.40;328.40;327.40;328.40; +operation stats (ms/op):;avg op:;6.56;min op:;6.55;max op:;6.57; +operation info:;data length;112;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_896 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a ff ff 00 05 03 80 00 07 00 38 ff ff 00 01 00 32 00 01 +baseline measurements (ms):;111.00;111.00;111.00;111.00;111.00; +baseline stats (ms):;avg:;111.00;min:;111.00;max:;111.00; +operation raw measurements (ms):;14907.00;14873.00;14901.00;14890.00;14888.00; +operation stats (ms/op):;avg op:;297.84;min op:;297.46;max op:;298.14; +operation info:;data length;56;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_896 ALG_RSA_PKCS1 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a ff ff 00 05 03 80 00 04 00 38 ff ff 00 01 00 32 00 01 +baseline measurements (ms):;112.00;109.00;110.00;112.00;111.00; +baseline stats (ms):;avg:;110.80;min:;109.00;max:;112.00; +operation raw measurements (ms):;326.20;327.20;328.20;326.20;328.20; +operation stats (ms/op):;avg op:;6.54;min op:;6.52;max op:;6.56; +operation info:;data length;56;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_896 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f ff ff 00 05 03 80 00 07 00 38 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_896 ALG_RSA_PKCS1_OAEP Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f ff ff 00 05 03 80 00 04 00 38 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1024 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 ff ff 00 05 04 00 00 07 00 40 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1024 ALG_RSA_ISO14888 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 ff ff 00 05 04 00 00 04 00 40 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1024 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b ff ff 00 05 04 00 00 07 00 40 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1024 ALG_RSA_ISO9796 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b ff ff 00 05 04 00 00 04 00 40 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1024 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c ff ff 00 05 04 00 00 07 00 80 ff ff 00 01 00 32 00 01 +baseline measurements (ms):;99.00;102.00;102.00;102.00;103.00; +baseline stats (ms):;avg:;102.25;min:;99.00;max:;103.00; +operation raw measurements (ms):;20819.75;20736.75;20781.75;20811.75;20775.75; +operation stats (ms/op):;avg op:;415.70;min op:;414.74;max op:;416.40; +operation info:;data length;128;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1024 ALG_RSA_NOPAD Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c ff ff 00 05 04 00 00 04 00 80 ff ff 00 01 00 32 00 01 +baseline measurements (ms):;104.00;103.00;102.00;102.00;101.00; +baseline stats (ms):;avg:;102.40;min:;101.00;max:;104.00; +operation raw measurements (ms):;326.60;329.60;329.60;328.60;328.60; +operation stats (ms/op):;avg op:;6.57;min op:;6.53;max op:;6.59; +operation info:;data length;128;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1024 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a ff ff 00 05 04 00 00 07 00 40 ff ff 00 01 00 32 00 01 +baseline measurements (ms):;112.00;112.00;112.00;112.00;111.00; +baseline stats (ms):;avg:;112.00;min:;111.00;max:;112.00; +operation raw measurements (ms):;20754.00;20814.00;20760.00;20752.00;20812.00; +operation stats (ms/op):;avg op:;415.57;min op:;415.04;max op:;416.28; +operation info:;data length;64;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1024 ALG_RSA_PKCS1 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a ff ff 00 05 04 00 00 04 00 40 ff ff 00 01 00 32 00 01 +baseline measurements (ms):;112.00;110.00;112.00;112.00;111.00; +baseline stats (ms):;avg:;111.75;min:;110.00;max:;112.00; +operation raw measurements (ms):;328.25;326.25;327.25;327.25;328.25; +operation stats (ms/op):;avg op:;6.55;min op:;6.53;max op:;6.57; +operation info:;data length;64;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1024 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f ff ff 00 05 04 00 00 07 00 40 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1024 ALG_RSA_PKCS1_OAEP Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f ff ff 00 05 04 00 00 04 00 40 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1280 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 ff ff 00 05 05 00 00 07 00 50 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1280 ALG_RSA_ISO14888 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 ff ff 00 05 05 00 00 04 00 50 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1280 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b ff ff 00 05 05 00 00 07 00 50 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1280 ALG_RSA_ISO9796 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b ff ff 00 05 05 00 00 04 00 50 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1280 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c ff ff 00 05 05 00 00 07 00 a0 ff ff 00 01 00 32 00 01 +baseline measurements (ms):;105.00;104.00;101.00;100.00;103.00; +baseline stats (ms):;avg:;102.60;min:;100.00;max:;105.00; +operation raw measurements (ms):;36868.40;36877.40;36867.40;36937.40;36868.40; +operation stats (ms/op):;avg op:;737.68;min op:;737.35;max op:;738.75; +operation info:;data length;160;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1280 ALG_RSA_NOPAD Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c ff ff 00 05 05 00 00 04 00 a0 ff ff 00 01 00 32 00 01 +baseline measurements (ms):;101.00;103.00;102.00;103.00;103.00; +baseline stats (ms):;avg:;102.75;min:;101.00;max:;103.00; +operation raw measurements (ms):;330.25;331.25;330.25;331.25;331.25; +operation stats (ms/op):;avg op:;6.62;min op:;6.61;max op:;6.63; +operation info:;data length;160;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1280 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a ff ff 00 05 05 00 00 07 00 50 ff ff 00 01 00 32 00 01 +baseline measurements (ms):;116.00;115.00;114.00;115.00;115.00; +baseline stats (ms):;avg:;115.25;min:;114.00;max:;116.00; +operation raw measurements (ms):;36920.75;36941.75;36962.75;36882.75;36934.75; +operation stats (ms/op):;avg op:;738.57;min op:;737.66;max op:;739.26; +operation info:;data length;80;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1280 ALG_RSA_PKCS1 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a ff ff 00 05 05 00 00 04 00 50 ff ff 00 01 00 32 00 01 +baseline measurements (ms):;116.00;115.00;115.00;115.00;114.00; +baseline stats (ms):;avg:;115.25;min:;114.00;max:;116.00; +operation raw measurements (ms):;328.75;329.75;330.75;330.75;329.75; +operation stats (ms/op):;avg op:;6.60;min op:;6.58;max op:;6.62; +operation info:;data length;80;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1280 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f ff ff 00 05 05 00 00 07 00 50 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1280 ALG_RSA_PKCS1_OAEP Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f ff ff 00 05 05 00 00 04 00 50 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1536 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 ff ff 00 05 06 00 00 07 00 60 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1536 ALG_RSA_ISO14888 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 ff ff 00 05 06 00 00 04 00 60 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1536 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b ff ff 00 05 06 00 00 07 00 60 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1536 ALG_RSA_ISO9796 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b ff ff 00 05 06 00 00 04 00 60 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1536 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c ff ff 00 05 06 00 00 07 00 c0 ff ff 00 01 00 32 00 01 +baseline measurements (ms):;104.00;105.00;105.00;105.00;105.00; +baseline stats (ms):;avg:;105.00;min:;104.00;max:;105.00; +operation raw measurements (ms):;59876.00;60042.00;59923.00;59956.00;59920.00; +operation stats (ms/op):;avg op:;1198.87;min op:;1197.52;max op:;1200.84; +operation info:;data length;192;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1536 ALG_RSA_NOPAD Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c ff ff 00 05 06 00 00 04 00 c0 ff ff 00 01 00 32 00 01 +baseline measurements (ms):;105.00;105.00;104.00;105.00;106.00; +baseline stats (ms):;avg:;105.25;min:;104.00;max:;106.00; +operation raw measurements (ms):;331.75;331.75;331.75;329.75;330.75; +operation stats (ms/op):;avg op:;6.62;min op:;6.60;max op:;6.64; +operation info:;data length;192;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1536 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a ff ff 00 05 06 00 00 07 00 60 ff ff 00 01 00 32 00 01 +baseline measurements (ms):;115.00;113.00;116.00;116.00;117.00; +baseline stats (ms):;avg:;116.00;min:;113.00;max:;117.00; +operation raw measurements (ms):;59939.00;59923.00;60052.00;59992.00;59992.00; +operation stats (ms/op):;avg op:;1199.59;min op:;1198.46;max op:;1201.04; +operation info:;data length;96;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1536 ALG_RSA_PKCS1 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a ff ff 00 05 06 00 00 04 00 60 ff ff 00 01 00 32 00 01 +baseline measurements (ms):;116.00;116.00;116.00;115.00;115.00; +baseline stats (ms):;avg:;115.60;min:;115.00;max:;116.00; +operation raw measurements (ms):;331.40;330.40;331.40;329.40;331.40; +operation stats (ms/op):;avg op:;6.62;min op:;6.59;max op:;6.63; +operation info:;data length;96;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1536 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f ff ff 00 05 06 00 00 07 00 60 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1536 ALG_RSA_PKCS1_OAEP Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f ff ff 00 05 06 00 00 04 00 60 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1984 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 ff ff 00 05 07 c0 00 07 00 7c ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1984 ALG_RSA_ISO14888 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 ff ff 00 05 07 c0 00 04 00 7c ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1984 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b ff ff 00 05 07 c0 00 07 00 7c ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1984 ALG_RSA_ISO9796 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b ff ff 00 05 07 c0 00 04 00 7c ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1984 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c ff ff 00 05 07 c0 00 07 00 f8 ff ff 00 01 00 32 00 01 +baseline measurements (ms):;111.00;110.00;109.00;108.00;108.00; +baseline stats (ms):;avg:;109.20;min:;108.00;max:;111.00; +operation raw measurements (ms):;120901.80;120730.80;120699.80;121044.80;120926.80; +operation stats (ms/op):;avg op:;2417.22;min op:;2414.00;max op:;2420.90; +operation info:;data length;248;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1984 ALG_RSA_NOPAD Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c ff ff 00 05 07 c0 00 04 00 f8 ff ff 00 01 00 32 00 01 +baseline measurements (ms):;111.00;110.00;111.00;109.00;111.00; +baseline stats (ms):;avg:;110.75;min:;109.00;max:;111.00; +operation raw measurements (ms):;332.25;334.25;333.25;334.25;332.25; +operation stats (ms/op):;avg op:;6.67;min op:;6.65;max op:;6.69; +operation info:;data length;248;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1984 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a ff ff 00 05 07 c0 00 07 00 7c ff ff 00 01 00 32 00 01 +baseline measurements (ms):;124.00;124.00;123.00;124.00;125.00; +baseline stats (ms):;avg:;124.25;min:;123.00;max:;125.00; +operation raw measurements (ms):;120686.75;120878.75;120843.75;120951.75;120756.75; +operation stats (ms/op):;avg op:;2416.47;min op:;2413.74;max op:;2419.04; +operation info:;data length;124;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1984 ALG_RSA_PKCS1 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a ff ff 00 05 07 c0 00 04 00 7c ff ff 00 01 00 32 00 01 +baseline measurements (ms):;120.00;121.00;122.00;122.00;120.00; +baseline stats (ms):;avg:;121.00;min:;120.00;max:;122.00; +operation raw measurements (ms):;332.00;332.00;334.00;333.00;333.00; +operation stats (ms/op):;avg op:;6.66;min op:;6.64;max op:;6.68; +operation info:;data length;124;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1984 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f ff ff 00 05 07 c0 00 07 00 7c ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1984 ALG_RSA_PKCS1_OAEP Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f ff ff 00 05 07 c0 00 04 00 7c ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_2048 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 ff ff 00 05 08 00 00 07 00 80 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_2048 ALG_RSA_ISO14888 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 ff ff 00 05 08 00 00 04 00 80 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_2048 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b ff ff 00 05 08 00 00 07 00 80 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_2048 ALG_RSA_ISO9796 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b ff ff 00 05 08 00 00 04 00 80 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_2048 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c ff ff 00 05 08 00 00 07 01 00 ff ff 00 01 00 32 00 01 +baseline measurements (ms):;110.00;107.00;105.00;108.00;107.00; +baseline stats (ms):;avg:;107.40;min:;105.00;max:;110.00; +operation raw measurements (ms):;131996.60;131884.60;131848.60;132101.60;131959.60; +operation stats (ms/op):;avg op:;2639.16;min op:;2636.97;max op:;2642.03; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_2048 ALG_RSA_NOPAD Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c ff ff 00 05 08 00 00 04 01 00 ff ff 00 01 00 32 00 01 +baseline measurements (ms):;110.00;109.00;108.00;109.00;108.00; +baseline stats (ms):;avg:;108.80;min:;108.00;max:;110.00; +operation raw measurements (ms):;336.20;334.20;334.20;334.20;334.20; +operation stats (ms/op):;avg op:;6.69;min op:;6.68;max op:;6.72; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_2048 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a ff ff 00 05 08 00 00 07 00 80 ff ff 00 01 00 32 00 01 +baseline measurements (ms):;120.00;119.00;122.00;122.00;125.00; +baseline stats (ms):;avg:;121.60;min:;119.00;max:;125.00; +operation raw measurements (ms):;132335.40;132176.40;132079.40;132017.40;132025.40; +operation stats (ms/op):;avg op:;2642.54;min op:;2640.35;max op:;2646.71; +operation info:;data length;128;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_2048 ALG_RSA_PKCS1 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a ff ff 00 05 08 00 00 04 00 80 ff ff 00 01 00 32 00 01 +baseline measurements (ms):;124.00;119.00;119.00;119.00;119.00; +baseline stats (ms):;avg:;120.00;min:;119.00;max:;124.00; +operation raw measurements (ms):;356.00;339.00;333.00;334.00;333.00; +operation stats (ms/op):;avg op:;6.78;min op:;6.66;max op:;7.12;;CHECK +operation info:;data length;128;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_2048 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f ff ff 00 05 08 00 00 07 00 80 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_2048 ALG_RSA_PKCS1_OAEP Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f ff ff 00 05 08 00 00 04 00 80 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_3072 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 ff ff 00 05 0c 00 00 07 00 c0 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_3072 ALG_RSA_ISO14888 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 ff ff 00 05 0c 00 00 04 00 c0 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_3072 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b ff ff 00 05 0c 00 00 07 00 c0 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_3072 ALG_RSA_ISO9796 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b ff ff 00 05 0c 00 00 04 00 c0 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_3072 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c ff ff 00 05 0c 00 00 07 01 80 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_3072 ALG_RSA_NOPAD Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c ff ff 00 05 0c 00 00 04 01 80 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_3072 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a ff ff 00 05 0c 00 00 07 00 c0 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_3072 ALG_RSA_PKCS1 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a ff ff 00 05 0c 00 00 04 00 c0 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_3072 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f ff ff 00 05 0c 00 00 07 00 c0 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_3072 ALG_RSA_PKCS1_OAEP Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f ff ff 00 05 0c 00 00 04 00 c0 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_4096 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 ff ff 00 05 10 00 00 07 01 00 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_4096 ALG_RSA_ISO14888 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 ff ff 00 05 10 00 00 04 01 00 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_4096 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b ff ff 00 05 10 00 00 07 01 00 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_4096 ALG_RSA_ISO9796 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b ff ff 00 05 10 00 00 04 01 00 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_4096 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c ff ff 00 05 10 00 00 07 02 00 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_4096 ALG_RSA_NOPAD Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c ff ff 00 05 10 00 00 04 02 00 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_4096 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a ff ff 00 05 10 00 00 07 01 00 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_4096 ALG_RSA_PKCS1 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a ff ff 00 05 10 00 00 04 01 00 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_4096 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f ff ff 00 05 10 00 00 07 01 00 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_4096 ALG_RSA_PKCS1_OAEP Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f ff ff 00 05 10 00 00 04 01 00 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_512 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 00 01 00 04 02 00 00 07 00 20 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_512 ALG_RSA_ISO14888 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 00 01 00 04 02 00 00 04 00 20 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_512 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b 00 01 00 04 02 00 00 07 00 20 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_512 ALG_RSA_ISO9796 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b 00 01 00 04 02 00 00 04 00 20 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_512 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c 00 01 00 04 02 00 00 07 00 40 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;93.00;94.00;93.00;93.00;94.00; +baseline stats (ms):;avg:;93.40;min:;93.00;max:;94.00; +operation raw measurements (ms):;90.60;93.60;95.60;92.60;91.60; +operation stats (ms/op):;avg op:;1.86;min op:;1.81;max op:;1.91; +operation info:;data length;64;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_512 ALG_RSA_NOPAD Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c 00 01 00 04 02 00 00 04 00 40 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;94.00;97.00;95.00;93.00;93.00; +baseline stats (ms):;avg:;94.40;min:;93.00;max:;97.00; +operation raw measurements (ms):;325.60;330.60;332.60;327.60;328.60; +operation stats (ms/op):;avg op:;6.58;min op:;6.51;max op:;6.65; +operation info:;data length;64;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_512 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a 00 01 00 04 02 00 00 07 00 20 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;94.00;93.00;92.00;94.00;93.00; +baseline stats (ms):;avg:;93.20;min:;92.00;max:;94.00; +operation raw measurements (ms):;435.80;435.80;436.80;434.80;436.80; +operation stats (ms/op):;avg op:;8.72;min op:;8.70;max op:;8.74; +operation info:;data length;32;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_512 ALG_RSA_PKCS1 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a 00 01 00 04 02 00 00 04 00 20 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;92.00;91.00;93.00;92.00;93.00; +baseline stats (ms):;avg:;92.20;min:;91.00;max:;93.00; +operation raw measurements (ms):;323.80;329.80;329.80;331.80;330.80; +operation stats (ms/op):;avg op:;6.58;min op:;6.48;max op:;6.64; +operation info:;data length;32;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_512 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f 00 01 00 04 02 00 00 07 00 20 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_512 ALG_RSA_PKCS1_OAEP Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f 00 01 00 04 02 00 00 04 00 20 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_736 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 00 01 00 04 02 e0 00 07 00 2e ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_736 ALG_RSA_ISO14888 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 00 01 00 04 02 e0 00 04 00 2e ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_736 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b 00 01 00 04 02 e0 00 07 00 2e ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_736 ALG_RSA_ISO9796 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b 00 01 00 04 02 e0 00 04 00 2e ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_736 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c 00 01 00 04 02 e0 00 07 00 5c ff ff 00 02 00 32 00 01 +baseline measurements (ms):;96.00;97.00;95.00;95.00;94.00; +baseline stats (ms):;avg:;95.40;min:;94.00;max:;97.00; +operation raw measurements (ms):;120.60;122.60;122.60;121.60;122.60; +operation stats (ms/op):;avg op:;2.44;min op:;2.41;max op:;2.45; +operation info:;data length;92;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_736 ALG_RSA_NOPAD Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c 00 01 00 04 02 e0 00 04 00 5c ff ff 00 02 00 32 00 01 +baseline measurements (ms):;93.00;92.00;92.00;92.00;92.00; +baseline stats (ms):;avg:;92.20;min:;92.00;max:;93.00; +operation raw measurements (ms):;327.80;333.80;333.80;330.80;330.80; +operation stats (ms/op):;avg op:;6.63;min op:;6.56;max op:;6.68; +operation info:;data length;92;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_736 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a 00 01 00 04 02 e0 00 07 00 2e ff ff 00 02 00 32 00 01 +baseline measurements (ms):;92.00;92.00;93.00;92.00;91.00; +baseline stats (ms):;avg:;92.25;min:;91.00;max:;93.00; +operation raw measurements (ms):;585.75;583.75;584.75;581.75;582.75; +operation stats (ms/op):;avg op:;11.68;min op:;11.64;max op:;11.72; +operation info:;data length;46;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_736 ALG_RSA_PKCS1 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a 00 01 00 04 02 e0 00 04 00 2e ff ff 00 02 00 32 00 01 +baseline measurements (ms):;93.00;93.00;92.00;93.00;92.00; +baseline stats (ms):;avg:;92.60;min:;92.00;max:;93.00; +operation raw measurements (ms):;325.40;330.40;330.40;330.40;352.40; +operation stats (ms/op):;avg op:;6.68;min op:;6.51;max op:;7.05;;CHECK +operation info:;data length;46;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_736 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f 00 01 00 04 02 e0 00 07 00 2e ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_736 ALG_RSA_PKCS1_OAEP Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f 00 01 00 04 02 e0 00 04 00 2e ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_768 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 00 01 00 04 03 00 00 07 00 30 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_768 ALG_RSA_ISO14888 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 00 01 00 04 03 00 00 04 00 30 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_768 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b 00 01 00 04 03 00 00 07 00 30 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_768 ALG_RSA_ISO9796 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b 00 01 00 04 03 00 00 04 00 30 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_768 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c 00 01 00 04 03 00 00 07 00 60 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;95.00;92.00;91.00;92.00;92.00; +baseline stats (ms):;avg:;92.40;min:;91.00;max:;95.00; +operation raw measurements (ms):;127.60;127.60;127.60;127.60;126.60; +operation stats (ms/op):;avg op:;2.55;min op:;2.53;max op:;2.55; +operation info:;data length;96;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_768 ALG_RSA_NOPAD Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c 00 01 00 04 03 00 00 04 00 60 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;92.00;91.00;92.00;91.00;93.00; +baseline stats (ms):;avg:;91.80;min:;91.00;max:;93.00; +operation raw measurements (ms):;325.20;331.20;330.20;333.20;331.20; +operation stats (ms/op):;avg op:;6.60;min op:;6.50;max op:;6.66; +operation info:;data length;96;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_768 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a 00 01 00 04 03 00 00 07 00 30 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;93.00;92.00;92.00;92.00;93.00; +baseline stats (ms):;avg:;92.40;min:;92.00;max:;93.00; +operation raw measurements (ms):;590.60;587.60;588.60;587.60;588.60; +operation stats (ms/op):;avg op:;11.77;min op:;11.75;max op:;11.81; +operation info:;data length;48;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_768 ALG_RSA_PKCS1 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a 00 01 00 04 03 00 00 04 00 30 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;92.00;92.00;92.00;92.00;97.00; +baseline stats (ms):;avg:;93.00;min:;92.00;max:;97.00; +operation raw measurements (ms):;326.00;332.00;331.00;331.00;330.00; +operation stats (ms/op):;avg op:;6.60;min op:;6.52;max op:;6.64; +operation info:;data length;48;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_768 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f 00 01 00 04 03 00 00 07 00 30 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_768 ALG_RSA_PKCS1_OAEP Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f 00 01 00 04 03 00 00 04 00 30 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_896 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 00 01 00 04 03 80 00 07 00 38 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_896 ALG_RSA_ISO14888 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 00 01 00 04 03 80 00 04 00 38 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_896 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b 00 01 00 04 03 80 00 07 00 38 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_896 ALG_RSA_ISO9796 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b 00 01 00 04 03 80 00 04 00 38 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_896 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c 00 01 00 04 03 80 00 07 00 70 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;92.00;92.00;92.00;93.00;92.00; +baseline stats (ms):;avg:;92.20;min:;92.00;max:;93.00; +operation raw measurements (ms):;149.80;150.80;150.80;149.80;150.80; +operation stats (ms/op):;avg op:;3.01;min op:;3.00;max op:;3.02; +operation info:;data length;112;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_896 ALG_RSA_NOPAD Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c 00 01 00 04 03 80 00 04 00 70 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;96.00;92.00;91.00;92.00;91.00; +baseline stats (ms):;avg:;92.40;min:;91.00;max:;96.00; +operation raw measurements (ms):;324.60;330.60;332.60;332.60;335.60; +operation stats (ms/op):;avg op:;6.62;min op:;6.49;max op:;6.71; +operation info:;data length;112;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_896 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a 00 01 00 04 03 80 00 07 00 38 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;93.00;92.00;92.00;91.00;93.00; +baseline stats (ms):;avg:;92.20;min:;91.00;max:;93.00; +operation raw measurements (ms):;608.80;608.80;609.80;611.80;612.80; +operation stats (ms/op):;avg op:;12.21;min op:;12.18;max op:;12.26; +operation info:;data length;56;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_896 ALG_RSA_PKCS1 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a 00 01 00 04 03 80 00 04 00 38 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;93.00;91.00;92.00;92.00;93.00; +baseline stats (ms):;avg:;92.20;min:;91.00;max:;93.00; +operation raw measurements (ms):;325.80;335.80;330.80;333.80;330.80; +operation stats (ms/op):;avg op:;6.63;min op:;6.52;max op:;6.72; +operation info:;data length;56;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_896 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f 00 01 00 04 03 80 00 07 00 38 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_896 ALG_RSA_PKCS1_OAEP Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f 00 01 00 04 03 80 00 04 00 38 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1024 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 00 01 00 04 04 00 00 07 00 40 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1024 ALG_RSA_ISO14888 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 00 01 00 04 04 00 00 04 00 40 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1024 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b 00 01 00 04 04 00 00 07 00 40 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1024 ALG_RSA_ISO9796 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b 00 01 00 04 04 00 00 04 00 40 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1024 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c 00 01 00 04 04 00 00 07 00 80 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;93.00;92.00;92.00;92.00;92.00; +baseline stats (ms):;avg:;92.20;min:;92.00;max:;93.00; +operation raw measurements (ms):;171.80;173.80;172.80;173.80;176.80; +operation stats (ms/op):;avg op:;3.48;min op:;3.44;max op:;3.54; +operation info:;data length;128;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1024 ALG_RSA_NOPAD Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c 00 01 00 04 04 00 00 04 00 80 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;95.00;94.00;94.00;92.00;92.00; +baseline stats (ms):;avg:;93.40;min:;92.00;max:;95.00; +operation raw measurements (ms):;326.60;332.60;333.60;331.60;330.60; +operation stats (ms/op):;avg op:;6.62;min op:;6.53;max op:;6.67; +operation info:;data length;128;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1024 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a 00 01 00 04 04 00 00 07 00 40 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;91.00;91.00;92.00;92.00;91.00; +baseline stats (ms):;avg:;91.40;min:;91.00;max:;92.00; +operation raw measurements (ms):;632.60;634.60;633.60;634.60;633.60; +operation stats (ms/op):;avg op:;12.68;min op:;12.65;max op:;12.69; +operation info:;data length;64;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1024 ALG_RSA_PKCS1 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a 00 01 00 04 04 00 00 04 00 40 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;92.00;91.00;93.00;93.00;94.00; +baseline stats (ms):;avg:;92.60;min:;91.00;max:;94.00; +operation raw measurements (ms):;326.40;334.40;330.40;330.40;331.40; +operation stats (ms/op):;avg op:;6.61;min op:;6.53;max op:;6.69; +operation info:;data length;64;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1024 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f 00 01 00 04 04 00 00 07 00 40 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1024 ALG_RSA_PKCS1_OAEP Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f 00 01 00 04 04 00 00 04 00 40 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1280 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 00 01 00 04 05 00 00 07 00 50 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1280 ALG_RSA_ISO14888 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 00 01 00 04 05 00 00 04 00 50 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1280 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b 00 01 00 04 05 00 00 07 00 50 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1280 ALG_RSA_ISO9796 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b 00 01 00 04 05 00 00 04 00 50 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1280 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c 00 01 00 04 05 00 00 07 00 a0 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;92.00;91.00;92.00;92.00;92.00; +baseline stats (ms):;avg:;92.00;min:;91.00;max:;92.00; +operation raw measurements (ms):;229.00;231.00;232.00;226.00;226.00; +operation stats (ms/op):;avg op:;4.58;min op:;4.52;max op:;4.64; +operation info:;data length;160;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1280 ALG_RSA_NOPAD Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c 00 01 00 04 05 00 00 04 00 a0 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;91.00;92.00;91.00;93.00;91.00; +baseline stats (ms):;avg:;91.60;min:;91.00;max:;93.00; +operation raw measurements (ms):;328.40;335.40;339.40;333.40;333.40; +operation stats (ms/op):;avg op:;6.68;min op:;6.57;max op:;6.79; +operation info:;data length;160;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1280 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a 00 01 00 04 05 00 00 07 00 50 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;92.00;92.00;94.00;94.00;93.00; +baseline stats (ms):;avg:;93.00;min:;92.00;max:;94.00; +operation raw measurements (ms):;803.00;802.00;804.00;802.00;803.00; +operation stats (ms/op):;avg op:;16.06;min op:;16.04;max op:;16.08; +operation info:;data length;80;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1280 ALG_RSA_PKCS1 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a 00 01 00 04 05 00 00 04 00 50 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;93.00;92.00;94.00;94.00;94.00; +baseline stats (ms):;avg:;93.75;min:;92.00;max:;94.00; +operation raw measurements (ms):;324.25;330.25;329.25;331.25;329.25; +operation stats (ms/op):;avg op:;6.58;min op:;6.49;max op:;6.63; +operation info:;data length;80;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1280 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f 00 01 00 04 05 00 00 07 00 50 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1280 ALG_RSA_PKCS1_OAEP Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f 00 01 00 04 05 00 00 04 00 50 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1536 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 00 01 00 04 06 00 00 07 00 60 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1536 ALG_RSA_ISO14888 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 00 01 00 04 06 00 00 04 00 60 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1536 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b 00 01 00 04 06 00 00 07 00 60 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1536 ALG_RSA_ISO9796 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b 00 01 00 04 06 00 00 04 00 60 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1536 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c 00 01 00 04 06 00 00 07 00 c0 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;95.00;95.00;92.00;97.00;93.00; +baseline stats (ms):;avg:;94.40;min:;92.00;max:;97.00; +operation raw measurements (ms):;290.60;290.60;288.60;288.60;288.60; +operation stats (ms/op):;avg op:;5.79;min op:;5.77;max op:;5.81; +operation info:;data length;192;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1536 ALG_RSA_NOPAD Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c 00 01 00 04 06 00 00 04 00 c0 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;95.00;96.00;96.00;92.00;92.00; +baseline stats (ms):;avg:;94.20;min:;92.00;max:;96.00; +operation raw measurements (ms):;326.80;332.80;332.80;331.80;330.80; +operation stats (ms/op):;avg op:;6.62;min op:;6.54;max op:;6.66; +operation info:;data length;192;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1536 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a 00 01 00 04 06 00 00 07 00 60 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;94.00;93.00;92.00;92.00;93.00; +baseline stats (ms):;avg:;92.80;min:;92.00;max:;94.00; +operation raw measurements (ms):;871.20;871.20;867.20;869.20;867.20; +operation stats (ms/op):;avg op:;17.38;min op:;17.34;max op:;17.42; +operation info:;data length;96;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1536 ALG_RSA_PKCS1 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a 00 01 00 04 06 00 00 04 00 60 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;93.00;94.00;95.00;94.00;93.00; +baseline stats (ms):;avg:;93.80;min:;93.00;max:;95.00; +operation raw measurements (ms):;326.20;331.20;336.20;335.20;332.20; +operation stats (ms/op):;avg op:;6.64;min op:;6.52;max op:;6.72; +operation info:;data length;96;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1536 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f 00 01 00 04 06 00 00 07 00 60 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1536 ALG_RSA_PKCS1_OAEP Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f 00 01 00 04 06 00 00 04 00 60 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1984 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 00 01 00 04 07 c0 00 07 00 7c ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1984 ALG_RSA_ISO14888 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 00 01 00 04 07 c0 00 04 00 7c ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1984 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b 00 01 00 04 07 c0 00 07 00 7c ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1984 ALG_RSA_ISO9796 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b 00 01 00 04 07 c0 00 04 00 7c ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1984 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c 00 01 00 04 07 c0 00 07 00 f8 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;94.00;95.00;95.00;93.00;94.00; +baseline stats (ms):;avg:;94.20;min:;93.00;max:;95.00; +operation raw measurements (ms):;421.80;423.80;422.80;421.80;423.80; +operation stats (ms/op):;avg op:;8.46;min op:;8.44;max op:;8.48; +operation info:;data length;248;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1984 ALG_RSA_NOPAD Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c 00 01 00 04 07 c0 00 04 00 f8 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;93.00;93.00;96.00;93.00;94.00; +baseline stats (ms):;avg:;93.80;min:;93.00;max:;96.00; +operation raw measurements (ms):;327.20;334.20;335.20;334.20;335.20; +operation stats (ms/op):;avg op:;6.66;min op:;6.54;max op:;6.70; +operation info:;data length;248;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1984 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a 00 01 00 04 07 c0 00 07 00 7c ff ff 00 02 00 32 00 01 +baseline measurements (ms):;93.00;92.00;94.00;93.00;92.00; +baseline stats (ms):;avg:;92.80;min:;92.00;max:;94.00; +operation raw measurements (ms):;1119.20;1119.20;1122.20;1121.20;1122.20; +operation stats (ms/op):;avg op:;22.42;min op:;22.38;max op:;22.44; +operation info:;data length;124;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1984 ALG_RSA_PKCS1 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a 00 01 00 04 07 c0 00 04 00 7c ff ff 00 02 00 32 00 01 +baseline measurements (ms):;93.00;94.00;93.00;92.00;93.00; +baseline stats (ms):;avg:;93.25;min:;92.00;max:;94.00; +operation raw measurements (ms):;323.75;334.75;334.75;336.75;336.75; +operation stats (ms/op):;avg op:;6.67;min op:;6.48;max op:;6.74; +operation info:;data length;124;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1984 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f 00 01 00 04 07 c0 00 07 00 7c ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1984 ALG_RSA_PKCS1_OAEP Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f 00 01 00 04 07 c0 00 04 00 7c ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_2048 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 00 01 00 04 08 00 00 07 00 80 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_2048 ALG_RSA_ISO14888 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 00 01 00 04 08 00 00 04 00 80 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_2048 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b 00 01 00 04 08 00 00 07 00 80 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_2048 ALG_RSA_ISO9796 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b 00 01 00 04 08 00 00 04 00 80 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_2048 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c 00 01 00 04 08 00 00 07 01 00 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;96.00;96.00;95.00;94.00;95.00; +baseline stats (ms):;avg:;95.20;min:;94.00;max:;96.00; +operation raw measurements (ms):;440.80;441.80;440.80;444.80;443.80; +operation stats (ms/op):;avg op:;8.85;min op:;8.82;max op:;8.90; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_2048 ALG_RSA_NOPAD Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c 00 01 00 04 08 00 00 04 01 00 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;93.00;92.00;97.00;93.00;96.00; +baseline stats (ms):;avg:;94.20;min:;92.00;max:;97.00; +operation raw measurements (ms):;325.80;333.80;332.80;334.80;334.80; +operation stats (ms/op):;avg op:;6.65;min op:;6.52;max op:;6.70; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_2048 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a 00 01 00 04 08 00 00 07 00 80 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;96.00;96.00;94.00;94.00;95.00; +baseline stats (ms):;avg:;95.00;min:;94.00;max:;96.00; +operation raw measurements (ms):;1142.00;1138.00;1139.00;1140.00;1142.00; +operation stats (ms/op):;avg op:;22.80;min op:;22.76;max op:;22.84; +operation info:;data length;128;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_2048 ALG_RSA_PKCS1 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a 00 01 00 04 08 00 00 04 00 80 ff ff 00 02 00 32 00 01 +baseline measurements (ms):;94.00;95.00;95.00;95.00;94.00; +baseline stats (ms):;avg:;94.60;min:;94.00;max:;95.00; +operation raw measurements (ms):;329.40;334.40;335.40;335.40;335.40; +operation stats (ms/op):;avg op:;6.68;min op:;6.59;max op:;6.71; +operation info:;data length;128;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_2048 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f 00 01 00 04 08 00 00 07 00 80 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_2048 ALG_RSA_PKCS1_OAEP Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f 00 01 00 04 08 00 00 04 00 80 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_3072 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 00 01 00 04 0c 00 00 07 00 c0 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_3072 ALG_RSA_ISO14888 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 00 01 00 04 0c 00 00 04 00 c0 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_3072 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b 00 01 00 04 0c 00 00 07 00 c0 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_3072 ALG_RSA_ISO9796 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b 00 01 00 04 0c 00 00 04 00 c0 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_3072 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c 00 01 00 04 0c 00 00 07 01 80 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_3072 ALG_RSA_NOPAD Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c 00 01 00 04 0c 00 00 04 01 80 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_3072 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a 00 01 00 04 0c 00 00 07 00 c0 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_3072 ALG_RSA_PKCS1 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a 00 01 00 04 0c 00 00 04 00 c0 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_3072 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f 00 01 00 04 0c 00 00 07 00 c0 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_3072 ALG_RSA_PKCS1_OAEP Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f 00 01 00 04 0c 00 00 04 00 c0 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_4096 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 00 01 00 04 10 00 00 07 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_4096 ALG_RSA_ISO14888 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 00 01 00 04 10 00 00 04 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_4096 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b 00 01 00 04 10 00 00 07 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_4096 ALG_RSA_ISO9796 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b 00 01 00 04 10 00 00 04 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_4096 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c 00 01 00 04 10 00 00 07 02 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_4096 ALG_RSA_NOPAD Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c 00 01 00 04 10 00 00 04 02 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_4096 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a 00 01 00 04 10 00 00 07 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_4096 ALG_RSA_PKCS1 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a 00 01 00 04 10 00 00 04 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_4096 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f 00 01 00 04 10 00 00 07 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_4096 ALG_RSA_PKCS1_OAEP Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f 00 01 00 04 10 00 00 04 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_512 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 ff ff 00 06 02 00 00 07 00 20 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_512 ALG_RSA_ISO14888 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 ff ff 00 06 02 00 00 04 00 20 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_512 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b ff ff 00 06 02 00 00 07 00 20 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_512 ALG_RSA_ISO9796 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b ff ff 00 06 02 00 00 04 00 20 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_512 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c ff ff 00 06 02 00 00 07 00 40 ff ff 00 01 00 32 00 01 +baseline measurements (ms):;96.00;99.00;100.00;98.00;99.00; +baseline stats (ms):;avg:;99.00;min:;96.00;max:;100.00; +operation raw measurements (ms):;2239.00;2242.00;2245.00;2237.00;2243.00; +operation stats (ms/op):;avg op:;44.82;min op:;44.74;max op:;44.90; +operation info:;data length;64;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_512 ALG_RSA_NOPAD Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c ff ff 00 06 02 00 00 04 00 40 ff ff 00 01 00 32 00 01 +baseline measurements (ms):;100.00;101.00;98.00;97.00;98.00; +baseline stats (ms):;avg:;98.80;min:;97.00;max:;101.00; +operation raw measurements (ms):;330.20;331.20;327.20;327.20;328.20; +operation stats (ms/op):;avg op:;6.58;min op:;6.54;max op:;6.62; +operation info:;data length;64;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_512 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a ff ff 00 06 02 00 00 07 00 20 ff ff 00 01 00 32 00 01 +baseline measurements (ms):;106.00;105.00;105.00;106.00;111.00; +baseline stats (ms):;avg:;106.60;min:;105.00;max:;111.00; +operation raw measurements (ms):;2245.40;2236.40;2236.40;2242.40;2237.40; +operation stats (ms/op):;avg op:;44.79;min op:;44.73;max op:;44.91; +operation info:;data length;32;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_512 ALG_RSA_PKCS1 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a ff ff 00 06 02 00 00 04 00 20 ff ff 00 01 00 32 00 01 +baseline measurements (ms):;103.00;104.00;104.00;108.00;108.00; +baseline stats (ms):;avg:;105.40;min:;103.00;max:;108.00; +operation raw measurements (ms):;326.60;330.60;328.60;328.60;329.60; +operation stats (ms/op):;avg op:;6.58;min op:;6.53;max op:;6.61; +operation info:;data length;32;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_512 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f ff ff 00 06 02 00 00 07 00 20 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_512 ALG_RSA_PKCS1_OAEP Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f ff ff 00 06 02 00 00 04 00 20 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_736 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 ff ff 00 06 02 e0 00 07 00 2e ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_736 ALG_RSA_ISO14888 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 ff ff 00 06 02 e0 00 04 00 2e ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_736 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b ff ff 00 06 02 e0 00 07 00 2e ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_736 ALG_RSA_ISO9796 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b ff ff 00 06 02 e0 00 04 00 2e ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_736 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c ff ff 00 06 02 e0 00 07 00 5c ff ff 00 01 00 32 00 01 +baseline measurements (ms):;102.00;98.00;97.00;98.00;97.00; +baseline stats (ms):;avg:;98.40;min:;97.00;max:;102.00; +operation raw measurements (ms):;3397.60;3404.60;3404.60;3399.60;3399.60; +operation stats (ms/op):;avg op:;68.02;min op:;67.95;max op:;68.09; +operation info:;data length;92;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_736 ALG_RSA_NOPAD Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c ff ff 00 06 02 e0 00 04 00 5c ff ff 00 01 00 32 00 01 +baseline measurements (ms):;100.00;98.00;100.00;100.00;101.00; +baseline stats (ms):;avg:;100.25;min:;98.00;max:;101.00; +operation raw measurements (ms):;329.75;330.75;330.75;332.75;328.75; +operation stats (ms/op):;avg op:;6.61;min op:;6.58;max op:;6.66; +operation info:;data length;92;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_736 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a ff ff 00 06 02 e0 00 07 00 2e ff ff 00 01 00 32 00 01 +baseline measurements (ms):;111.00;110.00;109.00;110.00;110.00; +baseline stats (ms):;avg:;110.25;min:;109.00;max:;111.00; +operation raw measurements (ms):;3399.75;3400.75;3400.75;3403.75;3393.75; +operation stats (ms/op):;avg op:;68.00;min op:;67.88;max op:;68.08; +operation info:;data length;46;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_736 ALG_RSA_PKCS1 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a ff ff 00 06 02 e0 00 04 00 2e ff ff 00 01 00 32 00 01 +baseline measurements (ms):;111.00;111.00;110.00;110.00;109.00; +baseline stats (ms):;avg:;110.20;min:;109.00;max:;111.00; +operation raw measurements (ms):;329.80;330.80;329.80;329.80;330.80; +operation stats (ms/op):;avg op:;6.60;min op:;6.60;max op:;6.62; +operation info:;data length;46;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_736 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f ff ff 00 06 02 e0 00 07 00 2e ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_736 ALG_RSA_PKCS1_OAEP Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f ff ff 00 06 02 e0 00 04 00 2e ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_768 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 ff ff 00 06 03 00 00 07 00 30 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_768 ALG_RSA_ISO14888 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 ff ff 00 06 03 00 00 04 00 30 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_768 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b ff ff 00 06 03 00 00 07 00 30 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_768 ALG_RSA_ISO9796 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b ff ff 00 06 03 00 00 04 00 30 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_768 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c ff ff 00 06 03 00 00 07 00 60 ff ff 00 01 00 32 00 01 +baseline measurements (ms):;99.00;98.00;98.00;97.00;98.00; +baseline stats (ms):;avg:;98.25;min:;97.00;max:;99.00; +operation raw measurements (ms):;3446.75;3443.75;3446.75;3448.75;3452.75; +operation stats (ms/op):;avg op:;68.96;min op:;68.88;max op:;69.06; +operation info:;data length;96;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_768 ALG_RSA_NOPAD Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c ff ff 00 06 03 00 00 04 00 60 ff ff 00 01 00 32 00 01 +baseline measurements (ms):;99.00;98.00;98.00;98.00;97.00; +baseline stats (ms):;avg:;98.25;min:;97.00;max:;99.00; +operation raw measurements (ms):;329.75;329.75;330.75;330.75;329.75; +operation stats (ms/op):;avg op:;6.60;min op:;6.60;max op:;6.62; +operation info:;data length;96;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_768 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a ff ff 00 06 03 00 00 07 00 30 ff ff 00 01 00 32 00 01 +baseline measurements (ms):;107.00;108.00;106.00;106.00;107.00; +baseline stats (ms):;avg:;106.80;min:;106.00;max:;108.00; +operation raw measurements (ms):;3449.20;3448.20;3445.20;3438.20;3452.20; +operation stats (ms/op):;avg op:;68.93;min op:;68.76;max op:;69.04; +operation info:;data length;48;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_768 ALG_RSA_PKCS1 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a ff ff 00 06 03 00 00 04 00 30 ff ff 00 01 00 32 00 01 +baseline measurements (ms):;107.00;145.00;106.00;107.00;107.00; +baseline stats (ms):;avg:;114.40;min:;106.00;max:;145.00;;;CHECK +operation raw measurements (ms):;321.60;322.60;321.60;322.60;321.60; +operation stats (ms/op):;avg op:;6.44;min op:;6.43;max op:;6.45; +operation info:;data length;48;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_768 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f ff ff 00 06 03 00 00 07 00 30 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_768 ALG_RSA_PKCS1_OAEP Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f ff ff 00 06 03 00 00 04 00 30 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_896 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 ff ff 00 06 03 80 00 07 00 38 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_896 ALG_RSA_ISO14888 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 ff ff 00 06 03 80 00 04 00 38 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_896 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b ff ff 00 06 03 80 00 07 00 38 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_896 ALG_RSA_ISO9796 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b ff ff 00 06 03 80 00 04 00 38 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_896 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c ff ff 00 06 03 80 00 07 00 70 ff ff 00 01 00 32 00 01 +baseline measurements (ms):;98.00;99.00;97.00;99.00;98.00; +baseline stats (ms):;avg:;98.20;min:;97.00;max:;99.00; +operation raw measurements (ms):;4314.80;4318.80;4314.80;4316.80;4320.80; +operation stats (ms/op):;avg op:;86.34;min op:;86.30;max op:;86.42; +operation info:;data length;112;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_896 ALG_RSA_NOPAD Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c ff ff 00 06 03 80 00 04 00 70 ff ff 00 01 00 32 00 01 +baseline measurements (ms):;100.00;171.00;101.00;105.00;102.00; +baseline stats (ms):;avg:;115.80;min:;100.00;max:;171.00;;;CHECK +operation raw measurements (ms):;316.20;316.20;318.20;317.20;316.20; +operation stats (ms/op):;avg op:;6.34;min op:;6.32;max op:;6.36; +operation info:;data length;112;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_896 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a ff ff 00 06 03 80 00 07 00 38 ff ff 00 01 00 32 00 01 +baseline measurements (ms):;109.00;111.00;111.00;111.00;111.00; +baseline stats (ms):;avg:;111.00;min:;109.00;max:;111.00; +operation raw measurements (ms):;4309.00;4297.00;4306.00;4309.00;4317.00; +operation stats (ms/op):;avg op:;86.15;min op:;85.94;max op:;86.34; +operation info:;data length;56;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_896 ALG_RSA_PKCS1 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a ff ff 00 06 03 80 00 04 00 38 ff ff 00 01 00 32 00 01 +baseline measurements (ms):;207.00;111.00;109.00;107.00;111.00; +baseline stats (ms):;avg:;129.00;min:;107.00;max:;207.00;;;CHECK +operation raw measurements (ms):;311.00;314.00;312.00;313.00;312.00; +operation stats (ms/op):;avg op:;6.25;min op:;6.22;max op:;6.28; +operation info:;data length;56;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_896 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f ff ff 00 06 03 80 00 07 00 38 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_896 ALG_RSA_PKCS1_OAEP Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f ff ff 00 06 03 80 00 04 00 38 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1024 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 ff ff 00 06 04 00 00 07 00 40 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1024 ALG_RSA_ISO14888 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 ff ff 00 06 04 00 00 04 00 40 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1024 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b ff ff 00 06 04 00 00 07 00 40 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1024 ALG_RSA_ISO9796 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b ff ff 00 06 04 00 00 04 00 40 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1024 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c ff ff 00 06 04 00 00 07 00 80 ff ff 00 01 00 32 00 01 +baseline measurements (ms):;102.00;102.00;102.00;102.00;102.00; +baseline stats (ms):;avg:;102.00;min:;102.00;max:;102.00; +operation raw measurements (ms):;5331.00;5328.00;5339.00;5327.00;5339.00; +operation stats (ms/op):;avg op:;106.66;min op:;106.54;max op:;106.78; +operation info:;data length;128;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1024 ALG_RSA_NOPAD Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c ff ff 00 06 04 00 00 04 00 80 ff ff 00 01 00 32 00 01 +baseline measurements (ms):;100.00;102.00;101.00;102.00;101.00; +baseline stats (ms):;avg:;101.20;min:;100.00;max:;102.00; +operation raw measurements (ms):;331.80;331.80;332.80;332.80;333.80; +operation stats (ms/op):;avg op:;6.65;min op:;6.64;max op:;6.68; +operation info:;data length;128;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1024 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a ff ff 00 06 04 00 00 07 00 40 ff ff 00 01 00 32 00 01 +baseline measurements (ms):;109.00;111.00;112.00;109.00;111.00; +baseline stats (ms):;avg:;110.40;min:;109.00;max:;112.00; +operation raw measurements (ms):;5328.60;5335.60;5337.60;5325.60;5342.60; +operation stats (ms/op):;avg op:;106.68;min op:;106.51;max op:;106.85; +operation info:;data length;64;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1024 ALG_RSA_PKCS1 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a ff ff 00 06 04 00 00 04 00 40 ff ff 00 01 00 32 00 01 +baseline measurements (ms):;110.00;110.00;442.00;111.00;111.00; +baseline stats (ms):;avg:;176.80;min:;110.00;max:;442.00;;;CHECK +operation raw measurements (ms):;265.20;266.20;267.20;266.20;267.20; +operation stats (ms/op):;avg op:;5.33;min op:;5.30;max op:;5.34; +operation info:;data length;64;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1024 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f ff ff 00 06 04 00 00 07 00 40 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1024 ALG_RSA_PKCS1_OAEP Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f ff ff 00 06 04 00 00 04 00 40 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1280 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 ff ff 00 06 05 00 00 07 00 50 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1280 ALG_RSA_ISO14888 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 ff ff 00 06 05 00 00 04 00 50 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1280 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b ff ff 00 06 05 00 00 07 00 50 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1280 ALG_RSA_ISO9796 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b ff ff 00 06 05 00 00 04 00 50 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1280 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c ff ff 00 06 05 00 00 07 00 a0 ff ff 00 01 00 32 00 01 +baseline measurements (ms):;103.00;104.00;101.00;355.00;104.00; +baseline stats (ms):;avg:;153.40;min:;101.00;max:;355.00;;;CHECK +operation raw measurements (ms):;7805.60;7815.60;7836.60;7828.60;7808.60; +operation stats (ms/op):;avg op:;156.38;min op:;156.11;max op:;156.73; +operation info:;data length;160;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1280 ALG_RSA_NOPAD Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c ff ff 00 06 05 00 00 04 00 a0 ff ff 00 01 00 32 00 01 +baseline measurements (ms):;105.00;104.00;103.00;103.00;103.00; +baseline stats (ms):;avg:;103.60;min:;103.00;max:;105.00; +operation raw measurements (ms):;332.40;333.40;332.40;332.40;333.40; +operation stats (ms/op):;avg op:;6.66;min op:;6.65;max op:;6.67; +operation info:;data length;160;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1280 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a ff ff 00 06 05 00 00 07 00 50 ff ff 00 01 00 32 00 01 +baseline measurements (ms):;115.00;114.00;115.00;114.00;114.00; +baseline stats (ms):;avg:;114.40;min:;114.00;max:;115.00; +operation raw measurements (ms):;7860.60;7865.60;7859.60;7887.60;7882.60; +operation stats (ms/op):;avg op:;157.42;min op:;157.19;max op:;157.75; +operation info:;data length;80;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1280 ALG_RSA_PKCS1 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a ff ff 00 06 05 00 00 04 00 50 ff ff 00 01 00 32 00 01 +baseline measurements (ms):;116.00;114.00;115.00;114.00;470.00; +baseline stats (ms):;avg:;185.80;min:;114.00;max:;470.00;;;CHECK +operation raw measurements (ms):;263.20;262.20;262.20;263.20;262.20; +operation stats (ms/op):;avg op:;5.25;min op:;5.24;max op:;5.26; +operation info:;data length;80;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1280 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f ff ff 00 06 05 00 00 07 00 50 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1280 ALG_RSA_PKCS1_OAEP Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f ff ff 00 06 05 00 00 04 00 50 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1536 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 ff ff 00 06 06 00 00 07 00 60 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1536 ALG_RSA_ISO14888 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 ff ff 00 06 06 00 00 04 00 60 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1536 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b ff ff 00 06 06 00 00 07 00 60 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1536 ALG_RSA_ISO9796 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b ff ff 00 06 06 00 00 04 00 60 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1536 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c ff ff 00 06 06 00 00 07 00 c0 ff ff 00 01 00 32 00 01 +baseline measurements (ms):;106.00;105.00;105.00;105.00;106.00; +baseline stats (ms):;avg:;105.40;min:;105.00;max:;106.00; +operation raw measurements (ms):;11260.60;11265.60;11273.60;11273.60;11270.60; +operation stats (ms/op):;avg op:;225.38;min op:;225.21;max op:;225.47; +operation info:;data length;192;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1536 ALG_RSA_NOPAD Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c ff ff 00 06 06 00 00 04 00 c0 ff ff 00 01 00 32 00 01 +baseline measurements (ms):;108.00;105.00;105.00;106.00;106.00; +baseline stats (ms):;avg:;106.00;min:;105.00;max:;108.00; +operation raw measurements (ms):;333.00;332.00;329.00;332.00;332.00; +operation stats (ms/op):;avg op:;6.63;min op:;6.58;max op:;6.66; +operation info:;data length;192;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1536 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a ff ff 00 06 06 00 00 07 00 60 ff ff 00 01 00 32 00 01 +baseline measurements (ms):;118.00;118.00;117.00;117.00;117.00; +baseline stats (ms):;avg:;117.40;min:;117.00;max:;118.00; +operation raw measurements (ms):;11260.60;11269.60;11277.60;11253.60;11268.60; +operation stats (ms/op):;avg op:;225.32;min op:;225.07;max op:;225.55; +operation info:;data length;96;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1536 ALG_RSA_PKCS1 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a ff ff 00 06 06 00 00 04 00 60 ff ff 00 01 00 32 00 01 +baseline measurements (ms):;118.00;118.00;118.00;117.00;117.00; +baseline stats (ms):;avg:;117.60;min:;117.00;max:;118.00; +operation raw measurements (ms):;332.40;330.40;330.40;330.40;330.40; +operation stats (ms/op):;avg op:;6.62;min op:;6.61;max op:;6.65; +operation info:;data length;96;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1536 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f ff ff 00 06 06 00 00 07 00 60 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1536 ALG_RSA_PKCS1_OAEP Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f ff ff 00 06 06 00 00 04 00 60 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1984 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 ff ff 00 06 07 c0 00 07 00 7c ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1984 ALG_RSA_ISO14888 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 ff ff 00 06 07 c0 00 04 00 7c ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1984 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b ff ff 00 06 07 c0 00 07 00 7c ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1984 ALG_RSA_ISO9796 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b ff ff 00 06 07 c0 00 04 00 7c ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1984 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c ff ff 00 06 07 c0 00 07 00 f8 ff ff 00 01 00 32 00 01 +baseline measurements (ms):;108.00;107.00;103.00;105.00;104.00; +baseline stats (ms):;avg:;105.40;min:;103.00;max:;108.00; +operation raw measurements (ms):;20183.60;20130.60;20150.60;20163.60;20130.60; +operation stats (ms/op):;avg op:;403.04;min op:;402.61;max op:;403.67; +operation info:;data length;248;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1984 ALG_RSA_NOPAD Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c ff ff 00 06 07 c0 00 04 00 f8 ff ff 00 01 00 32 00 01 +baseline measurements (ms):;107.00;107.00;107.00;107.00;107.00; +baseline stats (ms):;avg:;107.00;min:;107.00;max:;107.00; +operation raw measurements (ms):;338.00;337.00;336.00;335.00;337.00; +operation stats (ms/op):;avg op:;6.73;min op:;6.70;max op:;6.76; +operation info:;data length;248;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1984 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a ff ff 00 06 07 c0 00 07 00 7c ff ff 00 01 00 32 00 01 +baseline measurements (ms):;123.00;119.00;120.00;120.00;121.00; +baseline stats (ms):;avg:;120.60;min:;119.00;max:;123.00; +operation raw measurements (ms):;20116.40;20159.40;20171.40;20153.40;20126.40; +operation stats (ms/op):;avg op:;402.91;min op:;402.33;max op:;403.43; +operation info:;data length;124;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1984 ALG_RSA_PKCS1 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a ff ff 00 06 07 c0 00 04 00 7c ff ff 00 01 00 32 00 01 +baseline measurements (ms):;121.00;122.00;121.00;122.00;121.00; +baseline stats (ms):;avg:;121.40;min:;121.00;max:;122.00; +operation raw measurements (ms):;336.60;338.60;336.60;336.60;337.60; +operation stats (ms/op):;avg op:;6.74;min op:;6.73;max op:;6.77; +operation info:;data length;124;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1984 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f ff ff 00 06 07 c0 00 07 00 7c ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1984 ALG_RSA_PKCS1_OAEP Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f ff ff 00 06 07 c0 00 04 00 7c ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_2048 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 ff ff 00 06 08 00 00 07 00 80 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_2048 ALG_RSA_ISO14888 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 ff ff 00 06 08 00 00 04 00 80 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_2048 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b ff ff 00 06 08 00 00 07 00 80 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_2048 ALG_RSA_ISO9796 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b ff ff 00 06 08 00 00 04 00 80 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_2048 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c ff ff 00 06 08 00 00 07 01 00 ff ff 00 01 00 32 00 01 +baseline measurements (ms):;109.00;109.00;108.00;109.00;109.00; +baseline stats (ms):;avg:;109.00;min:;108.00;max:;109.00; +operation raw measurements (ms):;22193.00;22191.00;22195.00;22245.00;22199.00; +operation stats (ms/op):;avg op:;444.09;min op:;443.82;max op:;444.90; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_2048 ALG_RSA_NOPAD Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c ff ff 00 06 08 00 00 04 01 00 ff ff 00 01 00 32 00 01 +baseline measurements (ms):;107.00;107.00;109.00;105.00;108.00; +baseline stats (ms):;avg:;107.20;min:;105.00;max:;109.00; +operation raw measurements (ms):;328.80;333.80;333.80;332.80;334.80; +operation stats (ms/op):;avg op:;6.66;min op:;6.58;max op:;6.70; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_2048 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a ff ff 00 06 08 00 00 07 00 80 ff ff 00 01 00 32 00 01 +baseline measurements (ms):;120.00;123.00;123.00;124.00;123.00; +baseline stats (ms):;avg:;123.25;min:;120.00;max:;124.00; +operation raw measurements (ms):;22180.75;22215.75;22196.75;22243.75;22206.75; +operation stats (ms/op):;avg op:;444.18;min op:;443.62;max op:;444.88; +operation info:;data length;128;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_2048 ALG_RSA_PKCS1 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a ff ff 00 06 08 00 00 04 00 80 ff ff 00 01 00 32 00 01 +baseline measurements (ms):;125.00;124.00;123.00;123.00;123.00; +baseline stats (ms):;avg:;123.60;min:;123.00;max:;125.00; +operation raw measurements (ms):;327.40;329.40;329.40;334.40;333.40; +operation stats (ms/op):;avg op:;6.62;min op:;6.55;max op:;6.69; +operation info:;data length;128;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_2048 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f ff ff 00 06 08 00 00 07 00 80 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_2048 ALG_RSA_PKCS1_OAEP Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f ff ff 00 06 08 00 00 04 00 80 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_3072 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 ff ff 00 06 0c 00 00 07 00 c0 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_3072 ALG_RSA_ISO14888 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 ff ff 00 06 0c 00 00 04 00 c0 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_3072 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b ff ff 00 06 0c 00 00 07 00 c0 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_3072 ALG_RSA_ISO9796 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b ff ff 00 06 0c 00 00 04 00 c0 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_3072 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c ff ff 00 06 0c 00 00 07 01 80 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_3072 ALG_RSA_NOPAD Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c ff ff 00 06 0c 00 00 04 01 80 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_3072 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a ff ff 00 06 0c 00 00 07 00 c0 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_3072 ALG_RSA_PKCS1 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a ff ff 00 06 0c 00 00 04 00 c0 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_3072 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f ff ff 00 06 0c 00 00 07 00 c0 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_3072 ALG_RSA_PKCS1_OAEP Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f ff ff 00 06 0c 00 00 04 00 c0 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_4096 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 ff ff 00 06 10 00 00 07 01 00 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_4096 ALG_RSA_ISO14888 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 ff ff 00 06 10 00 00 04 01 00 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_4096 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b ff ff 00 06 10 00 00 07 01 00 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_4096 ALG_RSA_ISO9796 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b ff ff 00 06 10 00 00 04 01 00 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_4096 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c ff ff 00 06 10 00 00 07 02 00 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_4096 ALG_RSA_NOPAD Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c ff ff 00 06 10 00 00 04 02 00 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_4096 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a ff ff 00 06 10 00 00 07 01 00 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_4096 ALG_RSA_PKCS1 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a ff ff 00 06 10 00 00 04 01 00 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_4096 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f ff ff 00 06 10 00 00 07 01 00 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_4096 ALG_RSA_PKCS1_OAEP Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f ff ff 00 06 10 00 00 04 01 00 ff ff 00 01 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_512 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 00 02 00 04 02 00 00 07 00 20 ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_512 ALG_RSA_ISO14888 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 00 02 00 04 02 00 00 04 00 20 ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_512 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b 00 02 00 04 02 00 00 07 00 20 ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_512 ALG_RSA_ISO9796 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b 00 02 00 04 02 00 00 04 00 20 ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_512 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c 00 02 00 04 02 00 00 07 00 40 ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_512 ALG_RSA_NOPAD Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c 00 02 00 04 02 00 00 04 00 40 ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_512 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a 00 02 00 04 02 00 00 07 00 20 ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_512 ALG_RSA_PKCS1 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a 00 02 00 04 02 00 00 04 00 20 ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_512 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f 00 02 00 04 02 00 00 07 00 20 ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_512 ALG_RSA_PKCS1_OAEP Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f 00 02 00 04 02 00 00 04 00 20 ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_736 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 00 02 00 04 02 e0 00 07 00 2e ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_736 ALG_RSA_ISO14888 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 00 02 00 04 02 e0 00 04 00 2e ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_736 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b 00 02 00 04 02 e0 00 07 00 2e ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_736 ALG_RSA_ISO9796 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b 00 02 00 04 02 e0 00 04 00 2e ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_736 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c 00 02 00 04 02 e0 00 07 00 5c ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_736 ALG_RSA_NOPAD Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c 00 02 00 04 02 e0 00 04 00 5c ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_736 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a 00 02 00 04 02 e0 00 07 00 2e ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_736 ALG_RSA_PKCS1 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a 00 02 00 04 02 e0 00 04 00 2e ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_736 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f 00 02 00 04 02 e0 00 07 00 2e ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_736 ALG_RSA_PKCS1_OAEP Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f 00 02 00 04 02 e0 00 04 00 2e ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_768 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 00 02 00 04 03 00 00 07 00 30 ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_768 ALG_RSA_ISO14888 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 00 02 00 04 03 00 00 04 00 30 ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_768 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b 00 02 00 04 03 00 00 07 00 30 ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_768 ALG_RSA_ISO9796 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b 00 02 00 04 03 00 00 04 00 30 ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_768 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c 00 02 00 04 03 00 00 07 00 60 ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_768 ALG_RSA_NOPAD Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c 00 02 00 04 03 00 00 04 00 60 ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_768 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a 00 02 00 04 03 00 00 07 00 30 ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_768 ALG_RSA_PKCS1 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a 00 02 00 04 03 00 00 04 00 30 ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_768 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f 00 02 00 04 03 00 00 07 00 30 ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_768 ALG_RSA_PKCS1_OAEP Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f 00 02 00 04 03 00 00 04 00 30 ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_896 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 00 02 00 04 03 80 00 07 00 38 ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_896 ALG_RSA_ISO14888 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 00 02 00 04 03 80 00 04 00 38 ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_896 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b 00 02 00 04 03 80 00 07 00 38 ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_896 ALG_RSA_ISO9796 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b 00 02 00 04 03 80 00 04 00 38 ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_896 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c 00 02 00 04 03 80 00 07 00 70 ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_896 ALG_RSA_NOPAD Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c 00 02 00 04 03 80 00 04 00 70 ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_896 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a 00 02 00 04 03 80 00 07 00 38 ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_896 ALG_RSA_PKCS1 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a 00 02 00 04 03 80 00 04 00 38 ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_896 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f 00 02 00 04 03 80 00 07 00 38 ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_896 ALG_RSA_PKCS1_OAEP Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f 00 02 00 04 03 80 00 04 00 38 ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1024 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 00 02 00 04 04 00 00 07 00 40 ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1024 ALG_RSA_ISO14888 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 00 02 00 04 04 00 00 04 00 40 ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1024 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b 00 02 00 04 04 00 00 07 00 40 ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1024 ALG_RSA_ISO9796 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b 00 02 00 04 04 00 00 04 00 40 ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1024 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c 00 02 00 04 04 00 00 07 00 80 ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1024 ALG_RSA_NOPAD Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c 00 02 00 04 04 00 00 04 00 80 ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1024 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a 00 02 00 04 04 00 00 07 00 40 ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1024 ALG_RSA_PKCS1 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a 00 02 00 04 04 00 00 04 00 40 ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1024 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f 00 02 00 04 04 00 00 07 00 40 ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1024 ALG_RSA_PKCS1_OAEP Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f 00 02 00 04 04 00 00 04 00 40 ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1280 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 00 02 00 04 05 00 00 07 00 50 ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1280 ALG_RSA_ISO14888 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 00 02 00 04 05 00 00 04 00 50 ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1280 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b 00 02 00 04 05 00 00 07 00 50 ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1280 ALG_RSA_ISO9796 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b 00 02 00 04 05 00 00 04 00 50 ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1280 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c 00 02 00 04 05 00 00 07 00 a0 ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1280 ALG_RSA_NOPAD Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c 00 02 00 04 05 00 00 04 00 a0 ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1280 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a 00 02 00 04 05 00 00 07 00 50 ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1280 ALG_RSA_PKCS1 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a 00 02 00 04 05 00 00 04 00 50 ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1280 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f 00 02 00 04 05 00 00 07 00 50 ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1280 ALG_RSA_PKCS1_OAEP Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f 00 02 00 04 05 00 00 04 00 50 ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1536 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 00 02 00 04 06 00 00 07 00 60 ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1536 ALG_RSA_ISO14888 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 00 02 00 04 06 00 00 04 00 60 ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1536 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b 00 02 00 04 06 00 00 07 00 60 ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1536 ALG_RSA_ISO9796 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b 00 02 00 04 06 00 00 04 00 60 ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1536 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c 00 02 00 04 06 00 00 07 00 c0 ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1536 ALG_RSA_NOPAD Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c 00 02 00 04 06 00 00 04 00 c0 ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1536 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a 00 02 00 04 06 00 00 07 00 60 ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1536 ALG_RSA_PKCS1 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a 00 02 00 04 06 00 00 04 00 60 ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1536 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f 00 02 00 04 06 00 00 07 00 60 ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1536 ALG_RSA_PKCS1_OAEP Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f 00 02 00 04 06 00 00 04 00 60 ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1984 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 00 02 00 04 07 c0 00 07 00 7c ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1984 ALG_RSA_ISO14888 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 00 02 00 04 07 c0 00 04 00 7c ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1984 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b 00 02 00 04 07 c0 00 07 00 7c ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1984 ALG_RSA_ISO9796 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b 00 02 00 04 07 c0 00 04 00 7c ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1984 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c 00 02 00 04 07 c0 00 07 00 f8 ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1984 ALG_RSA_NOPAD Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c 00 02 00 04 07 c0 00 04 00 f8 ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1984 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a 00 02 00 04 07 c0 00 07 00 7c ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1984 ALG_RSA_PKCS1 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a 00 02 00 04 07 c0 00 04 00 7c ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1984 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f 00 02 00 04 07 c0 00 07 00 7c ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1984 ALG_RSA_PKCS1_OAEP Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f 00 02 00 04 07 c0 00 04 00 7c ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_2048 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 00 02 00 04 08 00 00 07 00 80 ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_2048 ALG_RSA_ISO14888 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 00 02 00 04 08 00 00 04 00 80 ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_2048 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b 00 02 00 04 08 00 00 07 00 80 ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_2048 ALG_RSA_ISO9796 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b 00 02 00 04 08 00 00 04 00 80 ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_2048 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c 00 02 00 04 08 00 00 07 01 00 ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_2048 ALG_RSA_NOPAD Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c 00 02 00 04 08 00 00 04 01 00 ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_2048 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a 00 02 00 04 08 00 00 07 00 80 ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_2048 ALG_RSA_PKCS1 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a 00 02 00 04 08 00 00 04 00 80 ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_2048 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f 00 02 00 04 08 00 00 07 00 80 ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_2048 ALG_RSA_PKCS1_OAEP Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f 00 02 00 04 08 00 00 04 00 80 ff ff 00 02 00 32 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_3072 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 00 02 00 04 0c 00 00 07 00 c0 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_3072 ALG_RSA_ISO14888 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 00 02 00 04 0c 00 00 04 00 c0 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_3072 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b 00 02 00 04 0c 00 00 07 00 c0 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_3072 ALG_RSA_ISO9796 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b 00 02 00 04 0c 00 00 04 00 c0 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_3072 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c 00 02 00 04 0c 00 00 07 01 80 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_3072 ALG_RSA_NOPAD Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c 00 02 00 04 0c 00 00 04 01 80 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_3072 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a 00 02 00 04 0c 00 00 07 00 c0 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_3072 ALG_RSA_PKCS1 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a 00 02 00 04 0c 00 00 04 00 c0 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_3072 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f 00 02 00 04 0c 00 00 07 00 c0 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_3072 ALG_RSA_PKCS1_OAEP Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f 00 02 00 04 0c 00 00 04 00 c0 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_4096 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 00 02 00 04 10 00 00 07 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_4096 ALG_RSA_ISO14888 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 00 02 00 04 10 00 00 04 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_4096 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b 00 02 00 04 10 00 00 07 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_4096 ALG_RSA_ISO9796 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b 00 02 00 04 10 00 00 04 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_4096 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c 00 02 00 04 10 00 00 07 02 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_4096 ALG_RSA_NOPAD Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c 00 02 00 04 10 00 00 04 02 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_4096 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a 00 02 00 04 10 00 00 07 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_4096 ALG_RSA_PKCS1 Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a 00 02 00 04 10 00 00 04 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_4096 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f 00 02 00 04 10 00 00 07 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_4096 ALG_RSA_PKCS1_OAEP Cipher_init() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f 00 02 00 04 10 00 00 04 01 00 ff ff 00 02 00 32 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - END + + +SIGNATURE + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_MAC_128_NOPAD Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 12 ff ff 00 0f 00 80 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;97.00;98.00;97.00;97.00;97.00; +baseline stats (ms):;avg:;97.20;min:;97.00;max:;98.00; +operation raw measurements (ms):;488.80;489.80;489.80;489.80;489.80; +operation stats (ms/op):;avg op:;9.79;min op:;9.78;max op:;9.80; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_MAC_128_NOPAD Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 12 ff ff 00 0f 00 80 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;95.00;95.00;96.00;97.00;96.00; +baseline stats (ms):;avg:;95.80;min:;95.00;max:;97.00; +operation raw measurements (ms):;489.20;487.20;489.20;491.20;490.20; +operation stats (ms/op):;avg op:;9.79;min op:;9.74;max op:;9.82; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_MAC_128_NOPAD Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 12 ff ff 00 0f 00 80 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;95.00;95.00;98.00;95.00;95.00; +baseline stats (ms):;avg:;95.60;min:;95.00;max:;98.00; +operation raw measurements (ms):;424.40;434.40;433.40;433.40;433.40; +operation stats (ms/op):;avg op:;8.64;min op:;8.49;max op:;8.69; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_MAC_128_NOPAD Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 12 ff ff 00 0f 00 c0 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;100.00;98.00;94.00;95.00;97.00; +baseline stats (ms):;avg:;96.80;min:;94.00;max:;100.00; +operation raw measurements (ms):;569.20;568.20;568.20;569.20;569.20; +operation stats (ms/op):;avg op:;11.38;min op:;11.36;max op:;11.38; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_MAC_128_NOPAD Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 12 ff ff 00 0f 00 c0 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;97.00;97.00;98.00;97.00;95.00; +baseline stats (ms):;avg:;97.25;min:;95.00;max:;98.00; +operation raw measurements (ms):;564.75;565.75;564.75;564.75;564.75; +operation stats (ms/op):;avg op:;11.30;min op:;11.30;max op:;11.32; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_MAC_128_NOPAD Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 12 ff ff 00 0f 00 c0 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;93.00;94.00;94.00;93.00;93.00; +baseline stats (ms):;avg:;93.40;min:;93.00;max:;94.00; +operation raw measurements (ms):;317.60;325.60;329.60;330.60;328.60; +operation stats (ms/op):;avg op:;6.53;min op:;6.35;max op:;6.61; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_MAC_128_NOPAD Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 12 ff ff 00 0f 01 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;98.00;97.00;98.00;99.00;95.00; +baseline stats (ms):;avg:;98.00;min:;95.00;max:;99.00; +operation raw measurements (ms):;636.00;634.00;637.00;634.00;637.00; +operation stats (ms/op):;avg op:;12.71;min op:;12.68;max op:;12.74; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_MAC_128_NOPAD Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 12 ff ff 00 0f 01 00 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;100.00;100.00;98.00;95.00;97.00; +baseline stats (ms):;avg:;98.00;min:;95.00;max:;100.00; +operation raw measurements (ms):;637.00;638.00;634.00;637.00;638.00; +operation stats (ms/op):;avg op:;12.74;min op:;12.68;max op:;12.76; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_MAC_128_NOPAD Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 12 ff ff 00 0f 01 00 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;99.00;99.00;98.00;99.00;99.00; +baseline stats (ms):;avg:;99.00;min:;98.00;max:;99.00; +operation raw measurements (ms):;319.00;324.00;324.00;323.00;323.00; +operation stats (ms/op):;avg op:;6.45;min op:;6.38;max op:;6.48; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_ISO9797_1_M2_ALG3 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 13 ff ff 00 03 00 80 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_ISO9797_1_M2_ALG3 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 13 ff ff 00 03 00 80 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_ISO9797_1_M2_ALG3 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 13 ff ff 00 03 00 80 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC4_ISO9797_M1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 03 ff ff 00 03 00 40 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC4_ISO9797_M1 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 03 ff ff 00 03 00 40 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC4_ISO9797_M1 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 03 ff ff 00 03 00 40 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_ISO9797_M1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 03 ff ff 00 03 00 80 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_ISO9797_M1 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 03 ff ff 00 03 00 80 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_ISO9797_M1 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 03 ff ff 00 03 00 80 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC4_ISO9797_M1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 03 ff ff 00 03 00 c0 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC4_ISO9797_M1 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 03 ff ff 00 03 00 c0 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC4_ISO9797_M1 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 03 ff ff 00 03 00 c0 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC4_ISO9797_M2 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 05 ff ff 00 03 00 40 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC4_ISO9797_M2 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 05 ff ff 00 03 00 40 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC4_ISO9797_M2 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 05 ff ff 00 03 00 40 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_ISO9797_M2 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 05 ff ff 00 03 00 80 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_ISO9797_M2 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 05 ff ff 00 03 00 80 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_ISO9797_M2 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 05 ff ff 00 03 00 80 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC4_ISO9797_M2 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 05 ff ff 00 03 00 c0 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC4_ISO9797_M2 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 05 ff ff 00 03 00 c0 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC4_ISO9797_M2 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 05 ff ff 00 03 00 c0 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC4_NOPAD Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 01 ff ff 00 03 00 40 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC4_NOPAD Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 01 ff ff 00 03 00 40 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC4_NOPAD Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 01 ff ff 00 03 00 40 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_NOPAD Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 01 ff ff 00 03 00 80 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_NOPAD Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 01 ff ff 00 03 00 80 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_NOPAD Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 01 ff ff 00 03 00 80 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC4_NOPAD Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 01 ff ff 00 03 00 c0 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC4_NOPAD Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 01 ff ff 00 03 00 c0 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC4_NOPAD Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 01 ff ff 00 03 00 c0 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC4_PKCS5 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 07 ff ff 00 03 00 40 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC4_PKCS5 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 07 ff ff 00 03 00 40 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC4_PKCS5 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 07 ff ff 00 03 00 40 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_PKCS5 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 07 ff ff 00 03 00 80 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_PKCS5 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 07 ff ff 00 03 00 80 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_PKCS5 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 07 ff ff 00 03 00 80 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC4_PKCS5 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 07 ff ff 00 03 00 c0 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC4_PKCS5 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 07 ff ff 00 03 00 c0 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC4_PKCS5 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 07 ff ff 00 03 00 c0 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_ISO9797_1_M2_ALG3 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 14 ff ff 00 03 00 80 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;115.00;116.00;115.00;116.00;115.00; +baseline stats (ms):;avg:;115.40;min:;115.00;max:;116.00; +operation raw measurements (ms):;1393.60;1392.60;1392.60;1391.60;1391.60; +operation stats (ms/op):;avg op:;27.85;min op:;27.83;max op:;27.87; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_ISO9797_1_M2_ALG3 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 14 ff ff 00 03 00 80 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;113.00;116.00;115.00;115.00;115.00; +baseline stats (ms):;avg:;115.25;min:;113.00;max:;116.00; +operation raw measurements (ms):;1391.75;1395.75;1395.75;1394.75;1394.75; +operation stats (ms/op):;avg op:;27.89;min op:;27.84;max op:;27.92; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_ISO9797_1_M2_ALG3 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 14 ff ff 00 03 00 80 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;111.00;111.00;115.00;115.00;116.00; +baseline stats (ms):;avg:;113.60;min:;111.00;max:;116.00; +operation raw measurements (ms):;315.40;324.40;325.40;324.40;325.40; +operation stats (ms/op):;avg op:;6.46;min op:;6.31;max op:;6.51; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC8_ISO9797_M1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 04 ff ff 00 03 00 40 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;112.00;111.00;112.00;114.00;113.00; +baseline stats (ms):;avg:;112.40;min:;111.00;max:;114.00; +operation raw measurements (ms):;1335.60;1337.60;1333.60;1332.60;1335.60; +operation stats (ms/op):;avg op:;26.70;min op:;26.65;max op:;26.75; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC8_ISO9797_M1 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 04 ff ff 00 03 00 40 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;113.00;115.00;113.00;114.00;113.00; +baseline stats (ms):;avg:;113.60;min:;113.00;max:;115.00; +operation raw measurements (ms):;1337.40;1332.40;1335.40;1336.40;1335.40; +operation stats (ms/op):;avg op:;26.71;min op:;26.65;max op:;26.75; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC8_ISO9797_M1 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 04 ff ff 00 03 00 40 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;114.00;114.00;114.00;111.00;110.00; +baseline stats (ms):;avg:;113.25;min:;110.00;max:;114.00; +operation raw measurements (ms):;419.75;432.75;428.75;431.75;432.75; +operation stats (ms/op):;avg op:;8.58;min op:;8.40;max op:;8.66; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_ISO9797_M1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 04 ff ff 00 03 00 80 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;115.00;115.00;113.00;114.00;115.00; +baseline stats (ms):;avg:;114.75;min:;113.00;max:;115.00; +operation raw measurements (ms):;1363.25;1361.25;1363.25;1364.25;1365.25; +operation stats (ms/op):;avg op:;27.27;min op:;27.23;max op:;27.31; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_ISO9797_M1 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 04 ff ff 00 03 00 80 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;112.00;112.00;114.00;114.00;116.00; +baseline stats (ms):;avg:;113.60;min:;112.00;max:;116.00; +operation raw measurements (ms):;1362.40;1365.40;1362.40;1365.40;1366.40; +operation stats (ms/op):;avg op:;27.29;min op:;27.25;max op:;27.33; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_ISO9797_M1 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 04 ff ff 00 03 00 80 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;110.00;113.00;111.00;114.00;117.00; +baseline stats (ms):;avg:;113.00;min:;110.00;max:;117.00; +operation raw measurements (ms):;316.00;322.00;322.00;323.00;325.00; +operation stats (ms/op):;avg op:;6.43;min op:;6.32;max op:;6.50; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC8_ISO9797_M1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 04 ff ff 00 03 00 c0 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;159.00;161.00;161.00;157.00;159.00; +baseline stats (ms):;avg:;159.40;min:;157.00;max:;161.00; +operation raw measurements (ms):;3613.60;3615.60;3615.60;3614.60;3616.60; +operation stats (ms/op):;avg op:;72.30;min op:;72.27;max op:;72.33; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC8_ISO9797_M1 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 04 ff ff 00 03 00 c0 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;157.00;156.00;157.00;156.00;156.00; +baseline stats (ms):;avg:;156.40;min:;156.00;max:;157.00; +operation raw measurements (ms):;3618.60;3619.60;3619.60;3620.60;3621.60; +operation stats (ms/op):;avg op:;72.40;min op:;72.37;max op:;72.43; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC8_ISO9797_M1 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 04 ff ff 00 03 00 c0 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;156.00;156.00;158.00;160.00;159.00; +baseline stats (ms):;avg:;157.80;min:;156.00;max:;160.00; +operation raw measurements (ms):;316.20;322.20;325.20;326.20;326.20; +operation stats (ms/op):;avg op:;6.46;min op:;6.32;max op:;6.52; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC8_ISO9797_M2 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 06 ff ff 00 03 00 40 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;114.00;115.00;113.00;114.00;115.00; +baseline stats (ms):;avg:;114.20;min:;113.00;max:;115.00; +operation raw measurements (ms):;1372.80;1372.80;1372.80;1374.80;1372.80; +operation stats (ms/op):;avg op:;27.46;min op:;27.46;max op:;27.50; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC8_ISO9797_M2 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 06 ff ff 00 03 00 40 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;115.00;115.00;116.00;116.00;113.00; +baseline stats (ms):;avg:;115.50;min:;113.00;max:;116.00; +operation raw measurements (ms):;1372.50;1374.50;1372.50;1373.50;1374.50; +operation stats (ms/op):;avg op:;27.47;min op:;27.45;max op:;27.49; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC8_ISO9797_M2 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 06 ff ff 00 03 00 40 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;115.00;114.00;114.00;112.00;113.00; +baseline stats (ms):;avg:;113.60;min:;112.00;max:;115.00; +operation raw measurements (ms):;313.40;325.40;321.40;325.40;322.40; +operation stats (ms/op):;avg op:;6.43;min op:;6.27;max op:;6.51; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_ISO9797_M2 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 06 ff ff 00 03 00 80 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;114.00;115.00;111.00;114.00;114.00; +baseline stats (ms):;avg:;114.25;min:;111.00;max:;115.00; +operation raw measurements (ms):;1403.75;1405.75;1405.75;1406.75;1402.75; +operation stats (ms/op):;avg op:;28.10;min op:;28.06;max op:;28.14; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_ISO9797_M2 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 06 ff ff 00 03 00 80 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;114.00;115.00;115.00;115.00;117.00; +baseline stats (ms):;avg:;115.20;min:;114.00;max:;117.00; +operation raw measurements (ms):;1404.80;1404.80;1405.80;1405.80;1405.80; +operation stats (ms/op):;avg op:;28.11;min op:;28.10;max op:;28.12; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_ISO9797_M2 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 06 ff ff 00 03 00 80 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;114.00;116.00;115.00;115.00;118.00; +baseline stats (ms):;avg:;115.60;min:;114.00;max:;118.00; +operation raw measurements (ms):;420.40;431.40;431.40;431.40;435.40; +operation stats (ms/op):;avg op:;8.60;min op:;8.41;max op:;8.71; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC8_ISO9797_M2 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 06 ff ff 00 03 00 c0 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;161.00;162.00;159.00;161.00;162.00; +baseline stats (ms):;avg:;161.50;min:;159.00;max:;162.00; +operation raw measurements (ms):;3725.50;3727.50;3726.50;3726.50;3727.50; +operation stats (ms/op):;avg op:;74.53;min op:;74.51;max op:;74.55; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC8_ISO9797_M2 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 06 ff ff 00 03 00 c0 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;162.00;159.00;161.00;163.00;162.00; +baseline stats (ms):;avg:;162.00;min:;159.00;max:;163.00; +operation raw measurements (ms):;3726.00;3725.00;3725.00;3728.00;3728.00; +operation stats (ms/op):;avg op:;74.53;min op:;74.50;max op:;74.56; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC8_ISO9797_M2 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 06 ff ff 00 03 00 c0 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;161.00;163.00;161.00;161.00;163.00; +baseline stats (ms):;avg:;161.80;min:;161.00;max:;163.00; +operation raw measurements (ms):;312.20;324.20;323.20;324.20;322.20; +operation stats (ms/op):;avg op:;6.42;min op:;6.24;max op:;6.48; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC8_NOPAD Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 02 ff ff 00 03 00 40 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;114.00;116.00;114.00;113.00;129.00; +baseline stats (ms):;avg:;117.20;min:;113.00;max:;129.00;;;CHECK +operation raw measurements (ms):;1329.80;1330.80;1329.80;1330.80;1334.80; +operation stats (ms/op):;avg op:;26.62;min op:;26.60;max op:;26.70; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC8_NOPAD Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 02 ff ff 00 03 00 40 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;113.00;113.00;116.00;113.00;114.00; +baseline stats (ms):;avg:;113.80;min:;113.00;max:;116.00; +operation raw measurements (ms):;1334.20;1335.20;1336.20;1332.20;1335.20; +operation stats (ms/op):;avg op:;26.69;min op:;26.64;max op:;26.72; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC8_NOPAD Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 02 ff ff 00 03 00 40 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;114.00;115.00;114.00;114.00;112.00; +baseline stats (ms):;avg:;114.25;min:;112.00;max:;115.00; +operation raw measurements (ms):;416.75;430.75;431.75;431.75;431.75; +operation stats (ms/op):;avg op:;8.57;min op:;8.34;max op:;8.64; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_NOPAD Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 02 ff ff 00 03 00 80 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;114.00;115.00;115.00;114.00;114.00; +baseline stats (ms):;avg:;114.40;min:;114.00;max:;115.00; +operation raw measurements (ms):;1362.60;1363.60;1361.60;1361.60;1363.60; +operation stats (ms/op):;avg op:;27.25;min op:;27.23;max op:;27.27; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_NOPAD Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 02 ff ff 00 03 00 80 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;115.00;115.00;115.00;115.00;113.00; +baseline stats (ms):;avg:;115.00;min:;113.00;max:;115.00; +operation raw measurements (ms):;1361.00;1364.00;1365.00;1364.00;1365.00; +operation stats (ms/op):;avg op:;27.28;min op:;27.22;max op:;27.30; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_NOPAD Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 02 ff ff 00 03 00 80 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;115.00;113.00;118.00;115.00;114.00; +baseline stats (ms):;avg:;115.00;min:;113.00;max:;118.00; +operation raw measurements (ms):;314.00;324.00;322.00;322.00;323.00; +operation stats (ms/op):;avg op:;6.42;min op:;6.28;max op:;6.48; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC8_NOPAD Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 02 ff ff 00 03 00 c0 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;159.00;159.00;159.00;160.00;159.00; +baseline stats (ms):;avg:;159.20;min:;159.00;max:;160.00; +operation raw measurements (ms):;3612.80;3615.80;3614.80;3616.80;3617.80; +operation stats (ms/op):;avg op:;72.31;min op:;72.26;max op:;72.36; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC8_NOPAD Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 02 ff ff 00 03 00 c0 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;159.00;160.00;160.00;160.00;157.00; +baseline stats (ms):;avg:;159.75;min:;157.00;max:;160.00; +operation raw measurements (ms):;3615.25;3619.25;3617.25;3618.25;3619.25; +operation stats (ms/op):;avg op:;72.36;min op:;72.31;max op:;72.39; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC8_NOPAD Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 02 ff ff 00 03 00 c0 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;159.00;159.00;159.00;160.00;159.00; +baseline stats (ms):;avg:;159.20;min:;159.00;max:;160.00; +operation raw measurements (ms):;313.80;324.80;324.80;323.80;323.80; +operation stats (ms/op):;avg op:;6.44;min op:;6.28;max op:;6.50; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC8_PKCS5 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 08 ff ff 00 03 00 40 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC8_PKCS5 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 08 ff ff 00 03 00 40 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC8_PKCS5 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 08 ff ff 00 03 00 40 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_PKCS5 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 08 ff ff 00 03 00 80 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_PKCS5 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 08 ff ff 00 03 00 80 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_PKCS5 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 08 ff ff 00 03 00 80 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC8_PKCS5 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 08 ff ff 00 03 00 c0 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC8_PKCS5 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 08 ff ff 00 03 00 c0 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC8_PKCS5 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 08 ff ff 00 03 00 c0 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_F2M KeyBuilder_LENGTH_EC_F2M_113 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 04 00 0a 00 71 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_F2M KeyBuilder_LENGTH_EC_F2M_113 Signature_ALG_ECDSA_SHA Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 04 00 0a 00 71 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_F2M KeyBuilder_LENGTH_EC_F2M_113 Signature_ALG_ECDSA_SHA Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 04 00 0a 00 71 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_F2M KeyBuilder_LENGTH_EC_F2M_131 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 04 00 0a 00 83 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_F2M KeyBuilder_LENGTH_EC_F2M_131 Signature_ALG_ECDSA_SHA Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 04 00 0a 00 83 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_F2M KeyBuilder_LENGTH_EC_F2M_131 Signature_ALG_ECDSA_SHA Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 04 00 0a 00 83 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_F2M KeyBuilder_LENGTH_EC_F2M_163 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 04 00 0a 00 a3 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_F2M KeyBuilder_LENGTH_EC_F2M_163 Signature_ALG_ECDSA_SHA Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 04 00 0a 00 a3 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_F2M KeyBuilder_LENGTH_EC_F2M_163 Signature_ALG_ECDSA_SHA Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 04 00 0a 00 a3 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_F2M KeyBuilder_LENGTH_EC_F2M_193 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 04 00 0a 00 c1 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_F2M KeyBuilder_LENGTH_EC_F2M_193 Signature_ALG_ECDSA_SHA Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 04 00 0a 00 c1 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_F2M KeyBuilder_LENGTH_EC_F2M_193 Signature_ALG_ECDSA_SHA Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 04 00 0a 00 c1 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_112 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 05 00 0c 00 70 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_112 Signature_ALG_ECDSA_SHA Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 05 00 0c 00 70 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_112 Signature_ALG_ECDSA_SHA Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 05 00 0c 00 70 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_128 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 05 00 0c 00 80 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_128 Signature_ALG_ECDSA_SHA Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 05 00 0c 00 80 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_128 Signature_ALG_ECDSA_SHA Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 05 00 0c 00 80 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_160 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 05 00 0c 00 a0 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;168.00;166.00;167.00;167.00;166.00; +baseline stats (ms):;avg:;166.80;min:;166.00;max:;168.00; +operation raw measurements (ms):;3613.20;3614.20;3626.20;3625.20;3618.20; +operation stats (ms/op):;avg op:;72.39;min op:;72.26;max op:;72.52; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_160 Signature_ALG_ECDSA_SHA Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 05 00 0c 00 a0 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;168.00;168.00;165.00;168.00;168.00; +baseline stats (ms):;avg:;168.00;min:;165.00;max:;168.00; +operation raw measurements (ms):;5705.00;5625.00;5665.00;5679.00;5698.00; +operation stats (ms/op):;avg op:;113.49;min op:;112.50;max op:;114.10; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_160 Signature_ALG_ECDSA_SHA Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 05 00 0c 00 a0 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;164.00;169.00;167.00;168.00;168.00; +baseline stats (ms):;avg:;168.00;min:;164.00;max:;169.00; +operation raw measurements (ms):;572.00;578.00;580.00;582.00;579.00; +operation stats (ms/op):;avg op:;11.56;min op:;11.44;max op:;11.64; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_192 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 05 00 0c 00 c0 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;182.00;182.00;180.00;178.00;179.00; +baseline stats (ms):;avg:;180.20;min:;178.00;max:;182.00; +operation raw measurements (ms):;4327.80;4341.80;4342.80;4344.80;4341.80; +operation stats (ms/op):;avg op:;86.80;min op:;86.56;max op:;86.90; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_192 Signature_ALG_ECDSA_SHA Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 05 00 0c 00 c0 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;179.00;180.00;177.00;180.00;182.00; +baseline stats (ms):;avg:;180.25;min:;177.00;max:;182.00; +operation raw measurements (ms):;7019.75;7046.75;7097.75;7102.75;7062.75; +operation stats (ms/op):;avg op:;141.32;min op:;140.40;max op:;142.06; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_192 Signature_ALG_ECDSA_SHA Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 05 00 0c 00 c0 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;188.00;182.00;179.00;179.00;181.00; +baseline stats (ms):;avg:;181.80;min:;179.00;max:;188.00; +operation raw measurements (ms):;475.20;482.20;480.20;480.20;479.20; +operation stats (ms/op):;avg op:;9.59;min op:;9.50;max op:;9.64; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_224 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 05 00 0c 00 e0 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;208.00;192.00;193.00;193.00;193.00; +baseline stats (ms):;avg:;195.80;min:;192.00;max:;208.00;;;CHECK +operation raw measurements (ms):;4975.20;4977.20;4979.20;4974.20;4974.20; +operation stats (ms/op):;avg op:;99.52;min op:;99.48;max op:;99.58; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_224 Signature_ALG_ECDSA_SHA Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 05 00 0c 00 e0 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;196.00;193.00;190.00;193.00;193.00; +baseline stats (ms):;avg:;193.75;min:;190.00;max:;196.00; +operation raw measurements (ms):;8232.25;8178.25;8161.25;8216.25;8234.25; +operation stats (ms/op):;avg op:;164.09;min op:;163.23;max op:;164.69; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_224 Signature_ALG_ECDSA_SHA Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 05 00 0c 00 e0 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;194.00;197.00;192.00;193.00;193.00; +baseline stats (ms):;avg:;193.80;min:;192.00;max:;197.00; +operation raw measurements (ms):;497.20;508.20;510.20;511.20;509.20; +operation stats (ms/op):;avg op:;10.14;min op:;9.94;max op:;10.22; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_256 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 05 00 0c 01 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;214.00;215.00;213.00;213.00;215.00; +baseline stats (ms):;avg:;214.00;min:;213.00;max:;215.00; +operation raw measurements (ms):;5980.00;5980.00;5987.00;5986.00;5984.00; +operation stats (ms/op):;avg op:;119.67;min op:;119.60;max op:;119.74; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_256 Signature_ALG_ECDSA_SHA Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 05 00 0c 01 00 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;216.00;214.00;212.00;211.00;212.00; +baseline stats (ms):;avg:;213.00;min:;211.00;max:;216.00; +operation raw measurements (ms):;10143.00;10154.00;10117.00;10168.00;10151.00; +operation stats (ms/op):;avg op:;202.93;min op:;202.34;max op:;203.36; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_256 Signature_ALG_ECDSA_SHA Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 05 00 0c 01 00 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;215.00;211.00;211.00;216.00;212.00; +baseline stats (ms):;avg:;213.00;min:;211.00;max:;216.00; +operation raw measurements (ms):;520.00;529.00;530.00;529.00;529.00; +operation stats (ms/op):;avg op:;10.55;min op:;10.40;max op:;10.60; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_384 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 05 00 0c 01 80 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;336.00;333.00;333.00;337.00;334.00; +baseline stats (ms):;avg:;334.60;min:;333.00;max:;337.00; +operation raw measurements (ms):;12148.40;12154.40;12157.40;12154.40;12139.40; +operation stats (ms/op):;avg op:;243.02;min op:;242.79;max op:;243.15; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_384 Signature_ALG_ECDSA_SHA Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 05 00 0c 01 80 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;335.00;338.00;333.00;334.00;338.00; +baseline stats (ms):;avg:;335.60;min:;333.00;max:;338.00; +operation raw measurements (ms):;21647.40;21813.40;21764.40;21732.40;21850.40; +operation stats (ms/op):;avg op:;435.23;min op:;432.95;max op:;437.01; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_384 Signature_ALG_ECDSA_SHA Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 05 00 0c 01 80 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;337.00;337.00;334.00;335.00;338.00; +baseline stats (ms):;avg:;336.20;min:;334.00;max:;338.00; +operation raw measurements (ms):;625.80;615.80;616.80;615.80;614.80; +operation stats (ms/op):;avg op:;12.36;min op:;12.30;max op:;12.52; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_521 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 05 00 0c 02 09 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;581.00;578.00;579.00;582.00;579.00; +baseline stats (ms):;avg:;579.80;min:;578.00;max:;582.00; +operation raw measurements (ms):;24317.20;24326.20;24317.20;24321.20;24322.20; +operation stats (ms/op):;avg op:;486.42;min op:;486.34;max op:;486.52; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_521 Signature_ALG_ECDSA_SHA Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 05 00 0c 02 09 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;576.00;574.00;574.00;576.00;575.00; +baseline stats (ms):;avg:;575.00;min:;574.00;max:;576.00; +operation raw measurements (ms):;45228.00;45345.00;45486.00;45428.00;45411.00; +operation stats (ms/op):;avg op:;907.59;min op:;904.56;max op:;909.72; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_521 Signature_ALG_ECDSA_SHA Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 05 00 0c 02 09 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;581.00;579.00;582.00;580.00;579.00; +baseline stats (ms):;avg:;580.20;min:;579.00;max:;582.00; +operation raw measurements (ms):;710.80;716.80;715.80;716.80;716.80; +operation stats (ms/op):;avg op:;14.31;min op:;14.22;max op:;14.34; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_DSA LENGTH_DSA_512 ALG_DSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0e 00 03 00 08 02 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_DSA LENGTH_DSA_512 ALG_DSA_SHA Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0e 00 03 00 08 02 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_DSA LENGTH_DSA_512 ALG_DSA_SHA Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0e 00 03 00 08 02 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_DSA LENGTH_DSA_768 ALG_DSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0e 00 03 00 08 03 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_DSA LENGTH_DSA_768 ALG_DSA_SHA Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0e 00 03 00 08 03 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_DSA LENGTH_DSA_768 ALG_DSA_SHA Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0e 00 03 00 08 03 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_DSA LENGTH_DSA_1024 ALG_DSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0e 00 03 00 08 04 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_DSA LENGTH_DSA_1024 ALG_DSA_SHA Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0e 00 03 00 08 04 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_DSA LENGTH_DSA_1024 ALG_DSA_SHA Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0e 00 03 00 08 04 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 02 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_MD5_PKCS1 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 02 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_MD5_PKCS1 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 02 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 02 e0 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_MD5_PKCS1 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 02 e0 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_MD5_PKCS1 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 02 e0 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 03 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_MD5_PKCS1 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 03 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_MD5_PKCS1 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 03 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 03 80 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_MD5_PKCS1 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 03 80 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_MD5_PKCS1 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 03 80 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 04 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_MD5_PKCS1 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 04 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_MD5_PKCS1 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 04 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 05 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_MD5_PKCS1 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 05 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_MD5_PKCS1 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 05 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 06 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_MD5_PKCS1 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 06 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_MD5_PKCS1 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 06 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 07 c0 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_MD5_PKCS1 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 07 c0 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_MD5_PKCS1 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 07 c0 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 08 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_MD5_PKCS1 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 08 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_MD5_PKCS1 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 08 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 0c 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_MD5_PKCS1 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 0c 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_MD5_PKCS1 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 0c 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 10 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_MD5_PKCS1 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 10 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_MD5_PKCS1 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 10 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 02 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_MD5_PKCS1_PSS Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 02 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_MD5_PKCS1_PSS Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 02 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 02 e0 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_MD5_PKCS1_PSS Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 02 e0 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_MD5_PKCS1_PSS Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 02 e0 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 03 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_MD5_PKCS1_PSS Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 03 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_MD5_PKCS1_PSS Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 03 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 03 80 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_MD5_PKCS1_PSS Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 03 80 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_MD5_PKCS1_PSS Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 03 80 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 04 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_MD5_PKCS1_PSS Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 04 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_MD5_PKCS1_PSS Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 04 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 05 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_MD5_PKCS1_PSS Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 05 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_MD5_PKCS1_PSS Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 05 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 06 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_MD5_PKCS1_PSS Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 06 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_MD5_PKCS1_PSS Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 06 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 07 c0 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_MD5_PKCS1_PSS Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 07 c0 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_MD5_PKCS1_PSS Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 07 c0 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 08 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_MD5_PKCS1_PSS Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 08 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_MD5_PKCS1_PSS Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 08 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 0c 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_MD5_PKCS1_PSS Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 0c 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_MD5_PKCS1_PSS Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 0c 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 10 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_MD5_PKCS1_PSS Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 10 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_MD5_PKCS1_PSS Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 10 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 02 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_MD5_RFC2409 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 02 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_MD5_RFC2409 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 02 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 02 e0 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_MD5_RFC2409 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 02 e0 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_MD5_RFC2409 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 02 e0 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 03 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_MD5_RFC2409 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 03 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_MD5_RFC2409 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 03 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 03 80 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_MD5_RFC2409 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 03 80 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_MD5_RFC2409 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 03 80 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 04 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_MD5_RFC2409 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 04 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_MD5_RFC2409 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 04 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 05 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_MD5_RFC2409 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 05 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_MD5_RFC2409 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 05 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 06 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_MD5_RFC2409 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 06 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_MD5_RFC2409 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 06 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 07 c0 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_MD5_RFC2409 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 07 c0 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_MD5_RFC2409 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 07 c0 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 08 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_MD5_RFC2409 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 08 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_MD5_RFC2409 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 08 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 0c 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_MD5_RFC2409 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 0c 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_MD5_RFC2409 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 0c 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 10 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_MD5_RFC2409 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 10 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_MD5_RFC2409 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 10 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 02 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_RIPEMD160_ISO9796 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 02 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_RIPEMD160_ISO9796 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 02 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 02 e0 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_RIPEMD160_ISO9796 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 02 e0 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_RIPEMD160_ISO9796 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 02 e0 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 03 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_RIPEMD160_ISO9796 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 03 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_RIPEMD160_ISO9796 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 03 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 03 80 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_RIPEMD160_ISO9796 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 03 80 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_RIPEMD160_ISO9796 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 03 80 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 04 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_RIPEMD160_ISO9796 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 04 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_RIPEMD160_ISO9796 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 04 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 05 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_RIPEMD160_ISO9796 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 05 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_RIPEMD160_ISO9796 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 05 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 06 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_RIPEMD160_ISO9796 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 06 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_RIPEMD160_ISO9796 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 06 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 07 c0 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_RIPEMD160_ISO9796 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 07 c0 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_RIPEMD160_ISO9796 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 07 c0 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 08 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_RIPEMD160_ISO9796 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 08 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_RIPEMD160_ISO9796 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 08 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 0c 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_RIPEMD160_ISO9796 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 0c 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_RIPEMD160_ISO9796 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 0c 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 10 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_RIPEMD160_ISO9796 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 10 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_RIPEMD160_ISO9796 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 10 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 02 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_RIPEMD160_PKCS1 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 02 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_RIPEMD160_PKCS1 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 02 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 02 e0 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_RIPEMD160_PKCS1 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 02 e0 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_RIPEMD160_PKCS1 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 02 e0 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 03 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_RIPEMD160_PKCS1 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 03 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_RIPEMD160_PKCS1 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 03 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 03 80 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_RIPEMD160_PKCS1 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 03 80 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_RIPEMD160_PKCS1 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 03 80 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 04 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_RIPEMD160_PKCS1 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 04 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_RIPEMD160_PKCS1 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 04 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 05 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_RIPEMD160_PKCS1 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 05 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_RIPEMD160_PKCS1 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 05 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 06 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_RIPEMD160_PKCS1 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 06 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_RIPEMD160_PKCS1 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 06 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 07 c0 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_RIPEMD160_PKCS1 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 07 c0 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_RIPEMD160_PKCS1 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 07 c0 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 08 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_RIPEMD160_PKCS1 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 08 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_RIPEMD160_PKCS1 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 08 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 0c 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_RIPEMD160_PKCS1 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 0c 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_RIPEMD160_PKCS1 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 0c 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 10 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_RIPEMD160_PKCS1 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 10 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_RIPEMD160_PKCS1 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 10 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 02 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 02 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 02 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 02 e0 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 02 e0 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 02 e0 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 03 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 03 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 03 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 03 80 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 03 80 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 03 80 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 04 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 04 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 04 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 05 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 05 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 05 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 06 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 06 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 06 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 07 c0 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 07 c0 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 07 c0 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 08 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 08 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 08 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 0c 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 0c 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 0c 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 10 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 10 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 10 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 02 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;195.00;195.00;193.00;192.00;206.00; +baseline stats (ms):;avg:;196.20;min:;192.00;max:;206.00; +operation raw measurements (ms):;4935.80;4940.80;4939.80;4935.80;4941.80; +operation stats (ms/op):;avg op:;98.78;min op:;98.72;max op:;98.84; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_SHA_ISO9796 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 02 00 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;194.00;191.00;192.00;194.00;195.00; +baseline stats (ms):;avg:;193.20;min:;191.00;max:;195.00; +operation raw measurements (ms):;387.80;387.80;386.80;388.80;388.80; +operation stats (ms/op):;avg op:;7.76;min op:;7.74;max op:;7.78; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_SHA_ISO9796 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 02 00 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;194.00;194.00;193.00;193.00;194.00; +baseline stats (ms):;avg:;193.60;min:;193.00;max:;194.00; +operation raw measurements (ms):;325.40;330.40;328.40;328.40;331.40; +operation stats (ms/op):;avg op:;6.58;min op:;6.51;max op:;6.63; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 02 e0 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;282.00;279.00;285.00;282.00;283.00; +baseline stats (ms):;avg:;282.20;min:;279.00;max:;285.00; +operation raw measurements (ms):;9391.80;9360.80;9368.80;9386.80;9387.80; +operation stats (ms/op):;avg op:;187.58;min op:;187.22;max op:;187.84; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_SHA_ISO9796 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 02 e0 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;277.00;276.00;278.00;281.00;280.00; +baseline stats (ms):;avg:;278.40;min:;276.00;max:;281.00; +operation raw measurements (ms):;423.60;424.60;427.60;427.60;424.60; +operation stats (ms/op):;avg op:;8.51;min op:;8.47;max op:;8.55; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_SHA_ISO9796 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 02 e0 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;278.00;276.00;277.00;279.00;281.00; +baseline stats (ms):;avg:;278.20;min:;276.00;max:;281.00; +operation raw measurements (ms):;324.80;333.80;335.80;330.80;332.80; +operation stats (ms/op):;avg op:;6.63;min op:;6.50;max op:;6.72; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 03 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;302.00;303.00;300.00;302.00;301.00; +baseline stats (ms):;avg:;301.60;min:;300.00;max:;303.00; +operation raw measurements (ms):;10545.40;10563.40;10556.40;10561.40;10549.40; +operation stats (ms/op):;avg op:;211.10;min op:;210.91;max op:;211.27; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_SHA_ISO9796 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 03 00 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;306.00;303.00;302.00;302.00;303.00; +baseline stats (ms):;avg:;303.20;min:;302.00;max:;306.00; +operation raw measurements (ms):;431.80;433.80;431.80;430.80;429.80; +operation stats (ms/op):;avg op:;8.63;min op:;8.60;max op:;8.68; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_SHA_ISO9796 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 03 00 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;303.00;311.00;301.00;302.00;301.00; +baseline stats (ms):;avg:;303.60;min:;301.00;max:;311.00; +operation raw measurements (ms):;322.40;333.40;330.40;332.40;332.40; +operation stats (ms/op):;avg op:;6.60;min op:;6.45;max op:;6.67; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 03 80 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;394.00;395.00;404.00;397.00;396.00; +baseline stats (ms):;avg:;397.20;min:;394.00;max:;404.00; +operation raw measurements (ms):;15125.80;15114.80;15175.80;15147.80;15139.80; +operation stats (ms/op):;avg op:;302.82;min op:;302.30;max op:;303.52; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_SHA_ISO9796 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 03 80 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;398.00;397.00;397.00;397.00;398.00; +baseline stats (ms):;avg:;397.40;min:;397.00;max:;398.00; +operation raw measurements (ms):;464.60;460.60;459.60;461.60;458.60; +operation stats (ms/op):;avg op:;9.22;min op:;9.17;max op:;9.29; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_SHA_ISO9796 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 03 80 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;400.00;398.00;398.00;398.00;395.00; +baseline stats (ms):;avg:;398.50;min:;395.00;max:;400.00; +operation raw measurements (ms):;328.50;335.50;331.50;332.50;336.50; +operation stats (ms/op):;avg op:;6.66;min op:;6.57;max op:;6.73; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 04 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;511.00;514.00;939.00;511.00;516.00; +baseline stats (ms):;avg:;598.20;min:;511.00;max:;939.00;;;CHECK +operation raw measurements (ms):;20885.80;20874.80;20895.80;20915.80;20900.80; +operation stats (ms/op):;avg op:;417.89;min op:;417.50;max op:;418.32; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_SHA_ISO9796 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 04 00 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;516.00;512.00;518.00;512.00;514.00; +baseline stats (ms):;avg:;514.40;min:;512.00;max:;518.00; +operation raw measurements (ms):;478.60;485.60;487.60;486.60;483.60; +operation stats (ms/op):;avg op:;9.69;min op:;9.57;max op:;9.75; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_SHA_ISO9796 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 04 00 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;509.00;510.00;526.00;509.00;508.00; +baseline stats (ms):;avg:;512.40;min:;508.00;max:;526.00; +operation raw measurements (ms):;326.60;331.60;354.60;333.60;328.60; +operation stats (ms/op):;avg op:;6.70;min op:;6.53;max op:;7.09;;CHECK +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 05 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;835.00;859.00;827.00;833.00;833.00; +baseline stats (ms):;avg:;837.40;min:;827.00;max:;859.00; +operation raw measurements (ms):;37068.60;37109.60;37056.60;37018.60;37093.60; +operation stats (ms/op):;avg op:;741.39;min op:;740.37;max op:;742.19; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_SHA_ISO9796 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 05 00 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;831.00;825.00;856.00;837.00;828.00; +baseline stats (ms):;avg:;835.40;min:;825.00;max:;856.00; +operation raw measurements (ms):;549.60;545.60;554.60;544.60;535.60; +operation stats (ms/op):;avg op:;10.92;min op:;10.71;max op:;11.09; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_SHA_ISO9796 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 05 00 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;836.00;853.00;846.00;840.00;827.00; +baseline stats (ms):;avg:;840.40;min:;827.00;max:;853.00; +operation raw measurements (ms):;317.60;328.60;330.60;336.60;335.60; +operation stats (ms/op):;avg op:;6.60;min op:;6.35;max op:;6.73; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 06 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;1293.00;1296.00;1316.00;1292.00;1285.00; +baseline stats (ms):;avg:;1296.40;min:;1285.00;max:;1316.00; +operation raw measurements (ms):;60004.60;60064.60;60059.60;60091.60;59958.60; +operation stats (ms/op):;avg op:;1200.72;min op:;1199.17;max op:;1201.83; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_SHA_ISO9796 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 06 00 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;1296.00;1307.00;1290.00;1286.00;1292.00; +baseline stats (ms):;avg:;1294.20;min:;1286.00;max:;1307.00; +operation raw measurements (ms):;623.80;606.80;618.80;626.80;617.80; +operation stats (ms/op):;avg op:;12.38;min op:;12.14;max op:;12.54; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_SHA_ISO9796 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 06 00 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;1286.00;1287.00;1306.00;1289.00;1291.00; +baseline stats (ms):;avg:;1291.80;min:;1286.00;max:;1306.00; +operation raw measurements (ms):;344.20;335.20;339.20;332.20;343.20; +operation stats (ms/op):;avg op:;6.78;min op:;6.64;max op:;6.88; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 07 c0 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;2509.00;2529.00;2498.00;2505.00;2512.00; +baseline stats (ms):;avg:;2510.60;min:;2498.00;max:;2529.00; +operation raw measurements (ms):;120498.40;120633.40;120427.40;120540.40;120322.40; +operation stats (ms/op):;avg op:;2409.69;min op:;2406.45;max op:;2412.67; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_SHA_ISO9796 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 07 c0 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;2515.00;2516.00;2529.00;2496.00;2516.00; +baseline stats (ms):;avg:;2519.00;min:;2496.00;max:;2529.00; +operation raw measurements (ms):;737.00;778.00;758.00;748.00;753.00; +operation stats (ms/op):;avg op:;15.10;min op:;14.74;max op:;15.56; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_SHA_ISO9796 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 07 c0 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;2499.00;2516.00;2489.00;2503.00;2502.00; +baseline stats (ms):;avg:;2501.80;min:;2489.00;max:;2516.00; +operation raw measurements (ms):;308.20;341.20;335.20;317.20;321.20; +operation stats (ms/op):;avg op:;6.49;min op:;6.16;max op:;6.82;;CHECK +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 08 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;2739.00;2724.00;2748.00;2735.00;2709.00; +baseline stats (ms):;avg:;2731.00;min:;2709.00;max:;2748.00; +operation raw measurements (ms):;131582.00;131307.00;131548.00;131569.00;131309.00; +operation stats (ms/op):;avg op:;2629.26;min op:;2626.14;max op:;2631.64; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_SHA_ISO9796 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 08 00 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;2705.00;2724.00;2735.00;2726.00;2725.00; +baseline stats (ms):;avg:;2727.50;min:;2705.00;max:;2735.00; +operation raw measurements (ms):;765.50;770.50;791.50;781.50;796.50; +operation stats (ms/op):;avg op:;15.62;min op:;15.31;max op:;15.93; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_SHA_ISO9796 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 08 00 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;2737.00;2711.00;2744.00;2709.00;2700.00; +baseline stats (ms):;avg:;2720.20;min:;2700.00;max:;2744.00; +operation raw measurements (ms):;337.80;343.80;343.80;353.80;342.80; +operation stats (ms/op):;avg op:;6.89;min op:;6.76;max op:;7.08; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 0c 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_SHA_ISO9796 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 0c 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_SHA_ISO9796 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 0c 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 10 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_SHA_ISO9796 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 10 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_SHA_ISO9796 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 10 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 02 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;194.00;484.00;193.00;193.00;194.00; +baseline stats (ms):;avg:;251.60;min:;193.00;max:;484.00;;;CHECK +operation raw measurements (ms):;4900.40;4905.40;4919.40;4902.40;4893.40; +operation stats (ms/op):;avg op:;98.08;min op:;97.87;max op:;98.39; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_SHA_PKCS1 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 02 00 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;195.00;195.00;193.00;209.00;191.00; +baseline stats (ms):;avg:;196.60;min:;191.00;max:;209.00;;;CHECK +operation raw measurements (ms):;375.40;373.40;376.40;375.40;373.40; +operation stats (ms/op):;avg op:;7.50;min op:;7.47;max op:;7.53; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_SHA_PKCS1 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 02 00 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;194.00;194.00;195.00;191.00;194.00; +baseline stats (ms):;avg:;194.25;min:;191.00;max:;195.00; +operation raw measurements (ms):;325.75;329.75;328.75;329.75;329.75; +operation stats (ms/op):;avg op:;6.58;min op:;6.52;max op:;6.60; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 02 e0 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;284.00;285.00;366.00;282.00;280.00; +baseline stats (ms):;avg:;299.40;min:;280.00;max:;366.00;;;CHECK +operation raw measurements (ms):;9433.60;9419.60;9427.60;9409.60;9422.60; +operation stats (ms/op):;avg op:;188.45;min op:;188.19;max op:;188.67; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_SHA_PKCS1 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 02 e0 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;283.00;298.00;283.00;284.00;284.00; +baseline stats (ms):;avg:;286.40;min:;283.00;max:;298.00; +operation raw measurements (ms):;402.60;407.60;406.60;403.60;403.60; +operation stats (ms/op):;avg op:;8.10;min op:;8.05;max op:;8.15; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_SHA_PKCS1 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 02 e0 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;285.00;280.00;380.00;282.00;284.00; +baseline stats (ms):;avg:;302.20;min:;280.00;max:;380.00;;;CHECK +operation raw measurements (ms):;306.80;310.80;310.80;312.80;309.80; +operation stats (ms/op):;avg op:;6.20;min op:;6.14;max op:;6.26; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 03 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;307.00;315.00;307.00;303.00;305.00; +baseline stats (ms):;avg:;307.40;min:;303.00;max:;315.00; +operation raw measurements (ms):;10524.60;10516.60;10520.60;10501.60;10514.60; +operation stats (ms/op):;avg op:;210.31;min op:;210.03;max op:;210.49; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_SHA_PKCS1 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 03 00 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;302.00;306.00;338.00;299.00;304.00; +baseline stats (ms):;avg:;309.80;min:;299.00;max:;338.00;;;CHECK +operation raw measurements (ms):;408.20;405.20;408.20;410.20;408.20; +operation stats (ms/op):;avg op:;8.16;min op:;8.10;max op:;8.20; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_SHA_PKCS1 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 03 00 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;304.00;319.00;307.00;305.00;303.00; +baseline stats (ms):;avg:;307.60;min:;303.00;max:;319.00; +operation raw measurements (ms):;322.40;329.40;327.40;324.40;323.40; +operation stats (ms/op):;avg op:;6.51;min op:;6.45;max op:;6.59; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 03 80 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;397.00;394.00;396.00;398.00;401.00; +baseline stats (ms):;avg:;397.20;min:;394.00;max:;401.00; +operation raw measurements (ms):;15109.80;15109.80;15107.80;15112.80;15124.80; +operation stats (ms/op):;avg op:;302.26;min op:;302.16;max op:;302.50; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_SHA_PKCS1 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 03 80 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;398.00;410.00;397.00;393.00;393.00; +baseline stats (ms):;avg:;398.20;min:;393.00;max:;410.00; +operation raw measurements (ms):;437.80;437.80;439.80;435.80;440.80; +operation stats (ms/op):;avg op:;8.77;min op:;8.72;max op:;8.82; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_SHA_PKCS1 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 03 80 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;395.00;401.00;400.00;399.00;397.00; +baseline stats (ms):;avg:;398.40;min:;395.00;max:;401.00; +operation raw measurements (ms):;321.60;331.60;328.60;330.60;329.60; +operation stats (ms/op):;avg op:;6.57;min op:;6.43;max op:;6.63; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 04 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;506.00;514.00;517.00;512.00;511.00; +baseline stats (ms):;avg:;512.00;min:;506.00;max:;517.00; +operation raw measurements (ms):;20962.00;20953.00;20969.00;20941.00;20945.00; +operation stats (ms/op):;avg op:;419.08;min op:;418.82;max op:;419.38; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_SHA_PKCS1 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 04 00 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;516.00;513.00;522.00;512.00;513.00; +baseline stats (ms):;avg:;515.20;min:;512.00;max:;522.00; +operation raw measurements (ms):;466.80;460.80;465.80;465.80;464.80; +operation stats (ms/op):;avg op:;9.30;min op:;9.22;max op:;9.34; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_SHA_PKCS1 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 04 00 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;517.00;512.00;515.00;511.00;514.00; +baseline stats (ms):;avg:;513.80;min:;511.00;max:;517.00; +operation raw measurements (ms):;327.20;329.20;330.20;333.20;334.20; +operation stats (ms/op):;avg op:;6.62;min op:;6.54;max op:;6.68; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 05 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;841.00;838.00;837.00;827.00;835.00; +baseline stats (ms):;avg:;837.75;min:;827.00;max:;841.00; +operation raw measurements (ms):;36946.25;37005.25;36948.25;36889.25;36887.25; +operation stats (ms/op):;avg op:;738.71;min op:;737.75;max op:;740.11; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_SHA_PKCS1 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 05 00 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;837.00;845.00;834.00;836.00;831.00; +baseline stats (ms):;avg:;836.60;min:;831.00;max:;845.00; +operation raw measurements (ms):;531.40;531.40;527.40;535.40;519.40; +operation stats (ms/op):;avg op:;10.58;min op:;10.39;max op:;10.71; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_SHA_PKCS1 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 05 00 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;831.00;840.00;848.00;835.00;838.00; +baseline stats (ms):;avg:;838.40;min:;831.00;max:;848.00; +operation raw measurements (ms):;325.60;337.60;332.60;326.60;332.60; +operation stats (ms/op):;avg op:;6.62;min op:;6.51;max op:;6.75; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 06 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;1269.00;1289.00;1286.00;1300.00;1278.00; +baseline stats (ms):;avg:;1284.40;min:;1269.00;max:;1300.00; +operation raw measurements (ms):;59868.60;59819.60;59961.60;59998.60;59913.60; +operation stats (ms/op):;avg op:;1198.25;min op:;1196.39;max op:;1199.97; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_SHA_PKCS1 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 06 00 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;1304.00;1291.00;1312.00;1295.00;1302.00; +baseline stats (ms):;avg:;1300.80;min:;1291.00;max:;1312.00; +operation raw measurements (ms):;595.20;587.20;584.20;601.20;593.20; +operation stats (ms/op):;avg op:;11.84;min op:;11.68;max op:;12.02; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_SHA_PKCS1 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 06 00 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;1289.00;1298.00;1291.00;1291.00;1281.00; +baseline stats (ms):;avg:;1292.25;min:;1281.00;max:;1298.00; +operation raw measurements (ms):;318.75;332.75;331.75;363.75;342.75; +operation stats (ms/op):;avg op:;6.76;min op:;6.38;max op:;7.28;;CHECK +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 07 c0 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;2500.00;2518.00;2517.00;2504.00;2503.00; +baseline stats (ms):;avg:;2508.40;min:;2500.00;max:;2518.00; +operation raw measurements (ms):;120343.60;120450.60;120300.60;120295.60;120231.60; +operation stats (ms/op):;avg op:;2406.49;min op:;2404.63;max op:;2409.01; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_SHA_PKCS1 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 07 c0 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;2516.00;2508.00;2504.00;2505.00;2519.00; +baseline stats (ms):;avg:;2510.40;min:;2504.00;max:;2519.00; +operation raw measurements (ms):;754.60;754.60;772.60;770.60;771.60; +operation stats (ms/op):;avg op:;15.30;min op:;15.09;max op:;15.45; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_SHA_PKCS1 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 07 c0 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;2491.00;2516.00;2507.00;2493.00;2532.00; +baseline stats (ms):;avg:;2507.80;min:;2491.00;max:;2532.00; +operation raw measurements (ms):;310.20;327.20;336.20;324.20;317.20; +operation stats (ms/op):;avg op:;6.46;min op:;6.20;max op:;6.72; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 08 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;2744.00;2738.00;2720.00;2743.00;2720.00; +baseline stats (ms):;avg:;2733.00;min:;2720.00;max:;2744.00; +operation raw measurements (ms):;131728.00;131623.00;131490.00;131492.00;131445.00; +operation stats (ms/op):;avg op:;2631.11;min op:;2628.90;max op:;2634.56; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_SHA_PKCS1 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 08 00 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;2722.00;2720.00;2733.00;2720.00;2706.00; +baseline stats (ms):;avg:;2723.75;min:;2706.00;max:;2733.00; +operation raw measurements (ms):;785.25;763.25;767.25;756.25;772.25; +operation stats (ms/op):;avg op:;15.38;min op:;15.13;max op:;15.71; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_SHA_PKCS1 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 08 00 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;2721.00;2742.00;2726.00;2721.00;2740.00; +baseline stats (ms):;avg:;2730.00;min:;2721.00;max:;2742.00; +operation raw measurements (ms):;327.00;338.00;355.00;322.00;339.00; +operation stats (ms/op):;avg op:;6.72;min op:;6.44;max op:;7.10;;CHECK +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 0c 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_SHA_PKCS1 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 0c 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_SHA_PKCS1 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 0c 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 10 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_SHA_PKCS1 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 10 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_SHA_PKCS1 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 10 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 02 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;203.00;205.00;205.00;205.00;203.00; +baseline stats (ms):;avg:;204.20;min:;203.00;max:;205.00; +operation raw measurements (ms):;5490.80;5498.80;5493.80;5485.80;5500.80; +operation stats (ms/op):;avg op:;109.88;min op:;109.72;max op:;110.02; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_SHA_PKCS1_PSS Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 02 00 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;203.00;204.00;204.00;206.00;202.00; +baseline stats (ms):;avg:;203.80;min:;202.00;max:;206.00; +operation raw measurements (ms):;587.20;589.20;588.20;590.20;590.20; +operation stats (ms/op):;avg op:;11.78;min op:;11.74;max op:;11.80; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_SHA_PKCS1_PSS Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 02 00 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;205.00;205.00;205.00;206.00;206.00; +baseline stats (ms):;avg:;205.40;min:;205.00;max:;206.00; +operation raw measurements (ms):;326.60;329.60;327.60;328.60;327.60; +operation stats (ms/op):;avg op:;6.56;min op:;6.53;max op:;6.59; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 02 e0 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;294.00;305.00;294.00;297.00;296.00; +baseline stats (ms):;avg:;297.20;min:;294.00;max:;305.00; +operation raw measurements (ms):;10019.80;10032.80;10032.80;10026.80;10052.80; +operation stats (ms/op):;avg op:;200.66;min op:;200.40;max op:;201.06; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_SHA_PKCS1_PSS Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 02 e0 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;295.00;297.00;357.00;296.00;297.00; +baseline stats (ms):;avg:;308.40;min:;295.00;max:;357.00;;;CHECK +operation raw measurements (ms):;657.60;658.60;657.60;658.60;659.60; +operation stats (ms/op):;avg op:;13.17;min op:;13.15;max op:;13.19; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_SHA_PKCS1_PSS Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 02 e0 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;295.00;302.00;294.00;297.00;294.00; +baseline stats (ms):;avg:;296.40;min:;294.00;max:;302.00; +operation raw measurements (ms):;324.60;330.60;332.60;328.60;329.60; +operation stats (ms/op):;avg op:;6.58;min op:;6.49;max op:;6.65; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 03 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;319.00;319.00;316.00;313.00;313.00; +baseline stats (ms):;avg:;316.00;min:;313.00;max:;319.00; +operation raw measurements (ms):;11106.00;11094.00;11080.00;11102.00;11119.00; +operation stats (ms/op):;avg op:;222.00;min op:;221.60;max op:;222.38; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_SHA_PKCS1_PSS Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 03 00 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;316.00;329.00;317.00;317.00;317.00; +baseline stats (ms):;avg:;319.20;min:;316.00;max:;329.00; +operation raw measurements (ms):;672.80;670.80;674.80;670.80;674.80; +operation stats (ms/op):;avg op:;13.46;min op:;13.42;max op:;13.50; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_SHA_PKCS1_PSS Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 03 00 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;315.00;316.00;316.00;319.00;320.00; +baseline stats (ms):;avg:;317.20;min:;315.00;max:;320.00; +operation raw measurements (ms):;328.80;333.80;330.80;331.80;330.80; +operation stats (ms/op):;avg op:;6.62;min op:;6.58;max op:;6.68; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 03 80 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;409.00;413.00;409.00;411.00;409.00; +baseline stats (ms):;avg:;410.20;min:;409.00;max:;413.00; +operation raw measurements (ms):;15761.80;15761.80;15771.80;15785.80;15746.80; +operation stats (ms/op):;avg op:;315.31;min op:;314.94;max op:;315.72; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_SHA_PKCS1_PSS Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 03 80 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;406.00;414.00;416.00;408.00;410.00; +baseline stats (ms):;avg:;410.80;min:;406.00;max:;416.00; +operation raw measurements (ms):;751.20;752.20;751.20;751.20;753.20; +operation stats (ms/op):;avg op:;15.04;min op:;15.02;max op:;15.06; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_SHA_PKCS1_PSS Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 03 80 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;409.00;419.00;409.00;408.00;408.00; +baseline stats (ms):;avg:;410.60;min:;408.00;max:;419.00; +operation raw measurements (ms):;324.40;333.40;331.40;332.40;329.40; +operation stats (ms/op):;avg op:;6.60;min op:;6.49;max op:;6.67; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 04 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;525.00;524.00;538.00;524.00;531.00; +baseline stats (ms):;avg:;528.40;min:;524.00;max:;538.00; +operation raw measurements (ms):;21670.60;21677.60;21687.60;21684.60;21664.60; +operation stats (ms/op):;avg op:;433.54;min op:;433.29;max op:;433.75; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_SHA_PKCS1_PSS Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 04 00 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;528.00;528.00;530.00;531.00;531.00; +baseline stats (ms):;avg:;529.60;min:;528.00;max:;531.00; +operation raw measurements (ms):;830.40;828.40;830.40;833.40;831.40; +operation stats (ms/op):;avg op:;16.62;min op:;16.57;max op:;16.67; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_SHA_PKCS1_PSS Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 04 00 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;528.00;527.00;538.00;525.00;527.00; +baseline stats (ms):;avg:;529.00;min:;525.00;max:;538.00; +operation raw measurements (ms):;326.00;332.00;335.00;336.00;333.00; +operation stats (ms/op):;avg op:;6.65;min op:;6.52;max op:;6.72; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 05 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;851.00;851.00;854.00;849.00;844.00; +baseline stats (ms):;avg:;851.25;min:;844.00;max:;854.00; +operation raw measurements (ms):;37758.75;37769.75;37696.75;37757.75;37745.75; +operation stats (ms/op):;avg op:;754.92;min op:;753.94;max op:;755.40; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_SHA_PKCS1_PSS Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 05 00 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;847.00;849.00;864.00;856.00;844.00; +baseline stats (ms):;avg:;852.00;min:;844.00;max:;864.00; +operation raw measurements (ms):;955.00;941.00;949.00;944.00;949.00; +operation stats (ms/op):;avg op:;18.95;min op:;18.82;max op:;19.10; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_SHA_PKCS1_PSS Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 05 00 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;844.00;854.00;848.00;847.00;849.00; +baseline stats (ms):;avg:;848.40;min:;844.00;max:;854.00; +operation raw measurements (ms):;323.60;331.60;328.60;334.60;339.60; +operation stats (ms/op):;avg op:;6.63;min op:;6.47;max op:;6.79; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 06 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;1294.00;1310.00;1316.00;1311.00;1306.00; +baseline stats (ms):;avg:;1310.75;min:;1294.00;max:;1316.00; +operation raw measurements (ms):;60806.25;60708.25;60687.25;60734.25;60666.25; +operation stats (ms/op):;avg op:;1214.41;min op:;1213.33;max op:;1216.13; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_SHA_PKCS1_PSS Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 06 00 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;1309.00;1312.00;1317.00;1301.00;1311.00; +baseline stats (ms):;avg:;1312.25;min:;1301.00;max:;1317.00; +operation raw measurements (ms):;1117.75;1123.75;1120.75;1114.75;1122.75; +operation stats (ms/op):;avg op:;22.40;min op:;22.30;max op:;22.48; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_SHA_PKCS1_PSS Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 06 00 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;1304.00;1317.00;1326.00;1307.00;1295.00; +baseline stats (ms):;avg:;1309.80;min:;1295.00;max:;1326.00; +operation raw measurements (ms):;334.20;331.20;343.20;326.20;332.20; +operation stats (ms/op):;avg op:;6.67;min op:;6.52;max op:;6.86; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 07 c0 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;2516.00;2532.00;2526.00;2520.00;2523.00; +baseline stats (ms):;avg:;2523.40;min:;2516.00;max:;2532.00; +operation raw measurements (ms):;121245.60;121077.60;121188.60;121218.60;121334.60; +operation stats (ms/op):;avg op:;2424.26;min op:;2421.55;max op:;2426.69; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_SHA_PKCS1_PSS Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 07 c0 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;2508.00;2521.00;2528.00;2536.00;2522.00; +baseline stats (ms):;avg:;2523.00;min:;2508.00;max:;2536.00; +operation raw measurements (ms):;1419.00;1404.00;1403.00;1432.00;1437.00; +operation stats (ms/op):;avg op:;28.38;min op:;28.06;max op:;28.74; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_SHA_PKCS1_PSS Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 07 c0 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;2522.00;2530.00;2533.00;2517.00;2537.00; +baseline stats (ms):;avg:;2527.80;min:;2517.00;max:;2537.00; +operation raw measurements (ms):;337.20;312.20;329.20;316.20;322.20; +operation stats (ms/op):;avg op:;6.47;min op:;6.24;max op:;6.74; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 08 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;2740.00;2748.00;2742.00;2751.00;2741.00; +baseline stats (ms):;avg:;2744.40;min:;2740.00;max:;2751.00; +operation raw measurements (ms):;132287.60;132296.60;132122.60;132165.60;132100.60; +operation stats (ms/op):;avg op:;2643.89;min op:;2642.01;max op:;2645.93; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_SHA_PKCS1_PSS Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 08 00 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;2711.00;2722.00;2727.00;2764.00;2741.00; +baseline stats (ms):;avg:;2733.00;min:;2711.00;max:;2764.00; +operation raw measurements (ms):;1457.00;1461.00;1442.00;1477.00;1462.00; +operation stats (ms/op):;avg op:;29.20;min op:;28.84;max op:;29.54; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_SHA_PKCS1_PSS Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 08 00 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;2724.00;2729.00;2724.00;2749.00;2755.00; +baseline stats (ms):;avg:;2736.20;min:;2724.00;max:;2755.00; +operation raw measurements (ms):;339.80;342.80;337.80;346.80;348.80; +operation stats (ms/op):;avg op:;6.86;min op:;6.76;max op:;6.98; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 0c 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_SHA_PKCS1_PSS Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 0c 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_SHA_PKCS1_PSS Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 0c 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 10 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_SHA_PKCS1_PSS Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 10 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_SHA_PKCS1_PSS Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 10 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 02 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_SHA_RFC2409 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 02 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_SHA_RFC2409 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 02 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 02 e0 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_SHA_RFC2409 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 02 e0 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_SHA_RFC2409 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 02 e0 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 03 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_SHA_RFC2409 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 03 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_SHA_RFC2409 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 03 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 03 80 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_SHA_RFC2409 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 03 80 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_SHA_RFC2409 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 03 80 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 04 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_SHA_RFC2409 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 04 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_SHA_RFC2409 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 04 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 05 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_SHA_RFC2409 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 05 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_SHA_RFC2409 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 05 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 06 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_SHA_RFC2409 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 06 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_SHA_RFC2409 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 06 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 07 c0 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_SHA_RFC2409 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 07 c0 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_SHA_RFC2409 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 07 c0 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 08 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_SHA_RFC2409 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 08 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_SHA_RFC2409 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 08 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 0c 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_SHA_RFC2409 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 0c 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_SHA_RFC2409 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 0c 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 10 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_SHA_RFC2409 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 10 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_SHA_RFC2409 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 10 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 02 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_MD5_PKCS1 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 02 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_MD5_PKCS1 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 02 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 02 e0 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_MD5_PKCS1 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 02 e0 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_MD5_PKCS1 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 02 e0 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 03 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_MD5_PKCS1 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 03 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_MD5_PKCS1 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 03 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 03 80 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_MD5_PKCS1 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 03 80 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_MD5_PKCS1 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 03 80 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 04 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_MD5_PKCS1 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 04 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_MD5_PKCS1 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 04 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 05 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_MD5_PKCS1 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 05 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_MD5_PKCS1 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 05 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 06 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_MD5_PKCS1 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 06 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_MD5_PKCS1 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 06 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 07 c0 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_MD5_PKCS1 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 07 c0 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_MD5_PKCS1 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 07 c0 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 08 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_MD5_PKCS1 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 08 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_MD5_PKCS1 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 08 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 0c 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_MD5_PKCS1 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 0c 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_MD5_PKCS1 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 0c 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 10 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_MD5_PKCS1 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 10 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_MD5_PKCS1 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 10 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 02 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_MD5_PKCS1_PSS Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 02 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_MD5_PKCS1_PSS Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 02 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 02 e0 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_MD5_PKCS1_PSS Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 02 e0 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_MD5_PKCS1_PSS Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 02 e0 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 03 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_MD5_PKCS1_PSS Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 03 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_MD5_PKCS1_PSS Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 03 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 03 80 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_MD5_PKCS1_PSS Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 03 80 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_MD5_PKCS1_PSS Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 03 80 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 04 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_MD5_PKCS1_PSS Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 04 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_MD5_PKCS1_PSS Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 04 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 05 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_MD5_PKCS1_PSS Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 05 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_MD5_PKCS1_PSS Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 05 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 06 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_MD5_PKCS1_PSS Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 06 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_MD5_PKCS1_PSS Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 06 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 07 c0 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_MD5_PKCS1_PSS Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 07 c0 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_MD5_PKCS1_PSS Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 07 c0 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 08 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_MD5_PKCS1_PSS Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 08 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_MD5_PKCS1_PSS Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 08 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 0c 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_MD5_PKCS1_PSS Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 0c 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_MD5_PKCS1_PSS Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 0c 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 10 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_MD5_PKCS1_PSS Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 10 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_MD5_PKCS1_PSS Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 10 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 02 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_MD5_RFC2409 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 02 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_MD5_RFC2409 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 02 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 02 e0 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_MD5_RFC2409 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 02 e0 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_MD5_RFC2409 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 02 e0 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 03 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_MD5_RFC2409 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 03 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_MD5_RFC2409 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 03 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 03 80 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_MD5_RFC2409 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 03 80 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_MD5_RFC2409 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 03 80 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 04 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_MD5_RFC2409 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 04 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_MD5_RFC2409 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 04 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 05 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_MD5_RFC2409 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 05 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_MD5_RFC2409 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 05 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 06 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_MD5_RFC2409 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 06 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_MD5_RFC2409 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 06 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 07 c0 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_MD5_RFC2409 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 07 c0 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_MD5_RFC2409 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 07 c0 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 08 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_MD5_RFC2409 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 08 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_MD5_RFC2409 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 08 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 0c 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_MD5_RFC2409 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 0c 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_MD5_RFC2409 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 0c 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 10 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_MD5_RFC2409 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 10 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_MD5_RFC2409 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 10 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 02 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_RIPEMD160_ISO9796 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 02 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_RIPEMD160_ISO9796 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 02 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 02 e0 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_RIPEMD160_ISO9796 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 02 e0 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_RIPEMD160_ISO9796 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 02 e0 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 03 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_RIPEMD160_ISO9796 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 03 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_RIPEMD160_ISO9796 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 03 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 03 80 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_RIPEMD160_ISO9796 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 03 80 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_RIPEMD160_ISO9796 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 03 80 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 04 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_RIPEMD160_ISO9796 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 04 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_RIPEMD160_ISO9796 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 04 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 05 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_RIPEMD160_ISO9796 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 05 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_RIPEMD160_ISO9796 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 05 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 06 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_RIPEMD160_ISO9796 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 06 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_RIPEMD160_ISO9796 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 06 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 07 c0 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_RIPEMD160_ISO9796 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 07 c0 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_RIPEMD160_ISO9796 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 07 c0 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 08 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_RIPEMD160_ISO9796 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 08 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_RIPEMD160_ISO9796 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 08 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 0c 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_RIPEMD160_ISO9796 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 0c 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_RIPEMD160_ISO9796 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 0c 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 10 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_RIPEMD160_ISO9796 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 10 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_RIPEMD160_ISO9796 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 10 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 02 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_RIPEMD160_PKCS1 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 02 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_RIPEMD160_PKCS1 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 02 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 02 e0 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_RIPEMD160_PKCS1 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 02 e0 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_RIPEMD160_PKCS1 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 02 e0 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 03 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_RIPEMD160_PKCS1 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 03 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_RIPEMD160_PKCS1 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 03 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 03 80 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_RIPEMD160_PKCS1 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 03 80 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_RIPEMD160_PKCS1 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 03 80 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 04 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_RIPEMD160_PKCS1 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 04 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_RIPEMD160_PKCS1 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 04 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 05 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_RIPEMD160_PKCS1 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 05 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_RIPEMD160_PKCS1 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 05 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 06 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_RIPEMD160_PKCS1 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 06 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_RIPEMD160_PKCS1 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 06 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 07 c0 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_RIPEMD160_PKCS1 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 07 c0 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_RIPEMD160_PKCS1 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 07 c0 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 08 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_RIPEMD160_PKCS1 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 08 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_RIPEMD160_PKCS1 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 08 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 0c 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_RIPEMD160_PKCS1 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 0c 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_RIPEMD160_PKCS1 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 0c 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 10 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_RIPEMD160_PKCS1 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 10 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_RIPEMD160_PKCS1 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 10 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 02 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 02 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 02 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 02 e0 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 02 e0 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 02 e0 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 03 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 03 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 03 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 03 80 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 03 80 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 03 80 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 04 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 04 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 04 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 05 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 05 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 05 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 06 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 06 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 06 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 07 c0 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 07 c0 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 07 c0 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 08 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 08 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 08 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 0c 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 0c 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 0c 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 10 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 10 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 10 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 02 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;197.00;145.00;144.00;146.00;145.00; +baseline stats (ms):;avg:;155.40;min:;144.00;max:;197.00;;;CHECK +operation raw measurements (ms):;2524.60;2532.60;2529.60;2525.60;2530.60; +operation stats (ms/op):;avg op:;50.57;min op:;50.49;max op:;50.65; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_SHA_ISO9796 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 02 00 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;198.00;148.00;144.00;145.00;147.00; +baseline stats (ms):;avg:;156.40;min:;144.00;max:;198.00;;;CHECK +operation raw measurements (ms):;378.60;378.60;376.60;378.60;376.60; +operation stats (ms/op):;avg op:;7.56;min op:;7.53;max op:;7.57; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_SHA_ISO9796 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 02 00 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;197.00;158.00;147.00;259.00;148.00; +baseline stats (ms):;avg:;181.80;min:;147.00;max:;259.00;;;CHECK +operation raw measurements (ms):;289.20;343.20;293.20;294.20;295.20; +operation stats (ms/op):;avg op:;6.06;min op:;5.78;max op:;6.86;;CHECK +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 02 e0 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;226.00;170.00;447.00;170.00;169.00; +baseline stats (ms):;avg:;236.40;min:;169.00;max:;447.00;;;CHECK +operation raw measurements (ms):;3632.60;3633.60;3626.60;3634.60;3626.60; +operation stats (ms/op):;avg op:;72.62;min op:;72.53;max op:;72.69; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_SHA_ISO9796 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 02 e0 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;225.00;180.00;168.00;171.00;168.00; +baseline stats (ms):;avg:;182.40;min:;168.00;max:;225.00;;;CHECK +operation raw measurements (ms):;414.60;412.60;412.60;412.60;413.60; +operation stats (ms/op):;avg op:;8.26;min op:;8.25;max op:;8.29; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_SHA_ISO9796 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 02 e0 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;225.00;170.00;452.00;170.00;171.00; +baseline stats (ms):;avg:;237.60;min:;170.00;max:;452.00;;;CHECK +operation raw measurements (ms):;258.40;328.40;262.40;262.40;263.40; +operation stats (ms/op):;avg op:;5.50;min op:;5.17;max op:;6.57;;CHECK +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 03 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;229.00;182.00;171.00;207.00;171.00; +baseline stats (ms):;avg:;192.00;min:;171.00;max:;229.00;;;CHECK +operation raw measurements (ms):;3702.00;3724.00;3719.00;3717.00;3714.00; +operation stats (ms/op):;avg op:;74.30;min op:;74.04;max op:;74.48; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_SHA_ISO9796 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 03 00 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;230.00;172.00;452.00;170.00;170.00; +baseline stats (ms):;avg:;238.80;min:;170.00;max:;452.00;;;CHECK +operation raw measurements (ms):;365.20;363.20;366.20;362.20;365.20; +operation stats (ms/op):;avg op:;7.29;min op:;7.24;max op:;7.32; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_SHA_ISO9796 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 03 00 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;228.00;179.00;170.00;223.00;174.00; +baseline stats (ms):;avg:;194.80;min:;170.00;max:;228.00;;;CHECK +operation raw measurements (ms):;301.20;365.20;307.20;307.20;307.20; +operation stats (ms/op):;avg op:;6.35;min op:;6.02;max op:;7.30;;CHECK +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 03 80 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;250.00;189.00;414.00;189.00;190.00; +baseline stats (ms):;avg:;246.40;min:;189.00;max:;414.00;;;CHECK +operation raw measurements (ms):;4547.60;4551.60;4547.60;4539.60;4550.60; +operation stats (ms/op):;avg op:;90.95;min op:;90.79;max op:;91.03; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_SHA_ISO9796 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 03 80 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;253.00;197.00;187.00;187.00;186.00; +baseline stats (ms):;avg:;202.00;min:;186.00;max:;253.00;;;CHECK +operation raw measurements (ms):;440.00;442.00;443.00;442.00;440.00; +operation stats (ms/op):;avg op:;8.83;min op:;8.80;max op:;8.86; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_SHA_ISO9796 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 03 80 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;252.00;189.00;190.00;190.00;187.00; +baseline stats (ms):;avg:;201.60;min:;187.00;max:;252.00;;;CHECK +operation raw measurements (ms):;312.40;393.40;317.40;317.40;318.40; +operation stats (ms/op):;avg op:;6.64;min op:;6.25;max op:;7.87;;CHECK +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 04 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;282.00;209.00;207.00;209.00;209.00; +baseline stats (ms):;avg:;223.20;min:;207.00;max:;282.00;;;CHECK +operation raw measurements (ms):;5612.80;5590.80;5611.80;5601.80;5602.80; +operation stats (ms/op):;avg op:;112.08;min op:;111.82;max op:;112.26; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_SHA_ISO9796 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 04 00 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;283.00;209.00;334.00;209.00;208.00; +baseline stats (ms):;avg:;248.60;min:;208.00;max:;334.00;;;CHECK +operation raw measurements (ms):;443.40;445.40;443.40;444.40;444.40; +operation stats (ms/op):;avg op:;8.88;min op:;8.87;max op:;8.91; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_SHA_ISO9796 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 04 00 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;282.00;219.00;208.00;208.00;207.00; +baseline stats (ms):;avg:;224.80;min:;207.00;max:;282.00;;;CHECK +operation raw measurements (ms):;310.20;397.20;317.20;315.20;316.20; +operation stats (ms/op):;avg op:;6.62;min op:;6.20;max op:;7.94;;CHECK +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 05 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;337.00;257.00;271.00;259.00;260.00; +baseline stats (ms):;avg:;276.80;min:;257.00;max:;337.00;;;CHECK +operation raw measurements (ms):;8125.20;8118.20;8125.20;8108.20;8115.20; +operation stats (ms/op):;avg op:;162.37;min op:;162.16;max op:;162.50; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_SHA_ISO9796 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 05 00 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;344.00;255.00;256.00;263.00;261.00; +baseline stats (ms):;avg:;275.80;min:;255.00;max:;344.00;;;CHECK +operation raw measurements (ms):;529.20;526.20;531.20;528.20;526.20; +operation stats (ms/op):;avg op:;10.56;min op:;10.52;max op:;10.62; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_SHA_ISO9796 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 05 00 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;339.00;259.00;267.00;257.00;259.00; +baseline stats (ms):;avg:;276.20;min:;257.00;max:;339.00;;;CHECK +operation raw measurements (ms):;311.80;397.80;317.80;315.80;314.80; +operation stats (ms/op):;avg op:;6.63;min op:;6.24;max op:;7.96;;CHECK +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 06 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;423.00;374.00;331.00;323.00;324.00; +baseline stats (ms):;avg:;355.00;min:;323.00;max:;423.00;;;CHECK +operation raw measurements (ms):;11471.00;11480.00;11466.00;11459.00;11488.00; +operation stats (ms/op):;avg op:;229.46;min op:;229.18;max op:;229.76; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_SHA_ISO9796 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 06 00 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;425.00;326.00;330.00;320.00;320.00; +baseline stats (ms):;avg:;344.20;min:;320.00;max:;425.00;;;CHECK +operation raw measurements (ms):;594.80;591.80;597.80;589.80;594.80; +operation stats (ms/op):;avg op:;11.88;min op:;11.80;max op:;11.96; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_SHA_ISO9796 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 06 00 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;427.00;388.00;320.00;320.00;322.00; +baseline stats (ms):;avg:;355.40;min:;320.00;max:;427.00;;;CHECK +operation raw measurements (ms):;294.60;408.60;309.60;310.60;309.60; +operation stats (ms/op):;avg op:;6.53;min op:;5.89;max op:;8.17;;CHECK +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 07 c0 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;623.00;498.00;507.00;499.00;497.00; +baseline stats (ms):;avg:;524.80;min:;497.00;max:;623.00;;;CHECK +operation raw measurements (ms):;20315.20;20273.20;20268.20;20256.20;20293.20; +operation stats (ms/op):;avg op:;405.62;min op:;405.12;max op:;406.30; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_SHA_ISO9796 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 07 c0 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;621.00;500.00;507.00;499.00;501.00; +baseline stats (ms):;avg:;525.60;min:;499.00;max:;621.00;;;CHECK +operation raw measurements (ms):;735.40;732.40;739.40;734.40;737.40; +operation stats (ms/op):;avg op:;14.72;min op:;14.65;max op:;14.79; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_SHA_ISO9796 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 07 c0 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;621.00;502.00;509.00;499.00;502.00; +baseline stats (ms):;avg:;526.60;min:;499.00;max:;621.00;;;CHECK +operation raw measurements (ms):;316.40;436.40;312.40;320.40;321.40; +operation stats (ms/op):;avg op:;6.83;min op:;6.25;max op:;8.73;;CHECK +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 08 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;670.00;536.00;540.00;539.00;544.00; +baseline stats (ms):;avg:;565.80;min:;536.00;max:;670.00;;;CHECK +operation raw measurements (ms):;22379.20;22337.20;22346.20;22325.20;22333.20; +operation stats (ms/op):;avg op:;446.88;min op:;446.50;max op:;447.58; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_SHA_ISO9796 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 08 00 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;670.00;540.00;545.00;543.00;540.00; +baseline stats (ms):;avg:;567.60;min:;540.00;max:;670.00;;;CHECK +operation raw measurements (ms):;755.40;759.40;755.40;760.40;757.40; +operation stats (ms/op):;avg op:;15.15;min op:;15.11;max op:;15.21; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_SHA_ISO9796 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 08 00 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;676.00;545.00;537.00;539.00;547.00; +baseline stats (ms):;avg:;568.80;min:;537.00;max:;676.00;;;CHECK +operation raw measurements (ms):;309.20;438.20;313.20;312.20;315.20; +operation stats (ms/op):;avg op:;6.75;min op:;6.18;max op:;8.76;;CHECK +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 0c 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_SHA_ISO9796 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 0c 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_SHA_ISO9796 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 0c 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 10 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_SHA_ISO9796 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 10 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_SHA_ISO9796 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 10 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 02 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;192.00;142.00;148.00;145.00;145.00; +baseline stats (ms):;avg:;154.40;min:;142.00;max:;192.00;;;CHECK +operation raw measurements (ms):;2517.60;2520.60;2516.60;2518.60;2511.60; +operation stats (ms/op):;avg op:;50.34;min op:;50.23;max op:;50.41; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_SHA_PKCS1 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 02 00 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;196.00;143.00;146.00;146.00;146.00; +baseline stats (ms):;avg:;155.40;min:;143.00;max:;196.00;;;CHECK +operation raw measurements (ms):;365.60;365.60;365.60;366.60;365.60; +operation stats (ms/op):;avg op:;7.32;min op:;7.31;max op:;7.33; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_SHA_PKCS1 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 02 00 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;197.00;146.00;146.00;146.00;146.00; +baseline stats (ms):;avg:;156.20;min:;146.00;max:;197.00;;;CHECK +operation raw measurements (ms):;313.80;373.80;320.80;320.80;321.80; +operation stats (ms/op):;avg op:;6.60;min op:;6.28;max op:;7.48;;CHECK +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 02 e0 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;227.00;178.00;169.00;168.00;168.00; +baseline stats (ms):;avg:;182.00;min:;168.00;max:;227.00;;;CHECK +operation raw measurements (ms):;3650.00;3652.00;3660.00;3666.00;3663.00; +operation stats (ms/op):;avg op:;73.16;min op:;73.00;max op:;73.32; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_SHA_PKCS1 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 02 e0 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;229.00;167.00;450.00;168.00;169.00; +baseline stats (ms):;avg:;236.60;min:;167.00;max:;450.00;;;CHECK +operation raw measurements (ms):;338.40;337.40;340.40;339.40;339.40; +operation stats (ms/op):;avg op:;6.78;min op:;6.75;max op:;6.81; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_SHA_PKCS1 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 02 e0 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;228.00;179.00;169.00;239.00;169.00; +baseline stats (ms):;avg:;196.80;min:;169.00;max:;239.00;;;CHECK +operation raw measurements (ms):;295.20;365.20;303.20;304.20;304.20; +operation stats (ms/op):;avg op:;6.29;min op:;5.90;max op:;7.30;;CHECK +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 03 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;230.00;168.00;453.00;169.00;170.00; +baseline stats (ms):;avg:;238.00;min:;168.00;max:;453.00;;;CHECK +operation raw measurements (ms):;3651.00;3638.00;3644.00;3653.00;3647.00; +operation stats (ms/op):;avg op:;72.93;min op:;72.76;max op:;73.06; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_SHA_PKCS1 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 03 00 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;229.00;179.00;168.00;209.00;173.00; +baseline stats (ms):;avg:;191.60;min:;168.00;max:;229.00;;;CHECK +operation raw measurements (ms):;388.40;390.40;389.40;392.40;390.40; +operation stats (ms/op):;avg op:;7.80;min op:;7.77;max op:;7.85; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_SHA_PKCS1 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 03 00 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;226.00;165.00;471.00;168.00;168.00; +baseline stats (ms):;avg:;239.60;min:;165.00;max:;471.00;;;CHECK +operation raw measurements (ms):;254.40;326.40;261.40;262.40;261.40; +operation stats (ms/op):;avg op:;5.46;min op:;5.09;max op:;6.53;;CHECK +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 03 80 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;252.00;198.00;187.00;187.00;184.00; +baseline stats (ms):;avg:;201.60;min:;184.00;max:;252.00;;;CHECK +operation raw measurements (ms):;4555.40;4572.40;4556.40;4565.40;4572.40; +operation stats (ms/op):;avg op:;91.29;min op:;91.11;max op:;91.45; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_SHA_PKCS1 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 03 80 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;253.00;187.00;407.00;187.00;188.00; +baseline stats (ms):;avg:;244.40;min:;187.00;max:;407.00;;;CHECK +operation raw measurements (ms):;379.60;378.60;378.60;379.60;380.60; +operation stats (ms/op):;avg op:;7.59;min op:;7.57;max op:;7.61; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_SHA_PKCS1 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 03 80 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;254.00;196.00;186.00;189.00;191.00; +baseline stats (ms):;avg:;203.20;min:;186.00;max:;254.00;;;CHECK +operation raw measurements (ms):;309.80;389.80;315.80;315.80;315.80; +operation stats (ms/op):;avg op:;6.59;min op:;6.20;max op:;7.80;;CHECK +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 04 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;281.00;206.00;360.00;209.00;205.00; +baseline stats (ms):;avg:;252.20;min:;205.00;max:;360.00;;;CHECK +operation raw measurements (ms):;5543.80;5545.80;5549.80;5555.80;5543.80; +operation stats (ms/op):;avg op:;110.96;min op:;110.88;max op:;111.12; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_SHA_PKCS1 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 04 00 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;281.00;215.00;208.00;207.00;205.00; +baseline stats (ms):;avg:;223.20;min:;205.00;max:;281.00;;;CHECK +operation raw measurements (ms):;445.80;448.80;447.80;447.80;446.80; +operation stats (ms/op):;avg op:;8.95;min op:;8.92;max op:;8.98; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_SHA_PKCS1 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 04 00 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;280.00;207.00;338.00;206.00;204.00; +baseline stats (ms):;avg:;247.00;min:;204.00;max:;338.00;;;CHECK +operation raw measurements (ms):;288.00;371.00;293.00;295.00;293.00; +operation stats (ms/op):;avg op:;6.16;min op:;5.76;max op:;7.42;;CHECK +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 05 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;340.00;257.00;254.00;254.00;256.00; +baseline stats (ms):;avg:;272.20;min:;254.00;max:;340.00;;;CHECK +operation raw measurements (ms):;8103.80;8108.80;8107.80;8088.80;8106.80; +operation stats (ms/op):;avg op:;162.06;min op:;161.78;max op:;162.18; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_SHA_PKCS1 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 05 00 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;340.00;257.00;265.00;258.00;258.00; +baseline stats (ms):;avg:;275.60;min:;257.00;max:;340.00;;;CHECK +operation raw measurements (ms):;507.40;509.40;509.40;506.40;510.40; +operation stats (ms/op):;avg op:;10.17;min op:;10.13;max op:;10.21; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_SHA_PKCS1 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 05 00 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;339.00;260.00;259.00;257.00;257.00; +baseline stats (ms):;avg:;274.40;min:;257.00;max:;339.00;;;CHECK +operation raw measurements (ms):;311.60;404.60;318.60;320.60;317.60; +operation stats (ms/op):;avg op:;6.69;min op:;6.23;max op:;8.09;;CHECK +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 06 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;422.00;323.00;323.00;316.00;322.00; +baseline stats (ms):;avg:;341.20;min:;316.00;max:;422.00;;;CHECK +operation raw measurements (ms):;11458.80;11474.80;11447.80;11474.80;11428.80; +operation stats (ms/op):;avg op:;229.14;min op:;228.58;max op:;229.50; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_SHA_PKCS1 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 06 00 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;425.00;397.00;328.00;320.00;323.00; +baseline stats (ms):;avg:;358.60;min:;320.00;max:;425.00;;;CHECK +operation raw measurements (ms):;562.40;561.40;562.40;563.40;560.40; +operation stats (ms/op):;avg op:;11.24;min op:;11.21;max op:;11.27; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_SHA_PKCS1 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 06 00 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;422.00;328.00;327.00;324.00;322.00; +baseline stats (ms):;avg:;344.60;min:;322.00;max:;422.00;;;CHECK +operation raw measurements (ms):;309.40;415.40;316.40;320.40;317.40; +operation stats (ms/op):;avg op:;6.72;min op:;6.19;max op:;8.31;;CHECK +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 07 c0 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;624.00;493.00;497.00;497.00;502.00; +baseline stats (ms):;avg:;522.60;min:;493.00;max:;624.00;;;CHECK +operation raw measurements (ms):;20266.40;20259.40;20295.40;20237.40;20283.40; +operation stats (ms/op):;avg op:;405.37;min op:;404.75;max op:;405.91; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_SHA_PKCS1 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 07 c0 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;624.00;498.00;506.00;500.00;498.00; +baseline stats (ms):;avg:;525.20;min:;498.00;max:;624.00;;;CHECK +operation raw measurements (ms):;716.80;714.80;721.80;719.80;719.80; +operation stats (ms/op):;avg op:;14.37;min op:;14.30;max op:;14.44; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_SHA_PKCS1 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 07 c0 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;621.00;498.00;498.00;496.00;502.00; +baseline stats (ms):;avg:;523.00;min:;496.00;max:;621.00;;;CHECK +operation raw measurements (ms):;316.00;436.00;318.00;323.00;319.00; +operation stats (ms/op):;avg op:;6.85;min op:;6.32;max op:;8.72;;CHECK +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 08 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;671.00;536.00;554.00;540.00;538.00; +baseline stats (ms):;avg:;567.80;min:;536.00;max:;671.00;;;CHECK +operation raw measurements (ms):;22304.20;22259.20;22343.20;22350.20;22306.20; +operation stats (ms/op):;avg op:;446.25;min op:;445.18;max op:;447.00; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_SHA_PKCS1 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 08 00 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;673.00;539.00;545.00;541.00;543.00; +baseline stats (ms):;avg:;568.20;min:;539.00;max:;673.00;;;CHECK +operation raw measurements (ms):;741.80;741.80;738.80;739.80;738.80; +operation stats (ms/op):;avg op:;14.80;min op:;14.78;max op:;14.84; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_SHA_PKCS1 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 08 00 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;675.00;539.00;542.00;544.00;546.00; +baseline stats (ms):;avg:;569.20;min:;539.00;max:;675.00;;;CHECK +operation raw measurements (ms):;307.80;438.80;315.80;309.80;309.80; +operation stats (ms/op):;avg op:;6.73;min op:;6.16;max op:;8.78;;CHECK +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 0c 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_SHA_PKCS1 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 0c 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_SHA_PKCS1 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 0c 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 10 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_SHA_PKCS1 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 10 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_SHA_PKCS1 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 10 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 02 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;208.00;155.00;155.00;156.00;157.00; +baseline stats (ms):;avg:;166.20;min:;155.00;max:;208.00;;;CHECK +operation raw measurements (ms):;3053.80;3056.80;3048.80;3050.80;3053.80; +operation stats (ms/op):;avg op:;61.06;min op:;60.98;max op:;61.14; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_SHA_PKCS1_PSS Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 02 00 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;207.00;156.00;157.00;155.00;156.00; +baseline stats (ms):;avg:;166.20;min:;155.00;max:;207.00;;;CHECK +operation raw measurements (ms):;576.80;575.80;576.80;576.80;575.80; +operation stats (ms/op):;avg op:;11.53;min op:;11.52;max op:;11.54; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_SHA_PKCS1_PSS Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 02 00 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;206.00;157.00;157.00;156.00;155.00; +baseline stats (ms):;avg:;166.20;min:;155.00;max:;206.00;;;CHECK +operation raw measurements (ms):;313.80;370.80;320.80;321.80;320.80; +operation stats (ms/op):;avg op:;6.59;min op:;6.28;max op:;7.42;;CHECK +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 02 e0 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;238.00;190.00;180.00;199.00;178.00; +baseline stats (ms):;avg:;197.00;min:;178.00;max:;238.00;;;CHECK +operation raw measurements (ms):;4250.00;4252.00;4246.00;4257.00;4257.00; +operation stats (ms/op):;avg op:;85.05;min op:;84.92;max op:;85.14; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_SHA_PKCS1_PSS Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 02 e0 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;238.00;181.00;441.00;182.00;179.00; +baseline stats (ms):;avg:;244.20;min:;179.00;max:;441.00;;;CHECK +operation raw measurements (ms):;605.80;604.80;605.80;604.80;606.80; +operation stats (ms/op):;avg op:;12.11;min op:;12.10;max op:;12.14; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_SHA_PKCS1_PSS Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 02 e0 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;240.00;191.00;179.00;182.00;186.00; +baseline stats (ms):;avg:;195.60;min:;179.00;max:;240.00;;;CHECK +operation raw measurements (ms):;312.40;379.40;316.40;317.40;317.40; +operation stats (ms/op):;avg op:;6.57;min op:;6.25;max op:;7.59;;CHECK +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 03 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;243.00;182.00;434.00;182.00;181.00; +baseline stats (ms):;avg:;244.40;min:;181.00;max:;434.00;;;CHECK +operation raw measurements (ms):;4250.60;4253.60;4249.60;4252.60;4251.60; +operation stats (ms/op):;avg op:;85.03;min op:;84.99;max op:;85.07; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_SHA_PKCS1_PSS Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 03 00 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;241.00;191.00;182.00;193.00;182.00; +baseline stats (ms):;avg:;197.80;min:;182.00;max:;241.00;;;CHECK +operation raw measurements (ms):;658.20;659.20;659.20;657.20;659.20; +operation stats (ms/op):;avg op:;13.17;min op:;13.14;max op:;13.18; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_SHA_PKCS1_PSS Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 03 00 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;242.00;181.00;405.00;180.00;181.00; +baseline stats (ms):;avg:;237.80;min:;180.00;max:;405.00;;;CHECK +operation raw measurements (ms):;270.20;341.20;276.20;276.20;274.20; +operation stats (ms/op):;avg op:;5.75;min op:;5.40;max op:;6.82;;CHECK +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 03 80 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;266.00;209.00;201.00;200.00;198.00; +baseline stats (ms):;avg:;214.80;min:;198.00;max:;266.00;;;CHECK +operation raw measurements (ms):;5212.20;5210.20;5219.20;5235.20;5216.20; +operation stats (ms/op):;avg op:;104.37;min op:;104.20;max op:;104.70; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_SHA_PKCS1_PSS Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 03 80 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;265.00;198.00;368.00;200.00;199.00; +baseline stats (ms):;avg:;246.00;min:;198.00;max:;368.00;;;CHECK +operation raw measurements (ms):;703.00;705.00;702.00;706.00;706.00; +operation stats (ms/op):;avg op:;14.09;min op:;14.04;max op:;14.12; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_SHA_PKCS1_PSS Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 03 80 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;266.00;209.00;201.00;201.00;199.00; +baseline stats (ms):;avg:;215.20;min:;199.00;max:;266.00;;;CHECK +operation raw measurements (ms):;310.80;389.80;317.80;317.80;319.80; +operation stats (ms/op):;avg op:;6.62;min op:;6.22;max op:;7.80;;CHECK +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 04 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;295.00;219.00;324.00;221.00;223.00; +baseline stats (ms):;avg:;256.40;min:;219.00;max:;324.00;;;CHECK +operation raw measurements (ms):;6246.60;6268.60;6258.60;6254.60;6260.60; +operation stats (ms/op):;avg op:;125.16;min op:;124.93;max op:;125.37; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_SHA_PKCS1_PSS Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 04 00 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;294.00;232.00;220.00;220.00;222.00; +baseline stats (ms):;avg:;237.60;min:;220.00;max:;294.00;;;CHECK +operation raw measurements (ms):;813.40;812.40;809.40;814.40;814.40; +operation stats (ms/op):;avg op:;16.26;min op:;16.19;max op:;16.29; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_SHA_PKCS1_PSS Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 04 00 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;295.00;220.00;335.00;222.00;221.00; +baseline stats (ms):;avg:;258.60;min:;220.00;max:;335.00;;;CHECK +operation raw measurements (ms):;290.40;370.40;296.40;296.40;295.40; +operation stats (ms/op):;avg op:;6.20;min op:;5.81;max op:;7.41;;CHECK +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 05 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;355.00;274.00;272.00;273.00;272.00; +baseline stats (ms):;avg:;289.20;min:;272.00;max:;355.00;;;CHECK +operation raw measurements (ms):;8832.80;8856.80;8851.80;8852.80;8855.80; +operation stats (ms/op):;avg op:;177.00;min op:;176.66;max op:;177.14; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_SHA_PKCS1_PSS Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 05 00 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;355.00;273.00;281.00;272.00;273.00; +baseline stats (ms):;avg:;290.80;min:;272.00;max:;355.00;;;CHECK +operation raw measurements (ms):;927.20;927.20;923.20;926.20;925.20; +operation stats (ms/op):;avg op:;18.52;min op:;18.46;max op:;18.54; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_SHA_PKCS1_PSS Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 05 00 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;353.00;500.00;272.00;271.00;272.00; +baseline stats (ms):;avg:;333.60;min:;271.00;max:;500.00;;;CHECK +operation raw measurements (ms):;268.40;361.40;272.40;273.40;270.40; +operation stats (ms/op):;avg op:;5.78;min op:;5.37;max op:;7.23;;CHECK +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 06 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;445.00;340.00;342.00;340.00;343.00; +baseline stats (ms):;avg:;362.00;min:;340.00;max:;445.00;;;CHECK +operation raw measurements (ms):;12330.00;12308.00;12302.00;12331.00;12331.00; +operation stats (ms/op):;avg op:;246.41;min op:;246.04;max op:;246.62; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_SHA_PKCS1_PSS Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 06 00 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;444.00;354.00;344.00;338.00;337.00; +baseline stats (ms):;avg:;363.40;min:;337.00;max:;444.00;;;CHECK +operation raw measurements (ms):;1097.60;1096.60;1096.60;1099.60;1097.60; +operation stats (ms/op):;avg op:;21.95;min op:;21.93;max op:;21.99; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_SHA_PKCS1_PSS Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 06 00 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;440.00;342.00;344.00;339.00;336.00; +baseline stats (ms):;avg:;360.20;min:;336.00;max:;440.00;;;CHECK +operation raw measurements (ms):;308.80;419.80;321.80;322.80;322.80; +operation stats (ms/op):;avg op:;6.78;min op:;6.18;max op:;8.40;;CHECK +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 07 c0 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;643.00;520.00;523.00;527.00;525.00; +baseline stats (ms):;avg:;547.60;min:;520.00;max:;643.00;;;CHECK +operation raw measurements (ms):;21301.40;21291.40;21292.40;21271.40;21263.40; +operation stats (ms/op):;avg op:;425.68;min op:;425.27;max op:;426.03; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_SHA_PKCS1_PSS Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 07 c0 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;643.00;517.00;525.00;522.00;514.00; +baseline stats (ms):;avg:;544.20;min:;514.00;max:;643.00;;;CHECK +operation raw measurements (ms):;1398.80;1396.80;1402.80;1400.80;1402.80; +operation stats (ms/op):;avg op:;28.01;min op:;27.94;max op:;28.06; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_SHA_PKCS1_PSS Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 07 c0 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;643.00;517.00;518.00;518.00;523.00; +baseline stats (ms):;avg:;543.80;min:;517.00;max:;643.00;;;CHECK +operation raw measurements (ms):;314.20;441.20;318.20;322.20;315.20; +operation stats (ms/op):;avg op:;6.84;min op:;6.28;max op:;8.82;;CHECK +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 08 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;690.00;556.00;561.00;577.00;556.00; +baseline stats (ms):;avg:;588.00;min:;556.00;max:;690.00;;;CHECK +operation raw measurements (ms):;23334.00;23343.00;23341.00;23301.00;23334.00; +operation stats (ms/op):;avg op:;466.61;min op:;466.02;max op:;466.86; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_SHA_PKCS1_PSS Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 08 00 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;696.00;560.00;572.00;560.00;563.00; +baseline stats (ms):;avg:;590.20;min:;560.00;max:;696.00;;;CHECK +operation raw measurements (ms):;1418.80;1420.80;1419.80;1415.80;1414.80; +operation stats (ms/op):;avg op:;28.36;min op:;28.30;max op:;28.42; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_SHA_PKCS1_PSS Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 08 00 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;697.00;557.00;560.00;557.00;560.00; +baseline stats (ms):;avg:;586.20;min:;557.00;max:;697.00;;;CHECK +operation raw measurements (ms):;305.80;439.80;320.80;314.80;316.80; +operation stats (ms/op):;avg op:;6.79;min op:;6.12;max op:;8.80;;CHECK +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 0c 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_SHA_PKCS1_PSS Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 0c 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_SHA_PKCS1_PSS Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 0c 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 10 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_SHA_PKCS1_PSS Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 10 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_SHA_PKCS1_PSS Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 10 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 02 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_SHA_RFC2409 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 02 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_SHA_RFC2409 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 02 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 02 e0 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_SHA_RFC2409 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 02 e0 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_SHA_RFC2409 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 02 e0 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 03 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_SHA_RFC2409 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 03 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_SHA_RFC2409 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 03 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 03 80 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_SHA_RFC2409 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 03 80 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_SHA_RFC2409 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 03 80 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 04 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_SHA_RFC2409 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 04 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_SHA_RFC2409 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 04 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 05 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_SHA_RFC2409 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 05 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_SHA_RFC2409 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 05 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 06 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_SHA_RFC2409 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 06 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_SHA_RFC2409 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 06 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 07 c0 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_SHA_RFC2409 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 07 c0 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_SHA_RFC2409 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 07 c0 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 08 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_SHA_RFC2409 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 08 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_SHA_RFC2409 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 08 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 0c 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_SHA_RFC2409 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 0c 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_SHA_RFC2409 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 0c 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 10 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_SHA_RFC2409 Signature_verify() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 10 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_SHA_RFC2409 Signature_init() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 10 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - END + + +CHECKSUM + +method name:; ALG_ISO3309_CRC16 Checksum_update() +measurement config:;appletPrepareINS;35;appletMeasureINS;46;config;00 17 00 01 ff ff ff ff ff ff 00 01 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;69.00;68.00;68.00;66.00;67.00; +baseline stats (ms):;avg:;67.60;min:;66.00;max:;69.00; +operation raw measurements (ms):;25.40;24.40;25.40;26.40;25.40; +operation stats (ms/op):;avg op:;0.51;min op:;0.49;max op:;0.53; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_ISO3309_CRC16 Checksum_doFinal() +measurement config:;appletPrepareINS;35;appletMeasureINS;46;config;00 17 00 01 ff ff ff ff ff ff 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;69.00;66.00;68.00;67.00;67.00; +baseline stats (ms):;avg:;67.40;min:;66.00;max:;69.00; +operation raw measurements (ms):;32.60;31.60;31.60;31.60;33.60; +operation stats (ms/op):;avg op:;0.64;min op:;0.63;max op:;0.67; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_ISO3309_CRC32 Checksum_update() +measurement config:;appletPrepareINS;35;appletMeasureINS;46;config;00 17 00 02 ff ff ff ff ff ff 00 01 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;69.00;68.00;68.00;67.00;69.00; +baseline stats (ms):;avg:;68.20;min:;67.00;max:;69.00; +operation raw measurements (ms):;14.80;11.80;10.80;16.80;10.80; +operation stats (ms/op):;avg op:;0.26;min op:;0.22;max op:;0.34;;CHECK +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; ALG_ISO3309_CRC32 Checksum_doFinal() +measurement config:;appletPrepareINS;35;appletMeasureINS;46;config;00 17 00 02 ff ff ff ff ff ff 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;67.00;68.00;67.00;69.00;68.00; +baseline stats (ms):;avg:;67.80;min:;67.00;max:;69.00; +operation raw measurements (ms):;23.20;23.20;23.20;22.20;23.20; +operation stats (ms/op):;avg op:;0.46;min op:;0.44;max op:;0.46; +operation info:;data length;256;total iterations;250;total invocations;250; + + +CHECKSUM - END + + +AESKey + +method name:; TYPE_AES LENGTH_AES_128 setKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 0f 00 80 00 01 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;77.00;78.00;77.00;74.00;77.00; +baseline stats (ms):;avg:;77.25;min:;74.00;max:;78.00; +operation raw measurements (ms):;714.75;716.75;715.75;716.75;716.75; +operation stats (ms/op):;avg op:;14.32;min op:;14.30;max op:;14.34; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_AES LENGTH_AES_128 getKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 0f 00 80 00 03 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;78.00;77.00;461.00;77.00;76.00; +baseline stats (ms):;avg:;153.80;min:;76.00;max:;461.00;;;CHECK +operation raw measurements (ms):;-36.80;-36.80;-36.80;-36.80;-36.80; +operation stats (ms/op):;avg op:;-0.74;min op:;-0.74;max op:;-0.74; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_AES LENGTH_AES_128 clearKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 0f 00 80 00 02 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;75.00;480.00;78.00;76.00;77.00; +baseline stats (ms):;avg:;157.20;min:;75.00;max:;480.00;;;CHECK +operation raw measurements (ms):;947.48;948.48;948.48;948.48;948.48; +operation stats (ms/op):;avg op:;18.97;min op:;18.95;max op:;18.97; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_AES LENGTH_AES_192 setKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 0f 00 c0 00 01 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;77.00;77.00;457.00;77.00;77.00; +baseline stats (ms):;avg:;153.00;min:;77.00;max:;457.00;;;CHECK +operation raw measurements (ms):;776.00;776.00;776.00;776.00;776.00; +operation stats (ms/op):;avg op:;15.52;min op:;15.52;max op:;15.52; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_AES LENGTH_AES_192 getKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 0f 00 c0 00 03 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;77.00;77.00;77.00;76.00;76.00; +baseline stats (ms):;avg:;76.60;min:;76.00;max:;77.00; +operation raw measurements (ms):;52.40;51.40;51.40;50.40;51.40; +operation stats (ms/op):;avg op:;1.03;min op:;1.01;max op:;1.05; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_AES LENGTH_AES_192 clearKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 0f 00 c0 00 02 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;77.00;76.00;482.00;77.00;82.00; +baseline stats (ms):;avg:;158.80;min:;76.00;max:;482.00;;;CHECK +operation raw measurements (ms):;1203.68;1203.68;1203.68;1203.68;1203.68; +operation stats (ms/op):;avg op:;24.07;min op:;24.07;max op:;24.07; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_AES LENGTH_AES_256 setKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 0f 01 00 00 01 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;76.00;77.00;75.00;73.00;75.00; +baseline stats (ms):;avg:;75.20;min:;73.00;max:;77.00; +operation raw measurements (ms):;851.80;853.80;853.80;851.80;852.80; +operation stats (ms/op):;avg op:;17.06;min op:;17.04;max op:;17.08; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_AES LENGTH_AES_256 getKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 0f 01 00 00 03 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;77.00;77.00;77.00;77.00;77.00; +baseline stats (ms):;avg:;77.00;min:;77.00;max:;77.00; +operation raw measurements (ms):;51.00;52.00;52.00;52.00;52.00; +operation stats (ms/op):;avg op:;1.04;min op:;1.02;max op:;1.04; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_AES LENGTH_AES_256 clearKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 0f 01 00 00 02 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;77.00;312.00;78.00;77.00;77.00; +baseline stats (ms):;avg:;124.20;min:;77.00;max:;312.00;;;CHECK +operation raw measurements (ms):;1237.74;1236.74;1237.74;1236.74;1236.74; +operation stats (ms/op):;avg op:;24.74;min op:;24.73;max op:;24.75; +operation info:;data length;256;total iterations;250;total invocations;250; + + +AESKey - END + + +DESKey +method name:; TYPE_DES LENGTH_DES_64 setKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 03 00 40 00 02 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;77.00;77.00;76.00;76.00;78.00; +baseline stats (ms):;avg:;76.80;min:;76.00;max:;78.00; +operation raw measurements (ms):;726.20;729.20;728.20;728.20;728.20; +operation stats (ms/op):;avg op:;14.56;min op:;14.52;max op:;14.58; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES_64 getKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 03 00 40 00 01 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;77.00;77.00;77.00;76.00;77.00; +baseline stats (ms):;avg:;77.00;min:;76.00;max:;77.00; +operation raw measurements (ms):;43.00;42.00;42.00;41.00;42.00; +operation stats (ms/op):;avg op:;0.84;min op:;0.82;max op:;0.86; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES_64 clearKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 03 00 40 00 03 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;76.00;77.00;78.00;77.00;78.00; +baseline stats (ms):;avg:;77.20;min:;76.00;max:;78.00; +operation raw measurements (ms):;1050.80;1052.80;1051.80;1051.80;1052.80; +operation stats (ms/op):;avg op:;21.04;min op:;21.02;max op:;21.06; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES_128 setKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 03 00 80 00 02 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;76.00;77.00;78.00;77.00;76.00; +baseline stats (ms):;avg:;76.80;min:;76.00;max:;78.00; +operation raw measurements (ms):;730.20;732.20;732.20;733.20;732.20; +operation stats (ms/op):;avg op:;14.64;min op:;14.60;max op:;14.66; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES_128 getKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 03 00 80 00 01 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;77.00;77.00;78.00;77.00;77.00; +baseline stats (ms):;avg:;77.20;min:;77.00;max:;78.00; +operation raw measurements (ms):;41.80;41.80;41.80;40.80;41.80; +operation stats (ms/op):;avg op:;0.83;min op:;0.82;max op:;0.84; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES_128 clearKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 03 00 80 00 03 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;77.00;79.00;76.00;77.00;76.00; +baseline stats (ms):;avg:;77.00;min:;76.00;max:;79.00; +operation raw measurements (ms):;1056.00;1056.00;1057.00;1078.00;1051.00; +operation stats (ms/op):;avg op:;21.19;min op:;21.02;max op:;21.56; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES_192 setKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 03 00 c0 00 02 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;77.00;76.00;76.00;77.00;77.00; +baseline stats (ms):;avg:;76.60;min:;76.00;max:;77.00; +operation raw measurements (ms):;886.40;887.40;886.40;887.40;886.40; +operation stats (ms/op):;avg op:;17.74;min op:;17.73;max op:;17.75; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES_192 getKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 03 00 c0 00 01 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;77.00;77.00;77.00;78.00;77.00; +baseline stats (ms):;avg:;77.20;min:;77.00;max:;78.00; +operation raw measurements (ms):;54.80;54.80;54.80;54.80;53.80; +operation stats (ms/op):;avg op:;1.09;min op:;1.08;max op:;1.10; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_DES LENGTH_DES_192 clearKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 03 00 c0 00 03 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;78.00;77.00;77.00;76.00;77.00; +baseline stats (ms):;avg:;77.25;min:;76.00;max:;78.00; +operation raw measurements (ms):;1336.75;1334.75;1334.75;1334.75;1334.75; +operation stats (ms/op):;avg op:;26.70;min op:;26.70;max op:;26.74; +operation info:;data length;256;total iterations;250;total invocations;250; + + +DESKey - END + + +KoreanSEEDKey +method name:; TYPE_KOREAN_SEED LENGTH_KOREAN_SEED_128 setKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 12 00 80 00 02 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_KOREAN_SEED LENGTH_KOREAN_SEED_128 getKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 12 00 80 00 01 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_KOREAN_SEED LENGTH_KOREAN_SEED_128 clearKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 12 00 80 00 03 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + + +KoreanSEEDKey - END + + +DSAPrivateKey +method name:; TYPE_DSA_PRIVATE LENGTH_DSA_512 setX() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 08 02 00 00 01 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DSA_PRIVATE LENGTH_DSA_512 getX() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 08 02 00 00 02 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DSA_PRIVATE LENGTH_DSA_512 clearKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 08 02 00 00 03 01 00 ff ff ff ff 00 01 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DSA_PRIVATE LENGTH_DSA_768 setX() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 08 03 00 00 01 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DSA_PRIVATE LENGTH_DSA_768 getX() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 08 03 00 00 02 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DSA_PRIVATE LENGTH_DSA_768 clearKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 08 03 00 00 03 01 00 ff ff ff ff 00 01 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DSA_PRIVATE LENGTH DSA_1024 setX() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 08 04 00 00 01 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DSA_PRIVATE LENGTH DSA_1024 getX() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 08 04 00 00 02 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DSA_PRIVATE LENGTH DSA_1024 clearKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 08 04 00 00 03 01 00 ff ff ff ff 00 01 00 01 +NO_SUCH_ALGORITHM + + +DSAPrivateKey - END + + +DSAPublicKey +method name:; TYPE_DSA_PUBLIC LENGTH_DSA_512 setY() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 07 02 00 00 02 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DSA_PUBLIC LENGTH_DSA_512 getY() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 07 02 00 00 01 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DSA_PUBLIC LENGTH_DSA_512 clearKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 07 02 00 00 03 01 00 ff ff ff ff 00 01 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DSA_PUBLIC LENGTH_DSA_768 setY() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 07 03 00 00 02 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DSA_PUBLIC LENGTH_DSA_768 getY() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 07 03 00 00 01 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DSA_PUBLIC LENGTH_DSA_768 clearKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 07 03 00 00 03 01 00 ff ff ff ff 00 01 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DSA_PUBLIC LENGTH_DSA_1024 setY() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 07 04 00 00 02 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DSA_PUBLIC LENGTH_DSA_1024 getY() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 07 04 00 00 01 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DSA_PUBLIC LENGTH_DSA_1024 clearKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 07 04 00 00 03 01 00 ff ff ff ff 00 01 00 01 +NO_SUCH_ALGORITHM + + +DSAPublicKey - END + + +ECF2MPublicKey +method name:; TYPE_EC_F2M_PUBLIC LENGTH_EC_F2M_113 setW() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff 00 04 00 09 00 71 00 01 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_EC_F2M_PUBLIC LENGTH_EC_F2M_113 getW() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff 00 04 00 09 00 71 00 02 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_EC_F2M_PUBLIC LENGTH_EC_F2M_113 clearKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff 00 04 00 09 00 71 00 03 01 00 ff ff ff ff 00 01 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_EC_F2M_PUBLIC LENGTH_EC_F2M_131 setW() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff 00 04 00 09 00 83 00 01 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_EC_F2M_PUBLIC LENGTH_EC_F2M_131 getW() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff 00 04 00 09 00 83 00 02 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_EC_F2M_PUBLIC LENGTH_EC_F2M_131 clearKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff 00 04 00 09 00 83 00 03 01 00 ff ff ff ff 00 01 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_EC_F2M_PUBLIC LENGTH_EC_F2M_163 setW() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff 00 04 00 09 00 a3 00 01 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_EC_F2M_PUBLIC LENGTH_EC_F2M_163 getW() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff 00 04 00 09 00 a3 00 02 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_EC_F2M_PUBLIC LENGTH_EC_F2M_163 clearKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff 00 04 00 09 00 a3 00 03 01 00 ff ff ff ff 00 01 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_EC_F2M_PUBLIC LENGTH_EC_F2M_193 setW() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff 00 04 00 09 00 c1 00 01 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_EC_F2M_PUBLIC LENGTH_EC_F2M_193 getW() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff 00 04 00 09 00 c1 00 02 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_EC_F2M_PUBLIC LENGTH_EC_F2M_193 clearKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff 00 04 00 09 00 c1 00 03 01 00 ff ff ff ff 00 01 00 01 +NO_SUCH_ALGORITHM + + +ECF2MPublicKey - END + + +ECF2MPrivateKey +method name:; TYPE_EC_F2M_PRIVATE LENGTH_EC_F2M_113 setW() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff 00 04 00 0a 00 71 00 01 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_EC_F2M_PRIVATE LENGTH_EC_F2M_113 getW() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff 00 04 00 0a 00 71 00 02 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_EC_F2M_PRIVATE LENGTH_EC_F2M_113 clearKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff 00 04 00 0a 00 71 00 03 01 00 ff ff ff ff 00 01 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_EC_F2M_PRIVATE LENGTH_EC_F2M_131 setW() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff 00 04 00 0a 00 83 00 01 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_EC_F2M_PRIVATE LENGTH_EC_F2M_131 getW() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff 00 04 00 0a 00 83 00 02 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_EC_F2M_PRIVATE LENGTH_EC_F2M_131 clearKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff 00 04 00 0a 00 83 00 03 01 00 ff ff ff ff 00 01 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_EC_F2M_PRIVATE LENGTH_EC_F2M_163 setW() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff 00 04 00 0a 00 a3 00 01 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_EC_F2M_PRIVATE LENGTH_EC_F2M_163 getW() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff 00 04 00 0a 00 a3 00 02 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_EC_F2M_PRIVATE LENGTH_EC_F2M_163 clearKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff 00 04 00 0a 00 a3 00 03 01 00 ff ff ff ff 00 01 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_EC_F2M_PRIVATE LENGTH_EC_F2M_193 setW() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff 00 04 00 0a 00 c1 00 01 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_EC_F2M_PRIVATE LENGTH_EC_F2M_193 getW() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff 00 04 00 0a 00 c1 00 02 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_EC_F2M_PRIVATE LENGTH_EC_F2M_193 clearKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff 00 04 00 0a 00 c1 00 03 01 00 ff ff ff ff 00 01 00 01 +NO_SUCH_ALGORITHM + + +ECF2MPrivateKey - END + + +ECFPPublicKey +method name:; TYPE_EC_FP_PUBLIC LENGTH_EC_FP_112 setW() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff 00 05 00 0b 00 70 00 01 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_EC_FP_PUBLIC LENGTH_EC_FP_112 getW() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff 00 05 00 0b 00 70 00 02 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_EC_FP_PUBLIC LENGTH_EC_FP_112 clearKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff 00 05 00 0b 00 70 00 03 01 00 ff ff ff ff 00 01 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_EC_FP_PUBLIC LENGTH_EC_FP_128 setW() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff 00 05 00 0b 00 80 00 01 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_EC_FP_PUBLIC LENGTH_EC_FP_128 getW() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff 00 05 00 0b 00 80 00 02 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_EC_FP_PUBLIC LENGTH_EC_FP_128 clearKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff 00 05 00 0b 00 80 00 03 01 00 ff ff ff ff 00 01 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_EC_FP_PUBLIC LENGTH_EC_FP_160 setW() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff 00 05 00 0b 00 a0 00 01 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;94.00;100.00;98.00;99.00;99.00; +baseline stats (ms):;avg:;99.00;min:;94.00;max:;100.00;;;CHECK +operation raw measurements (ms):;745.00;747.00;746.00;746.00;746.00; +operation stats (ms/op):;avg op:;14.92;min op:;14.90;max op:;14.94; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_EC_FP_PUBLIC LENGTH_EC_FP_160 getW() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff 00 05 00 0b 00 a0 00 02 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;95.00;99.00;98.00;98.00;99.00; +baseline stats (ms):;avg:;98.50;min:;95.00;max:;99.00; +operation raw measurements (ms):;38.50;38.50;39.50;38.50;38.50; +operation stats (ms/op):;avg op:;0.77;min op:;0.77;max op:;0.79; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_EC_FP_PUBLIC LENGTH_EC_FP_160 clearKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff 00 05 00 0b 00 a0 00 03 01 00 ff ff ff ff 00 01 00 01 +baseline measurements (ms):;89.00;100.00;98.00;99.00;98.00; +baseline stats (ms):;avg:;98.75;min:;89.00;max:;100.00;;;CHECK +operation raw measurements (ms):;7.25; +operation stats (ms/op):;avg op:;7.25;min op:;7.25;max op:;7.25; +operation info:;data length;256;total iterations;1;total invocations;1; + +method name:; TYPE_EC_FP_PUBLIC LENGTH_EC_FP_192 setW() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff 00 05 00 0b 00 c0 00 01 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;92.00;101.00;99.00;99.00;97.00; +baseline stats (ms):;avg:;99.00;min:;92.00;max:;101.00;;;CHECK +operation raw measurements (ms):;797.00;797.00;795.00;796.00;796.00; +operation stats (ms/op):;avg op:;15.92;min op:;15.90;max op:;15.94; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_EC_FP_PUBLIC LENGTH_EC_FP_192 getW() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff 00 05 00 0b 00 c0 00 02 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;94.00;99.00;100.00;99.00;99.00; +baseline stats (ms):;avg:;99.25;min:;94.00;max:;100.00;;;CHECK +operation raw measurements (ms):;39.75;39.75;39.75;39.75;40.75; +operation stats (ms/op):;avg op:;0.80;min op:;0.80;max op:;0.82; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_EC_FP_PUBLIC LENGTH_EC_FP_192 clearKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff 00 05 00 0b 00 c0 00 03 01 00 ff ff ff ff 00 01 00 01 +baseline measurements (ms):;89.00;100.00;99.00;99.00;98.00; +baseline stats (ms):;avg:;99.00;min:;89.00;max:;100.00;;;CHECK +operation raw measurements (ms):;13.00; +operation stats (ms/op):;avg op:;13.00;min op:;13.00;max op:;13.00; +operation info:;data length;256;total iterations;1;total invocations;1; + +method name:; TYPE_EC_FP_PUBLIC LENGTH_EC_FP_224 setW() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff 00 05 00 0b 00 e0 00 01 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;95.00;100.00;98.00;99.00;98.00; +baseline stats (ms):;avg:;98.75;min:;95.00;max:;100.00; +operation raw measurements (ms):;1079.25;1077.25;1076.25;1077.25;1077.25; +operation stats (ms/op):;avg op:;21.55;min op:;21.53;max op:;21.59; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_EC_FP_PUBLIC LENGTH_EC_FP_224 getW() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff 00 05 00 0b 00 e0 00 02 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;94.00;100.00;99.00;98.00;99.00; +baseline stats (ms):;avg:;99.00;min:;94.00;max:;100.00;;;CHECK +operation raw measurements (ms):;43.00;42.00;43.00;42.00;42.00; +operation stats (ms/op):;avg op:;0.85;min op:;0.84;max op:;0.86; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_EC_FP_PUBLIC LENGTH_EC_FP_224 clearKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff 00 05 00 0b 00 e0 00 03 01 00 ff ff ff ff 00 01 00 01 +baseline measurements (ms):;88.00;101.00;101.00;98.00;98.00; +baseline stats (ms):;avg:;99.50;min:;88.00;max:;101.00;;;CHECK +operation raw measurements (ms):;15.50; +operation stats (ms/op):;avg op:;15.50;min op:;15.50;max op:;15.50; +operation info:;data length;256;total iterations;1;total invocations;1; + +method name:; TYPE_EC_FP_PUBLIC LENGTH_EC_FP_256 setW() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff 00 05 00 0b 01 00 00 01 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;95.00;99.00;99.00;100.00;99.00; +baseline stats (ms):;avg:;99.25;min:;95.00;max:;100.00; +operation raw measurements (ms):;1007.75;1007.75;1008.75;1007.75;1007.75; +operation stats (ms/op):;avg op:;20.16;min op:;20.16;max op:;20.18; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_EC_FP_PUBLIC LENGTH_EC_FP_256 getW() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff 00 05 00 0b 01 00 00 02 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;95.00;100.00;100.00;100.00;100.00; +baseline stats (ms):;avg:;100.00;min:;95.00;max:;100.00; +operation raw measurements (ms):;44.00;42.00;43.00;44.00;43.00; +operation stats (ms/op):;avg op:;0.86;min op:;0.84;max op:;0.88; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_EC_FP_PUBLIC LENGTH_EC_FP_256 clearKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff 00 05 00 0b 01 00 00 03 01 00 ff ff ff ff 00 01 00 01 +baseline measurements (ms):;89.00;101.00;102.00;99.00;98.00; +baseline stats (ms):;avg:;100.00;min:;89.00;max:;102.00;;;CHECK +operation raw measurements (ms):;16.00; +operation stats (ms/op):;avg op:;16.00;min op:;16.00;max op:;16.00; +operation info:;data length;256;total iterations;1;total invocations;1; + +method name:; TYPE_EC_FP_PUBLIC LENGTH_EC_FP_384 setW() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff 00 05 00 0b 01 80 00 01 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;96.00;100.00;110.00;100.00;99.00; +baseline stats (ms):;avg:;101.00;min:;96.00;max:;110.00;;;CHECK +operation raw measurements (ms):;1194.00;1195.00;1197.00;1196.00;1196.00; +operation stats (ms/op):;avg op:;23.91;min op:;23.88;max op:;23.94; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_EC_FP_PUBLIC LENGTH_EC_FP_384 getW() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff 00 05 00 0b 01 80 00 02 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;95.00;101.00;99.00;100.00;99.00; +baseline stats (ms):;avg:;99.75;min:;95.00;max:;101.00; +operation raw measurements (ms):;50.25;50.25;50.25;52.25;51.25; +operation stats (ms/op):;avg op:;1.02;min op:;1.01;max op:;1.05; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_EC_FP_PUBLIC LENGTH_EC_FP_384 clearKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff 00 05 00 0b 01 80 00 03 01 00 ff ff ff ff 00 01 00 01 +baseline measurements (ms):;90.00;101.00;100.00;100.00;100.00; +baseline stats (ms):;avg:;100.25;min:;90.00;max:;101.00;;;CHECK +operation raw measurements (ms):;28.75; +operation stats (ms/op):;avg op:;28.75;min op:;28.75;max op:;28.75; +operation info:;data length;256;total iterations;1;total invocations;1; + +method name:; TYPE_EC_FP_PUBLIC LENGTH_EC_FP_521 setW() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff 00 05 00 0b 02 09 00 01 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;95.00;100.00;99.00;100.00;100.00; +baseline stats (ms):;avg:;99.75;min:;95.00;max:;100.00; +operation raw measurements (ms):;1598.25;1623.25;1620.25;1621.25;1621.25; +operation stats (ms/op):;avg op:;32.34;min op:;31.97;max op:;32.47; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_EC_FP_PUBLIC LENGTH_EC_FP_521 getW() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff 00 05 00 0b 02 09 00 02 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;95.00;100.00;108.00;100.00;306.00; +baseline stats (ms):;avg:;141.80;min:;95.00;max:;306.00;;;CHECK +operation raw measurements (ms):;17.20;18.20;18.20;18.20;19.20; +operation stats (ms/op):;avg op:;0.36;min op:;0.34;max op:;0.38;;CHECK +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_EC_FP_PUBLIC LENGTH_EC_FP_521 clearKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff 00 05 00 0b 02 09 00 03 01 00 ff ff ff ff 00 01 00 01 +baseline measurements (ms):;90.00;101.00;99.00;100.00;100.00; +baseline stats (ms):;avg:;100.00;min:;90.00;max:;101.00;;;CHECK +operation raw measurements (ms):;88.00; +operation stats (ms/op):;avg op:;88.00;min op:;88.00;max op:;88.00; +operation info:;data length;256;total iterations;1;total invocations;1; + + +ECFPPublicKey - END + + +ECFPPrivateKey +method name:; TYPE_EC_FP PRIVATE LENGTH_EC_FP_112 setS() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff 00 05 00 0c 00 70 00 01 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_EC_FP PRIVATE LENGTH_EC_FP_112 getS() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff 00 05 00 0c 00 70 00 02 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_EC_FP PRIVATE LENGTH_EC_FP_112 clearKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff 00 05 00 0c 00 70 00 03 01 00 ff ff ff ff 00 01 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_EC_FP PRIVATE LENGTH_EC_FP_128 setS() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff 00 05 00 0c 00 80 00 01 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_EC_FP PRIVATE LENGTH_EC_FP_128 getS() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff 00 05 00 0c 00 80 00 02 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_EC_FP PRIVATE LENGTH_EC_FP_128 clearKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff 00 05 00 0c 00 80 00 03 01 00 ff ff ff ff 00 01 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_EC_FP PRIVATE LENGTH_EC_FP_160 setS() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff 00 05 00 0c 00 a0 00 01 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;99.00;104.00;104.00;105.00;104.00; +baseline stats (ms):;avg:;104.25;min:;99.00;max:;105.00;;;CHECK +operation raw measurements (ms):;1324.75;1308.75;1307.75;1308.75;1308.75; +operation stats (ms/op):;avg op:;26.24;min op:;26.16;max op:;26.50; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_EC_FP PRIVATE LENGTH_EC_FP_160 getS() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff 00 05 00 0c 00 a0 00 02 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;100.00;104.00;104.00;104.00;105.00; +baseline stats (ms):;avg:;104.25;min:;100.00;max:;105.00; +operation raw measurements (ms):;171.75;171.75;169.75;170.75;169.75; +operation stats (ms/op):;avg op:;3.42;min op:;3.40;max op:;3.44; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_EC_FP PRIVATE LENGTH_EC_FP_160 clearKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff 00 05 00 0c 00 a0 00 03 01 00 ff ff ff ff 00 01 00 01 +baseline measurements (ms):;93.00;105.00;104.00;105.00;104.00; +baseline stats (ms):;avg:;104.50;min:;93.00;max:;105.00;;;CHECK +operation raw measurements (ms):;8.50; +operation stats (ms/op):;avg op:;8.50;min op:;8.50;max op:;8.50; +operation info:;data length;256;total iterations;1;total invocations;1; + +method name:; TYPE_EC_FP PRIVATE LENGTH_EC_FP_192 setS() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff 00 05 00 0c 00 c0 00 01 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;96.00;102.00;101.00;101.00;103.00; +baseline stats (ms):;avg:;101.75;min:;96.00;max:;103.00;;;CHECK +operation raw measurements (ms):;1462.25;1463.25;1463.25;1464.25;1464.25; +operation stats (ms/op):;avg op:;29.27;min op:;29.25;max op:;29.29; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_EC_FP PRIVATE LENGTH_EC_FP_192 getS() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff 00 05 00 0c 00 c0 00 02 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;100.00;105.00;103.00;104.00;105.00; +baseline stats (ms):;avg:;104.25;min:;100.00;max:;105.00; +operation raw measurements (ms):;182.75;182.75;182.75;181.75;182.75; +operation stats (ms/op):;avg op:;3.65;min op:;3.64;max op:;3.66; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_EC_FP PRIVATE LENGTH_EC_FP_192 clearKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff 00 05 00 0c 00 c0 00 03 01 00 ff ff ff ff 00 01 00 01 +baseline measurements (ms):;96.00;104.00;102.00;105.00;105.00; +baseline stats (ms):;avg:;104.00;min:;96.00;max:;105.00;;;CHECK +operation raw measurements (ms):;13.00; +operation stats (ms/op):;avg op:;13.00;min op:;13.00;max op:;13.00; +operation info:;data length;256;total iterations;1;total invocations;1; + +method name:; TYPE_EC_FP PRIVATE LENGTH_EC_FP_224 setS() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff 00 05 00 0c 00 e0 00 01 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;101.00;104.00;106.00;106.00;105.00; +baseline stats (ms):;avg:;105.25;min:;101.00;max:;106.00; +operation raw measurements (ms):;1532.75;1532.75;1533.75;1532.75;1532.75; +operation stats (ms/op):;avg op:;30.66;min op:;30.66;max op:;30.68; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_EC_FP PRIVATE LENGTH_EC_FP_224 getS() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff 00 05 00 0c 00 e0 00 02 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;100.00;106.00;106.00;103.00;102.00; +baseline stats (ms):;avg:;103.40;min:;100.00;max:;106.00; +operation raw measurements (ms):;206.60;207.60;206.60;205.60;207.60; +operation stats (ms/op):;avg op:;4.14;min op:;4.11;max op:;4.15; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_EC_FP PRIVATE LENGTH_EC_FP_224 clearKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff 00 05 00 0c 00 e0 00 03 01 00 ff ff ff ff 00 01 00 01 +baseline measurements (ms):;95.00;105.00;106.00;106.00;106.00; +baseline stats (ms):;avg:;105.75;min:;95.00;max:;106.00;;;CHECK +operation raw measurements (ms):;12.25; +operation stats (ms/op):;avg op:;12.25;min op:;12.25;max op:;12.25; +operation info:;data length;256;total iterations;1;total invocations;1; + +method name:; TYPE_EC_FP PRIVATE LENGTH_EC_FP_256 setS() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff 00 05 00 0c 01 00 00 01 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;101.00;107.00;109.00;107.00;106.00; +baseline stats (ms):;avg:;107.25;min:;101.00;max:;109.00;;;CHECK +operation raw measurements (ms):;1752.75;1753.75;1752.75;1752.75;1752.75; +operation stats (ms/op):;avg op:;35.06;min op:;35.06;max op:;35.08; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_EC_FP PRIVATE LENGTH_EC_FP_256 getS() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff 00 05 00 0c 01 00 00 02 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;102.00;103.00;105.00;106.00;107.00; +baseline stats (ms):;avg:;104.60;min:;102.00;max:;107.00; +operation raw measurements (ms):;230.40;227.40;229.40;228.40;230.40; +operation stats (ms/op):;avg op:;4.58;min op:;4.55;max op:;4.61; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_EC_FP PRIVATE LENGTH_EC_FP_256 clearKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff 00 05 00 0c 01 00 00 03 01 00 ff ff ff ff 00 01 00 01 +baseline measurements (ms):;96.00;108.00;109.00;107.00;106.00; +baseline stats (ms):;avg:;107.50;min:;96.00;max:;109.00;;;CHECK +operation raw measurements (ms):;16.50; +operation stats (ms/op):;avg op:;16.50;min op:;16.50;max op:;16.50; +operation info:;data length;256;total iterations;1;total invocations;1; + +method name:; TYPE_EC_FP PRIVATE LENGTH_EC_FP_384 setS() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff 00 05 00 0c 01 80 00 01 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;105.00;106.00;106.00;109.00;109.00; +baseline stats (ms):;avg:;107.00;min:;105.00;max:;109.00; +operation raw measurements (ms):;2182.00;2184.00;2183.00;2184.00;2184.00; +operation stats (ms/op):;avg op:;43.67;min op:;43.64;max op:;43.68; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_EC_FP PRIVATE LENGTH_EC_FP_384 getS() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff 00 05 00 0c 01 80 00 02 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;104.00;109.00;106.00;109.00;110.00; +baseline stats (ms):;avg:;108.50;min:;104.00;max:;110.00; +operation raw measurements (ms):;311.50;310.50;310.50;309.50;308.50; +operation stats (ms/op):;avg op:;6.20;min op:;6.17;max op:;6.23; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_EC_FP PRIVATE LENGTH_EC_FP_384 clearKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff 00 05 00 0c 01 80 00 03 01 00 ff ff ff ff 00 01 00 01 +baseline measurements (ms):;100.00;111.00;110.00;110.00;110.00; +baseline stats (ms):;avg:;110.25;min:;100.00;max:;111.00;;;CHECK +operation raw measurements (ms):;27.75; +operation stats (ms/op):;avg op:;27.75;min op:;27.75;max op:;27.75; +operation info:;data length;256;total iterations;1;total invocations;1; + +method name:; TYPE_EC_FP PRIVATE LENGTH_EC_FP_521 setS() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff 00 05 00 0c 02 09 00 01 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;109.00;113.00;123.00;114.00;261.00; +baseline stats (ms):;avg:;144.00;min:;109.00;max:;261.00;;;CHECK +operation raw measurements (ms):;2718.00;2718.00;2719.00;2718.00;2718.00; +operation stats (ms/op):;avg op:;54.36;min op:;54.36;max op:;54.38; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_EC_FP PRIVATE LENGTH_EC_FP_521 getS() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff 00 05 00 0c 02 09 00 02 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;111.00;116.00;114.00;113.00;115.00; +baseline stats (ms):;avg:;113.80;min:;111.00;max:;116.00; +operation raw measurements (ms):;413.20;410.20;412.20;412.20;411.20; +operation stats (ms/op):;avg op:;8.24;min op:;8.20;max op:;8.26; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_EC_FP PRIVATE LENGTH_EC_FP_521 clearKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff 00 05 00 0c 02 09 00 03 01 00 ff ff ff ff 00 01 00 01 +baseline measurements (ms):;104.00;114.00;124.00;114.00;277.00; +baseline stats (ms):;avg:;146.60;min:;104.00;max:;277.00;;;CHECK +operation raw measurements (ms):;52.40; +operation stats (ms/op):;avg op:;52.40;min op:;52.40;max op:;52.40; +operation info:;data length;256;total iterations;1;total invocations;1; + + +ECFPPrivateKey - END + + +HMACKey +method name:; TYPE_HMAC_SHA-1 LENGTH_HMAC_64 setKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 15 00 40 00 02 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_HMAC_SHA-1 LENGTH_HMAC_64 getKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 15 00 40 00 01 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_HMAC_SHA-1 LENGTH_HMAC_64 clearKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 15 00 40 00 03 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_HMAC_SHA-256 LENGTH_HMAC_64 setKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 15 00 40 00 02 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_HMAC_SHA-256 LENGTH_HMAC_64 getKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 15 00 40 00 01 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_HMAC_SHA-256 LENGTH_HMAC_64 clearKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 15 00 40 00 03 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_HMAC_SHA-384 LENGTH_HMAC_128 setKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 15 00 80 00 02 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_HMAC_SHA-384 LENGTH_HMAC_128 getKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 15 00 80 00 01 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_HMAC_SHA-384 LENGTH_HMAC_128 clearKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 15 00 80 00 03 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_HMAC_SHA-512 LENGTH_HMAC_128 setKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 15 00 80 00 02 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_HMAC_SHA-512 LENGTH_HMAC_128 getKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 15 00 80 00 01 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_HMAC_SHA-512 LENGTH_HMAC_128 clearKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 15 00 80 00 03 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + + +HMACKey - END + + +RSAPrivateCRTKey +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_512 setDP1() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 02 00 00 01 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;80.00;82.00;81.00;82.00;81.00; +baseline stats (ms):;avg:;81.20;min:;80.00;max:;82.00; +operation raw measurements (ms):;1366.80;1386.80;1366.80;1366.80;1365.80; +operation stats (ms/op):;avg op:;27.41;min op:;27.32;max op:;27.74; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_512 setDQ1() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 02 00 00 04 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;82.00;81.00;81.00;80.00;80.00; +baseline stats (ms):;avg:;80.80;min:;80.00;max:;82.00; +operation raw measurements (ms):;1369.20;1367.20;1368.20;1368.20;1369.20; +operation stats (ms/op):;avg op:;27.37;min op:;27.34;max op:;27.38; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_512 setP() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 02 00 00 09 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;82.00;81.00;81.00;80.00;80.00; +baseline stats (ms):;avg:;80.80;min:;80.00;max:;82.00; +operation raw measurements (ms):;1371.20;1368.20;1368.20;1367.20;1389.20; +operation stats (ms/op):;avg op:;27.46;min op:;27.34;max op:;27.78; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_512 setPQ() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 02 00 00 02 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;81.00;80.00;82.00;82.00;81.00; +baseline stats (ms):;avg:;81.20;min:;80.00;max:;82.00; +operation raw measurements (ms):;1369.80;1367.80;1367.80;1366.80;1367.80; +operation stats (ms/op):;avg op:;27.36;min op:;27.34;max op:;27.40; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_512 setQ() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 02 00 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;80.00;81.00;82.00;80.00;81.00; +baseline stats (ms):;avg:;80.80;min:;80.00;max:;82.00; +operation raw measurements (ms):;1370.20;1369.20;1369.20;1367.20;1368.20; +operation stats (ms/op):;avg op:;27.38;min op:;27.34;max op:;27.40; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_512 getDP1() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 02 00 00 03 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;78.00;78.00;78.00;79.00;78.00; +baseline stats (ms):;avg:;78.20;min:;78.00;max:;79.00; +operation raw measurements (ms):;155.80;155.80;155.80;155.80;156.80; +operation stats (ms/op):;avg op:;3.12;min op:;3.12;max op:;3.14; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_512 getDQ1() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 02 00 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;79.00;78.00;80.00;78.00;78.00; +baseline stats (ms):;avg:;78.60;min:;78.00;max:;80.00; +operation raw measurements (ms):;155.40;154.40;156.40;155.40;154.40; +operation stats (ms/op):;avg op:;3.10;min op:;3.09;max op:;3.13; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_512 getP() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 02 00 00 08 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;78.00;80.00;78.00;78.00;78.00; +baseline stats (ms):;avg:;78.40;min:;78.00;max:;80.00; +operation raw measurements (ms):;155.60;152.60;154.60;154.60;156.60; +operation stats (ms/op):;avg op:;3.10;min op:;3.05;max op:;3.13; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_512 getPQ() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 02 00 00 06 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;78.00;79.00;80.00;77.00;77.00; +baseline stats (ms):;avg:;78.20;min:;77.00;max:;80.00; +operation raw measurements (ms):;154.80;155.80;156.80;154.80;155.80; +operation stats (ms/op):;avg op:;3.11;min op:;3.10;max op:;3.14; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_512 getQ() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 02 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;78.00;78.00;77.00;79.00;79.00; +baseline stats (ms):;avg:;78.20;min:;77.00;max:;79.00; +operation raw measurements (ms):;155.80;155.80;155.80;155.80;155.80; +operation stats (ms/op):;avg op:;3.12;min op:;3.12;max op:;3.12; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_512 clearKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 02 00 00 0b 01 00 ff ff ff ff 00 01 00 01 +baseline measurements (ms):;72.00;78.00;78.00;78.00;79.00; +baseline stats (ms):;avg:;78.25;min:;72.00;max:;79.00;;;CHECK +operation raw measurements (ms):;8.75; +operation stats (ms/op):;avg op:;8.75;min op:;8.75;max op:;8.75; +operation info:;data length;256;total iterations;1;total invocations;1; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_736 setDP1() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 02 e0 00 01 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;82.00;81.00;83.00;81.00;82.00; +baseline stats (ms):;avg:;81.80;min:;81.00;max:;83.00; +operation raw measurements (ms):;1729.20;1712.20;1712.20;1711.20;1711.20; +operation stats (ms/op):;avg op:;34.30;min op:;34.22;max op:;34.58; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_736 setDQ1() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 02 e0 00 04 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;82.00;83.00;82.00;82.00;83.00; +baseline stats (ms):;avg:;82.40;min:;82.00;max:;83.00; +operation raw measurements (ms):;1728.60;1710.60;1712.60;1710.60;1710.60; +operation stats (ms/op):;avg op:;34.29;min op:;34.21;max op:;34.57; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_736 setP() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 02 e0 00 09 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;83.00;83.00;82.00;83.00;82.00; +baseline stats (ms):;avg:;82.60;min:;82.00;max:;83.00; +operation raw measurements (ms):;1728.40;1710.40;1710.40;1711.40;1711.40; +operation stats (ms/op):;avg op:;34.29;min op:;34.21;max op:;34.57; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_736 setPQ() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 02 e0 00 02 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;83.00;81.00;82.00;82.00;82.00; +baseline stats (ms):;avg:;82.25;min:;81.00;max:;83.00; +operation raw measurements (ms):;1729.75;1710.75;1710.75;1710.75;1711.75; +operation stats (ms/op):;avg op:;34.30;min op:;34.22;max op:;34.60; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_736 setQ() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 02 e0 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;82.00;83.00;82.00;83.00;82.00; +baseline stats (ms):;avg:;82.40;min:;82.00;max:;83.00; +operation raw measurements (ms):;1729.60;1710.60;1711.60;1710.60;1710.60; +operation stats (ms/op):;avg op:;34.29;min op:;34.21;max op:;34.59; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_736 getDP1() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 02 e0 00 03 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;78.00;78.00;79.00;78.00;78.00; +baseline stats (ms):;avg:;78.20;min:;78.00;max:;79.00; +operation raw measurements (ms):;212.80;213.80;213.80;213.80;213.80; +operation stats (ms/op):;avg op:;4.27;min op:;4.26;max op:;4.28; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_736 getDQ1() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 02 e0 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;79.00;78.00;77.00;78.00;79.00; +baseline stats (ms):;avg:;78.20;min:;77.00;max:;79.00; +operation raw measurements (ms):;213.80;213.80;213.80;213.80;213.80; +operation stats (ms/op):;avg op:;4.28;min op:;4.28;max op:;4.28; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_736 getP() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 02 e0 00 08 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;78.00;78.00;78.00;79.00;78.00; +baseline stats (ms):;avg:;78.20;min:;78.00;max:;79.00; +operation raw measurements (ms):;213.80;212.80;213.80;212.80;214.80; +operation stats (ms/op):;avg op:;4.27;min op:;4.26;max op:;4.30; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_736 getPQ() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 02 e0 00 06 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;78.00;77.00;79.00;79.00;78.00; +baseline stats (ms):;avg:;78.20;min:;77.00;max:;79.00; +operation raw measurements (ms):;213.80;213.80;213.80;212.80;213.80; +operation stats (ms/op):;avg op:;4.27;min op:;4.26;max op:;4.28; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_736 getQ() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 02 e0 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;78.00;77.00;79.00;79.00;77.00; +baseline stats (ms):;avg:;78.00;min:;77.00;max:;79.00; +operation raw measurements (ms):;215.00;214.00;215.00;214.00;213.00; +operation stats (ms/op):;avg op:;4.28;min op:;4.26;max op:;4.30; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_736 clearKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 02 e0 00 0b 01 00 ff ff ff ff 00 01 00 01 +baseline measurements (ms):;73.00;79.00;78.00;77.00;74.00; +baseline stats (ms):;avg:;76.20;min:;73.00;max:;79.00; +operation raw measurements (ms):;14.80; +operation stats (ms/op):;avg op:;14.80;min op:;14.80;max op:;14.80; +operation info:;data length;256;total iterations;1;total invocations;1; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_768 setDP1() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 03 00 00 01 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;82.00;82.00;83.00;83.00;82.00; +baseline stats (ms):;avg:;82.40;min:;82.00;max:;83.00; +operation raw measurements (ms):;1731.60;1716.60;1716.60;1716.60;1716.60; +operation stats (ms/op):;avg op:;34.39;min op:;34.33;max op:;34.63; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_768 setDQ1() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 03 00 00 04 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;82.00;81.00;82.00;81.00;81.00; +baseline stats (ms):;avg:;81.40;min:;81.00;max:;82.00; +operation raw measurements (ms):;1733.60;1717.60;1717.60;1718.60;1717.60; +operation stats (ms/op):;avg op:;34.42;min op:;34.35;max op:;34.67; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_768 setP() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 03 00 00 09 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;82.00;83.00;82.00;82.00;81.00; +baseline stats (ms):;avg:;82.25;min:;81.00;max:;83.00; +operation raw measurements (ms):;1731.75;1716.75;1715.75;1713.75;1716.75; +operation stats (ms/op):;avg op:;34.38;min op:;34.28;max op:;34.64; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_768 setPQ() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 03 00 00 02 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;83.00;81.00;82.00;82.00;83.00; +baseline stats (ms):;avg:;82.20;min:;81.00;max:;83.00; +operation raw measurements (ms):;1731.80;1716.80;1716.80;1713.80;1716.80; +operation stats (ms/op):;avg op:;34.38;min op:;34.28;max op:;34.64; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_768 setQ() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 03 00 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;79.00;83.00;82.00;82.00;82.00; +baseline stats (ms):;avg:;82.25;min:;79.00;max:;83.00; +operation raw measurements (ms):;1732.75;1714.75;1715.75;1716.75;1714.75; +operation stats (ms/op):;avg op:;34.38;min op:;34.30;max op:;34.66; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_768 getDP1() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 03 00 00 03 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;77.00;78.00;78.00;78.00;78.00; +baseline stats (ms):;avg:;78.00;min:;77.00;max:;78.00; +operation raw measurements (ms):;214.00;214.00;214.00;215.00;213.00; +operation stats (ms/op):;avg op:;4.28;min op:;4.26;max op:;4.30; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_768 getDQ1() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 03 00 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;76.00;77.00;78.00;79.00;77.00; +baseline stats (ms):;avg:;77.40;min:;76.00;max:;79.00; +operation raw measurements (ms):;213.60;215.60;215.60;214.60;214.60; +operation stats (ms/op):;avg op:;4.30;min op:;4.27;max op:;4.31; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_768 getP() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 03 00 00 08 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;78.00;79.00;79.00;77.00;79.00; +baseline stats (ms):;avg:;78.75;min:;77.00;max:;79.00; +operation raw measurements (ms):;213.25;212.25;213.25;213.25;213.25; +operation stats (ms/op):;avg op:;4.26;min op:;4.25;max op:;4.27; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_768 getPQ() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 03 00 00 06 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;78.00;78.00;81.00;78.00;79.00; +baseline stats (ms):;avg:;78.80;min:;78.00;max:;81.00; +operation raw measurements (ms):;213.20;213.20;214.20;212.20;213.20; +operation stats (ms/op):;avg op:;4.26;min op:;4.24;max op:;4.28; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_768 getQ() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 03 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;78.00;79.00;78.00;78.00;77.00; +baseline stats (ms):;avg:;78.25;min:;77.00;max:;79.00; +operation raw measurements (ms):;213.75;213.75;213.75;213.75;213.75; +operation stats (ms/op):;avg op:;4.28;min op:;4.28;max op:;4.28; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_768 clearKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 03 00 00 0b 01 00 ff ff ff ff 00 01 00 01 +baseline measurements (ms):;72.00;79.00;77.00;78.00;78.00; +baseline stats (ms):;avg:;78.00;min:;72.00;max:;79.00;;;CHECK +operation raw measurements (ms):;17.00; +operation stats (ms/op):;avg op:;17.00;min op:;17.00;max op:;17.00; +operation info:;data length;256;total iterations;1;total invocations;1; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_896 setDP1() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 03 80 00 01 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;82.00;82.00;83.00;83.00;82.00; +baseline stats (ms):;avg:;82.40;min:;82.00;max:;83.00; +operation raw measurements (ms):;1813.60;1818.60;1819.60;1818.60;1825.60; +operation stats (ms/op):;avg op:;36.38;min op:;36.27;max op:;36.51; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_896 setDQ1() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 03 80 00 04 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;82.00;83.00;83.00;82.00;84.00; +baseline stats (ms):;avg:;82.80;min:;82.00;max:;84.00; +operation raw measurements (ms):;1807.20;1819.20;1817.20;1817.20;1818.20; +operation stats (ms/op):;avg op:;36.32;min op:;36.14;max op:;36.38; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_896 setP() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 03 80 00 09 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;83.00;84.00;82.00;84.00;82.00; +baseline stats (ms):;avg:;83.00;min:;82.00;max:;84.00; +operation raw measurements (ms):;1807.00;1818.00;1819.00;1815.00;1817.00; +operation stats (ms/op):;avg op:;36.30;min op:;36.14;max op:;36.38; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_896 setPQ() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 03 80 00 02 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;83.00;82.00;82.00;80.00;81.00; +baseline stats (ms):;avg:;81.60;min:;80.00;max:;83.00; +operation raw measurements (ms):;1807.40;1818.40;1819.40;1819.40;1819.40; +operation stats (ms/op):;avg op:;36.34;min op:;36.15;max op:;36.39; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_896 setQ() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 03 80 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;83.00;82.00;83.00;83.00;82.00; +baseline stats (ms):;avg:;82.60;min:;82.00;max:;83.00; +operation raw measurements (ms):;1809.40;1818.40;1819.40;1818.40;1818.40; +operation stats (ms/op):;avg op:;36.34;min op:;36.19;max op:;36.39; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_896 getDP1() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 03 80 00 03 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;78.00;78.00;77.00;78.00;76.00; +baseline stats (ms):;avg:;77.75;min:;76.00;max:;78.00; +operation raw measurements (ms):;237.25;237.25;237.25;238.25;238.25; +operation stats (ms/op):;avg op:;4.75;min op:;4.75;max op:;4.77; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_896 getDQ1() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 03 80 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;79.00;78.00;79.00;78.00;79.00; +baseline stats (ms):;avg:;78.60;min:;78.00;max:;79.00; +operation raw measurements (ms):;236.40;235.40;236.40;235.40;236.40; +operation stats (ms/op):;avg op:;4.72;min op:;4.71;max op:;4.73; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_896 getP() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 03 80 00 08 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;78.00;78.00;78.00;77.00;79.00; +baseline stats (ms):;avg:;78.25;min:;77.00;max:;79.00; +operation raw measurements (ms):;235.75;236.75;236.75;236.75;237.75; +operation stats (ms/op):;avg op:;4.74;min op:;4.72;max op:;4.76; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_896 getPQ() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 03 80 00 06 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;79.00;78.00;78.00;79.00;79.00; +baseline stats (ms):;avg:;78.60;min:;78.00;max:;79.00; +operation raw measurements (ms):;235.40;235.40;236.40;236.40;235.40; +operation stats (ms/op):;avg op:;4.72;min op:;4.71;max op:;4.73; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_896 getQ() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 03 80 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;77.00;78.00;80.00;78.00;79.00; +baseline stats (ms):;avg:;78.40;min:;77.00;max:;80.00; +operation raw measurements (ms):;236.60;235.60;236.60;236.60;236.60; +operation stats (ms/op):;avg op:;4.73;min op:;4.71;max op:;4.73; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_896 clearKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 03 80 00 0b 01 00 ff ff ff ff 00 01 00 01 +baseline measurements (ms):;72.00;78.00;78.00;79.00;79.00; +baseline stats (ms):;avg:;78.50;min:;72.00;max:;79.00;;;CHECK +operation raw measurements (ms):;15.50; +operation stats (ms/op):;avg op:;15.50;min op:;15.50;max op:;15.50; +operation info:;data length;256;total iterations;1;total invocations;1; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_1024 setDP1() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 04 00 00 01 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;84.00;83.00;82.00;83.00;83.00; +baseline stats (ms):;avg:;83.25;min:;82.00;max:;84.00; +operation raw measurements (ms):;2053.75;2036.75;2035.75;2033.75;2034.75; +operation stats (ms/op):;avg op:;40.78;min op:;40.68;max op:;41.08; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_1024 setDQ1() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 04 00 00 04 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;83.00;84.00;85.00;84.00;83.00; +baseline stats (ms):;avg:;83.80;min:;83.00;max:;85.00; +operation raw measurements (ms):;2051.20;2035.20;2035.20;2035.20;2035.20; +operation stats (ms/op):;avg op:;40.77;min op:;40.70;max op:;41.02; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_1024 setP() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 04 00 00 09 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;79.00;80.00;79.00;81.00;84.00; +baseline stats (ms):;avg:;80.60;min:;79.00;max:;84.00; +operation raw measurements (ms):;2054.40;2036.40;2037.40;2038.40;2037.40; +operation stats (ms/op):;avg op:;40.82;min op:;40.73;max op:;41.09; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_1024 setPQ() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 04 00 00 02 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;83.00;84.00;82.00;84.00;83.00; +baseline stats (ms):;avg:;83.20;min:;82.00;max:;84.00; +operation raw measurements (ms):;2052.80;2036.80;2035.80;2036.80;2034.80; +operation stats (ms/op):;avg op:;40.79;min op:;40.70;max op:;41.06; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_1024 setQ() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 04 00 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;83.00;83.00;85.00;83.00;84.00; +baseline stats (ms):;avg:;83.60;min:;83.00;max:;85.00; +operation raw measurements (ms):;2052.40;2035.40;2035.40;2034.40;2037.40; +operation stats (ms/op):;avg op:;40.78;min op:;40.69;max op:;41.05; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_1024 getDP1() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 04 00 00 03 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;78.00;78.00;78.00;79.00;78.00; +baseline stats (ms):;avg:;78.20;min:;78.00;max:;79.00; +operation raw measurements (ms):;270.80;270.80;271.80;271.80;271.80; +operation stats (ms/op):;avg op:;5.43;min op:;5.42;max op:;5.44; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_1024 getDQ1() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 04 00 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;77.00;77.00;81.00;78.00;78.00; +baseline stats (ms):;avg:;78.20;min:;77.00;max:;81.00; +operation raw measurements (ms):;271.80;270.80;270.80;271.80;271.80; +operation stats (ms/op):;avg op:;5.43;min op:;5.42;max op:;5.44; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_1024 getP() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 04 00 00 08 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;78.00;78.00;79.00;75.00;77.00; +baseline stats (ms):;avg:;78.00;min:;75.00;max:;79.00; +operation raw measurements (ms):;272.00;272.00;271.00;272.00;271.00; +operation stats (ms/op):;avg op:;5.43;min op:;5.42;max op:;5.44; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_1024 getPQ() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 04 00 00 06 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;78.00;78.00;77.00;78.00;78.00; +baseline stats (ms):;avg:;78.00;min:;77.00;max:;78.00; +operation raw measurements (ms):;271.00;271.00;273.00;272.00;272.00; +operation stats (ms/op):;avg op:;5.44;min op:;5.42;max op:;5.46; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_1024 getQ() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 04 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;78.00;77.00;77.00;77.00;78.00; +baseline stats (ms):;avg:;77.40;min:;77.00;max:;78.00; +operation raw measurements (ms):;272.60;271.60;272.60;272.60;271.60; +operation stats (ms/op):;avg op:;5.44;min op:;5.43;max op:;5.45; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_1024 clearKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 04 00 00 0b 01 00 ff ff ff ff 00 01 00 01 +baseline measurements (ms):;72.00;78.00;79.00;79.00;79.00; +baseline stats (ms):;avg:;78.75;min:;72.00;max:;79.00;;;CHECK +operation raw measurements (ms):;22.25; +operation stats (ms/op):;avg op:;22.25;min op:;22.25;max op:;22.25; +operation info:;data length;256;total iterations;1;total invocations;1; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_1280 setDP1() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 05 00 00 01 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;85.00;84.00;84.00;84.00;84.00; +baseline stats (ms):;avg:;84.20;min:;84.00;max:;85.00; +operation raw measurements (ms):;2383.80;2280.80;2279.80;2279.80;2276.80; +operation stats (ms/op):;avg op:;46.00;min op:;45.54;max op:;47.68; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_1280 setDQ1() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 05 00 00 04 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;81.00;81.00;80.00;83.00;84.00; +baseline stats (ms):;avg:;81.80;min:;80.00;max:;84.00; +operation raw measurements (ms):;2386.20;2281.20;2282.20;2282.20;2281.20; +operation stats (ms/op):;avg op:;46.05;min op:;45.62;max op:;47.72; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_1280 setP() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 05 00 00 09 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;85.00;84.00;83.00;85.00;85.00; +baseline stats (ms):;avg:;84.75;min:;83.00;max:;85.00; +operation raw measurements (ms):;2383.25;2279.25;2279.25;2281.25;2279.25; +operation stats (ms/op):;avg op:;46.01;min op:;45.59;max op:;47.67; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_1280 setPQ() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 05 00 00 02 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;84.00;85.00;86.00;85.00;85.00; +baseline stats (ms):;avg:;85.25;min:;84.00;max:;86.00; +operation raw measurements (ms):;2381.75;2279.75;2281.75;2279.75;2280.75; +operation stats (ms/op):;avg op:;46.02;min op:;45.60;max op:;47.64; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_1280 setQ() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 05 00 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;84.00;87.00;84.00;85.00;85.00; +baseline stats (ms):;avg:;85.00;min:;84.00;max:;87.00; +operation raw measurements (ms):;2384.00;2279.00;2279.00;2280.00;2280.00; +operation stats (ms/op):;avg op:;46.01;min op:;45.58;max op:;47.68; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_1280 getDP1() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 05 00 00 03 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;80.00;79.00;78.00;78.00;77.00; +baseline stats (ms):;avg:;78.40;min:;77.00;max:;80.00; +operation raw measurements (ms):;329.60;328.60;329.60;328.60;329.60; +operation stats (ms/op):;avg op:;6.58;min op:;6.57;max op:;6.59; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_1280 getDQ1() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 05 00 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;78.00;78.00;79.00;79.00;78.00; +baseline stats (ms):;avg:;78.40;min:;78.00;max:;79.00; +operation raw measurements (ms):;327.60;327.60;328.60;329.60;328.60; +operation stats (ms/op):;avg op:;6.57;min op:;6.55;max op:;6.59; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_1280 getP() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 05 00 00 08 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;77.00;78.00;78.00;79.00;78.00; +baseline stats (ms):;avg:;78.25;min:;77.00;max:;79.00; +operation raw measurements (ms):;328.75;328.75;328.75;328.75;329.75; +operation stats (ms/op):;avg op:;6.58;min op:;6.58;max op:;6.60; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_1280 getPQ() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 05 00 00 06 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;77.00;76.00;79.00;77.00;78.00; +baseline stats (ms):;avg:;77.40;min:;76.00;max:;79.00; +operation raw measurements (ms):;329.60;329.60;330.60;329.60;328.60; +operation stats (ms/op):;avg op:;6.59;min op:;6.57;max op:;6.61; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_1280 getQ() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 05 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;80.00;78.00;77.00;78.00;77.00; +baseline stats (ms):;avg:;78.00;min:;77.00;max:;80.00; +operation raw measurements (ms):;329.00;330.00;330.00;329.00;329.00; +operation stats (ms/op):;avg op:;6.59;min op:;6.58;max op:;6.60; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_1280 clearKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 05 00 00 0b 01 00 ff ff ff ff 00 01 00 01 +baseline measurements (ms):;72.00;77.00;77.00;78.00;78.00; +baseline stats (ms):;avg:;77.50;min:;72.00;max:;78.00;;;CHECK +operation raw measurements (ms):;31.50; +operation stats (ms/op):;avg op:;31.50;min op:;31.50;max op:;31.50; +operation info:;data length;256;total iterations;1;total invocations;1; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_1536 setDP1() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 06 00 00 01 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;86.00;85.00;85.00;85.00;85.00; +baseline stats (ms):;avg:;85.20;min:;85.00;max:;86.00; +operation raw measurements (ms):;2582.80;2573.80;2574.80;2573.80;2573.80; +operation stats (ms/op):;avg op:;51.52;min op:;51.48;max op:;51.66; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_1536 setDQ1() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 06 00 00 04 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;86.00;87.00;84.00;85.00;82.00; +baseline stats (ms):;avg:;84.80;min:;82.00;max:;87.00; +operation raw measurements (ms):;2583.20;2574.20;2572.20;2573.20;2575.20; +operation stats (ms/op):;avg op:;51.51;min op:;51.44;max op:;51.66; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_1536 setP() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 06 00 00 09 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;87.00;85.00;85.00;85.00;84.00; +baseline stats (ms):;avg:;85.20;min:;84.00;max:;87.00; +operation raw measurements (ms):;2581.80;2574.80;2571.80;2574.80;2574.80; +operation stats (ms/op):;avg op:;51.51;min op:;51.44;max op:;51.64; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_1536 setPQ() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 06 00 00 02 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;85.00;85.00;84.00;84.00;85.00; +baseline stats (ms):;avg:;84.60;min:;84.00;max:;85.00; +operation raw measurements (ms):;2583.40;2575.40;2575.40;2575.40;2575.40; +operation stats (ms/op):;avg op:;51.54;min op:;51.51;max op:;51.67; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_1536 setQ() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 06 00 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;86.00;85.00;84.00;84.00;84.00; +baseline stats (ms):;avg:;84.60;min:;84.00;max:;86.00; +operation raw measurements (ms):;2583.40;2575.40;2575.40;2575.40;2574.40; +operation stats (ms/op):;avg op:;51.54;min op:;51.49;max op:;51.67; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_1536 getDP1() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 06 00 00 03 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;78.00;76.00;77.00;77.00;77.00; +baseline stats (ms):;avg:;77.25;min:;76.00;max:;78.00; +operation raw measurements (ms):;386.75;385.75;386.75;385.75;386.75; +operation stats (ms/op):;avg op:;7.73;min op:;7.72;max op:;7.74; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_1536 getDQ1() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 06 00 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;77.00;77.00;78.00;76.00;77.00; +baseline stats (ms):;avg:;77.25;min:;76.00;max:;78.00; +operation raw measurements (ms):;386.75;386.75;386.75;387.75;387.75; +operation stats (ms/op):;avg op:;7.74;min op:;7.74;max op:;7.76; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_1536 getP() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 06 00 00 08 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;78.00;77.00;77.00;77.00;78.00; +baseline stats (ms):;avg:;77.40;min:;77.00;max:;78.00; +operation raw measurements (ms):;385.60;385.60;385.60;386.60;385.60; +operation stats (ms/op):;avg op:;7.72;min op:;7.71;max op:;7.73; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_1536 getPQ() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 06 00 00 06 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;78.00;77.00;77.00;77.00;78.00; +baseline stats (ms):;avg:;77.40;min:;77.00;max:;78.00; +operation raw measurements (ms):;386.60;385.60;386.60;386.60;385.60; +operation stats (ms/op):;avg op:;7.72;min op:;7.71;max op:;7.73; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_1536 getQ() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 06 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;77.00;76.00;77.00;77.00;76.00; +baseline stats (ms):;avg:;76.60;min:;76.00;max:;77.00; +operation raw measurements (ms):;386.40;387.40;387.40;388.40;387.40; +operation stats (ms/op):;avg op:;7.75;min op:;7.73;max op:;7.77; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_1536 clearKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 06 00 00 0b 01 00 ff ff ff ff 00 01 00 01 +baseline measurements (ms):;73.00;77.00;77.00;76.00;78.00; +baseline stats (ms):;avg:;77.00;min:;73.00;max:;78.00;;;CHECK +operation raw measurements (ms):;83.00; +operation stats (ms/op):;avg op:;83.00;min op:;83.00;max op:;83.00; +operation info:;data length;256;total iterations;1;total invocations;1; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_1984 setDP1() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 07 c0 00 01 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;85.00;85.00;86.00;86.00;86.00; +baseline stats (ms):;avg:;85.60;min:;85.00;max:;86.00; +operation raw measurements (ms):;3180.40;3170.40;3170.40;3170.40;3170.40; +operation stats (ms/op):;avg op:;63.45;min op:;63.41;max op:;63.61; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_1984 setDQ1() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 07 c0 00 04 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;86.00;87.00;87.00;87.00;87.00; +baseline stats (ms):;avg:;87.00;min:;86.00;max:;87.00; +operation raw measurements (ms):;3182.00;3168.00;3169.00;3167.00;3168.00; +operation stats (ms/op):;avg op:;63.42;min op:;63.34;max op:;63.64; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_1984 setP() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 07 c0 00 09 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;85.00;86.00;85.00;86.00;87.00; +baseline stats (ms):;avg:;85.80;min:;85.00;max:;87.00; +operation raw measurements (ms):;3183.20;3170.20;3171.20;3169.20;3169.20; +operation stats (ms/op):;avg op:;63.45;min op:;63.38;max op:;63.66; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_1984 setPQ() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 07 c0 00 02 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;86.00;87.00;86.00;87.00;87.00; +baseline stats (ms):;avg:;86.60;min:;86.00;max:;87.00; +operation raw measurements (ms):;3182.40;3169.40;3170.40;3169.40;3168.40; +operation stats (ms/op):;avg op:;63.44;min op:;63.37;max op:;63.65; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_1984 setQ() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 07 c0 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;86.00;87.00;87.00;86.00;87.00; +baseline stats (ms):;avg:;86.60;min:;86.00;max:;87.00; +operation raw measurements (ms):;3182.40;3169.40;3169.40;3169.40;3168.40; +operation stats (ms/op):;avg op:;63.44;min op:;63.37;max op:;63.65; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_1984 getDP1() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 07 c0 00 03 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;76.00;77.00;77.00;78.00;78.00; +baseline stats (ms):;avg:;77.20;min:;76.00;max:;78.00; +operation raw measurements (ms):;489.80;490.80;490.80;489.80;489.80; +operation stats (ms/op):;avg op:;9.80;min op:;9.80;max op:;9.82; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_1984 getDQ1() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 07 c0 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;76.00;77.00;77.00;77.00;77.00; +baseline stats (ms):;avg:;77.00;min:;76.00;max:;77.00; +operation raw measurements (ms):;491.00;490.00;491.00;490.00;490.00; +operation stats (ms/op):;avg op:;9.81;min op:;9.80;max op:;9.82; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_1984 getP() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 07 c0 00 08 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;76.00;77.00;77.00;77.00;76.00; +baseline stats (ms):;avg:;76.60;min:;76.00;max:;77.00; +operation raw measurements (ms):;491.40;491.40;490.40;490.40;490.40; +operation stats (ms/op):;avg op:;9.82;min op:;9.81;max op:;9.83; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_1984 getPQ() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 07 c0 00 06 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;76.00;77.00;76.00;76.00;77.00; +baseline stats (ms):;avg:;76.40;min:;76.00;max:;77.00; +operation raw measurements (ms):;491.60;490.60;490.60;491.60;490.60; +operation stats (ms/op):;avg op:;9.82;min op:;9.81;max op:;9.83; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_1984 getQ() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 07 c0 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;75.00;77.00;78.00;77.00;76.00; +baseline stats (ms):;avg:;76.60;min:;75.00;max:;78.00; +operation raw measurements (ms):;491.40;490.40;491.40;491.40;491.40; +operation stats (ms/op):;avg op:;9.82;min op:;9.81;max op:;9.83; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_1984 clearKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 07 c0 00 0b 01 00 ff ff ff ff 00 01 00 01 +baseline measurements (ms):;71.00;78.00;76.00;77.00;76.00; +baseline stats (ms):;avg:;76.75;min:;71.00;max:;78.00;;;CHECK +operation raw measurements (ms):;90.25; +operation stats (ms/op):;avg op:;90.25;min op:;90.25;max op:;90.25; +operation info:;data length;256;total iterations;1;total invocations;1; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_2048 setDP1() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 08 00 00 01 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;85.00;87.00;89.00;87.00;87.00; +baseline stats (ms):;avg:;87.50;min:;85.00;max:;89.00; +operation raw measurements (ms):;3237.50;3228.50;3228.50;3228.50;3226.50; +operation stats (ms/op):;avg op:;64.60;min op:;64.53;max op:;64.75; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_2048 setDQ1() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 08 00 00 04 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;85.00;87.00;88.00;87.00;87.00; +baseline stats (ms):;avg:;87.25;min:;85.00;max:;88.00; +operation raw measurements (ms):;3239.75;3228.75;3226.75;3228.75;3227.75; +operation stats (ms/op):;avg op:;64.61;min op:;64.54;max op:;64.80; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_2048 setP() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 08 00 00 09 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;86.00;87.00;87.00;87.00;87.00; +baseline stats (ms):;avg:;87.00;min:;86.00;max:;87.00; +operation raw measurements (ms):;3239.00;3228.00;3228.00;3228.00;3226.00; +operation stats (ms/op):;avg op:;64.60;min op:;64.52;max op:;64.78; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_2048 setPQ() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 08 00 00 02 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;87.00;90.00;87.00;87.00;87.00; +baseline stats (ms):;avg:;87.60;min:;87.00;max:;90.00; +operation raw measurements (ms):;3238.40;3227.40;3227.40;3228.40;3228.40; +operation stats (ms/op):;avg op:;64.60;min op:;64.55;max op:;64.77; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_2048 setQ() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 08 00 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;86.00;87.00;89.00;88.00;87.00; +baseline stats (ms):;avg:;87.40;min:;86.00;max:;89.00; +operation raw measurements (ms):;3237.60;3228.60;3227.60;3227.60;3227.60; +operation stats (ms/op):;avg op:;64.60;min op:;64.55;max op:;64.75; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_2048 getDP1() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 08 00 00 03 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;76.00;76.00;77.00;77.00;76.00; +baseline stats (ms):;avg:;76.40;min:;76.00;max:;77.00; +operation raw measurements (ms):;502.60;503.60;501.60;503.60;501.60; +operation stats (ms/op):;avg op:;10.05;min op:;10.03;max op:;10.07; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_2048 getDQ1() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 08 00 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;74.00;73.00;73.00;76.00;73.00; +baseline stats (ms):;avg:;73.80;min:;73.00;max:;76.00; +operation raw measurements (ms):;503.20;505.20;501.20;504.20;505.20; +operation stats (ms/op):;avg op:;10.08;min op:;10.02;max op:;10.10; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_2048 getP() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 08 00 00 08 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;76.00;79.00;77.00;78.00;77.00; +baseline stats (ms):;avg:;77.40;min:;76.00;max:;79.00; +operation raw measurements (ms):;501.60;500.60;501.60;502.60;502.60; +operation stats (ms/op):;avg op:;10.04;min op:;10.01;max op:;10.05; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_2048 getPQ() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 08 00 00 06 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;77.00;76.00;77.00;77.00;76.00; +baseline stats (ms):;avg:;76.60;min:;76.00;max:;77.00; +operation raw measurements (ms):;503.40;502.40;502.40;502.40;502.40; +operation stats (ms/op):;avg op:;10.05;min op:;10.05;max op:;10.07; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_2048 getQ() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 08 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;75.00;76.00;76.00;76.00;77.00; +baseline stats (ms):;avg:;76.25;min:;75.00;max:;77.00; +operation raw measurements (ms):;502.75;502.75;502.75;502.75;501.75; +operation stats (ms/op):;avg op:;10.05;min op:;10.04;max op:;10.06; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_2048 clearKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 08 00 00 0b 01 00 ff ff ff ff 00 01 00 01 +baseline measurements (ms):;71.00;76.00;77.00;76.00;77.00; +baseline stats (ms):;avg:;76.50;min:;71.00;max:;77.00;;;CHECK +operation raw measurements (ms):;88.50; +operation stats (ms/op):;avg op:;88.50;min op:;88.50;max op:;88.50; +operation info:;data length;256;total iterations;1;total invocations;1; + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_3072 setDP1() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 0c 00 00 01 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_3072 setDQ1() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 0c 00 00 04 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_3072 setP() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 0c 00 00 09 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_3072 setPQ() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 0c 00 00 02 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_3072 setQ() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 0c 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_3072 getDP1() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 0c 00 00 03 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_3072 getDQ1() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 0c 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_3072 getP() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 0c 00 00 08 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_3072 getPQ() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 0c 00 00 06 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_3072 getQ() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 0c 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_3072 clearKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 0c 00 00 0b 01 00 ff ff ff ff 00 01 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_4096 setDP1() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 10 00 00 01 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_4096 setDQ1() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 10 00 00 04 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_4096 setP() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 10 00 00 09 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_4096 setPQ() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 10 00 00 02 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_4096 setQ() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 10 00 00 07 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_4096 getDP1() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 10 00 00 03 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_4096 getDQ1() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 10 00 00 05 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_4096 getP() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 10 00 00 08 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_4096 getPQ() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 10 00 00 06 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_4096 getQ() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 10 00 00 0a 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE_CRT LENGTH_RSA_4096 clearKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 06 10 00 00 0b 01 00 ff ff ff ff 00 01 00 01 +NO_SUCH_ALGORITHM + + +RSAPrivateCRTKey - END + + +RSAPrivateKey +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_512 setExponent() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 05 02 00 00 02 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;79.00;81.00;81.00;80.00;81.00; +baseline stats (ms):;avg:;80.75;min:;79.00;max:;81.00; +operation raw measurements (ms):;1177.25;1163.25;1186.25;1164.25;1164.25; +operation stats (ms/op):;avg op:;23.42;min op:;23.27;max op:;23.73; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_512 setModulus() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 05 02 00 00 04 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;79.00;81.00;78.00;78.00;79.00; +baseline stats (ms):;avg:;79.00;min:;78.00;max:;81.00; +operation raw measurements (ms):;1179.00;1166.00;1166.00;1166.00;1166.00; +operation stats (ms/op):;avg op:;23.37;min op:;23.32;max op:;23.58; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_512 getExponent() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 05 02 00 00 01 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;76.00;75.00;79.00;75.00;75.00; +baseline stats (ms):;avg:;76.00;min:;75.00;max:;79.00; +operation raw measurements (ms):;134.00;134.00;135.00;134.00;135.00; +operation stats (ms/op):;avg op:;2.69;min op:;2.68;max op:;2.70; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_512 getModulus() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 05 02 00 00 03 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;76.00;76.00;75.00;74.00;74.00; +baseline stats (ms):;avg:;75.00;min:;74.00;max:;76.00; +operation raw measurements (ms):;135.00;136.00;135.00;135.00;136.00; +operation stats (ms/op):;avg op:;2.71;min op:;2.70;max op:;2.72; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_512 clearKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 05 02 00 00 05 01 00 ff ff ff ff 00 01 00 01 +baseline measurements (ms):;69.00;76.00;76.00;76.00;75.00; +baseline stats (ms):;avg:;75.75;min:;69.00;max:;76.00;;;CHECK +operation raw measurements (ms):;6.25; +operation stats (ms/op):;avg op:;6.25;min op:;6.25;max op:;6.25; +operation info:;data length;256;total iterations;1;total invocations;1; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_736 setExponent() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 05 02 e0 00 02 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;80.00;82.00;79.00;79.00;78.00; +baseline stats (ms):;avg:;79.60;min:;78.00;max:;82.00; +operation raw measurements (ms):;1316.40;1304.40;1303.40;1305.40;1304.40; +operation stats (ms/op):;avg op:;26.14;min op:;26.07;max op:;26.33; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_736 setModulus() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 05 02 e0 00 04 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;80.00;78.00;79.00;102.00;78.00; +baseline stats (ms):;avg:;83.40;min:;78.00;max:;102.00;;;CHECK +operation raw measurements (ms):;1422.60;1431.60;1410.60;1412.60;1410.60; +operation stats (ms/op):;avg op:;28.35;min op:;28.21;max op:;28.63; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_736 getExponent() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 05 02 e0 00 01 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;76.00;76.00;76.00;75.00;76.00; +baseline stats (ms):;avg:;76.00;min:;75.00;max:;76.00; +operation raw measurements (ms):;170.00;168.00;170.00;170.00;169.00; +operation stats (ms/op):;avg op:;3.39;min op:;3.36;max op:;3.40; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_736 getModulus() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 05 02 e0 00 03 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;76.00;76.00;75.00;76.00;76.00; +baseline stats (ms):;avg:;76.00;min:;75.00;max:;76.00; +operation raw measurements (ms):;169.00;170.00;170.00;169.00;169.00; +operation stats (ms/op):;avg op:;3.39;min op:;3.38;max op:;3.40; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_736 clearKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 05 02 e0 00 05 01 00 ff ff ff ff 00 01 00 01 +baseline measurements (ms):;70.00;75.00;75.00;76.00;76.00; +baseline stats (ms):;avg:;75.50;min:;70.00;max:;76.00;;;CHECK +operation raw measurements (ms):;10.50; +operation stats (ms/op):;avg op:;10.50;min op:;10.50;max op:;10.50; +operation info:;data length;256;total iterations;1;total invocations;1; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_768 setExponent() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 05 03 00 00 02 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;79.00;80.00;91.00;79.00;79.00; +baseline stats (ms):;avg:;81.60;min:;79.00;max:;91.00;;;CHECK +operation raw measurements (ms):;1466.40;1455.40;1458.40;1458.40;1458.40; +operation stats (ms/op):;avg op:;29.19;min op:;29.11;max op:;29.33; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_768 setModulus() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 05 03 00 00 04 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;80.00;80.00;80.00;80.00;79.00; +baseline stats (ms):;avg:;80.00;min:;79.00;max:;80.00; +operation raw measurements (ms):;1468.00;1460.00;1461.00;1481.00;1461.00; +operation stats (ms/op):;avg op:;29.32;min op:;29.20;max op:;29.62; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_768 getExponent() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 05 03 00 00 01 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;78.00;78.00;91.00;78.00;314.00; +baseline stats (ms):;avg:;127.80;min:;78.00;max:;314.00;;;CHECK +operation raw measurements (ms):;130.20;131.20;131.20;131.20;127.20; +operation stats (ms/op):;avg op:;2.60;min op:;2.54;max op:;2.62; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_768 getModulus() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 05 03 00 00 03 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;76.00;78.00;76.00;75.00;76.00; +baseline stats (ms):;avg:;76.20;min:;75.00;max:;78.00; +operation raw measurements (ms):;179.80;178.80;179.80;179.80;179.80; +operation stats (ms/op):;avg op:;3.59;min op:;3.58;max op:;3.60; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_768 clearKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 05 03 00 00 05 01 00 ff ff ff ff 00 01 00 01 +baseline measurements (ms):;70.00;77.00;78.00;76.00;77.00; +baseline stats (ms):;avg:;77.00;min:;70.00;max:;78.00;;;CHECK +operation raw measurements (ms):;10.00; +operation stats (ms/op):;avg op:;10.00;min op:;10.00;max op:;10.00; +operation info:;data length;256;total iterations;1;total invocations;1; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_896 setExponent() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 05 03 80 00 02 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;79.00;80.00;81.00;80.00;80.00; +baseline stats (ms):;avg:;80.25;min:;79.00;max:;81.00; +operation raw measurements (ms):;1515.75;1513.75;1514.75;1514.75;1512.75; +operation stats (ms/op):;avg op:;30.29;min op:;30.26;max op:;30.32; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_896 setModulus() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 05 03 80 00 04 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;82.00;82.00;82.00;82.00;82.00; +baseline stats (ms):;avg:;82.00;min:;82.00;max:;82.00; +operation raw measurements (ms):;1544.00;1421.00;1421.00;1421.00;1421.00; +operation stats (ms/op):;avg op:;28.91;min op:;28.42;max op:;30.88;;CHECK +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_896 getExponent() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 05 03 80 00 01 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;75.00;77.00;76.00;76.00;76.00; +baseline stats (ms):;avg:;76.25;min:;75.00;max:;77.00; +operation raw measurements (ms):;202.75;205.75;203.75;202.75;203.75; +operation stats (ms/op):;avg op:;4.08;min op:;4.06;max op:;4.12; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_896 getModulus() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 05 03 80 00 03 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;77.00;75.00;76.00;76.00;76.00; +baseline stats (ms):;avg:;76.25;min:;75.00;max:;77.00; +operation raw measurements (ms):;203.75;204.75;203.75;204.75;203.75; +operation stats (ms/op):;avg op:;4.08;min op:;4.08;max op:;4.10; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_896 clearKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 05 03 80 00 05 01 00 ff ff ff ff 00 01 00 01 +baseline measurements (ms):;69.00;78.00;76.00;75.00;75.00; +baseline stats (ms):;avg:;76.00;min:;69.00;max:;78.00;;;CHECK +operation raw measurements (ms):;13.00; +operation stats (ms/op):;avg op:;13.00;min op:;13.00;max op:;13.00; +operation info:;data length;256;total iterations;1;total invocations;1; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1024 setExponent() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 05 04 00 00 02 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;80.00;81.00;81.00;81.00;81.00; +baseline stats (ms):;avg:;81.00;min:;80.00;max:;81.00; +operation raw measurements (ms):;1760.00;1749.00;1749.00;1748.00;1749.00; +operation stats (ms/op):;avg op:;35.02;min op:;34.96;max op:;35.20; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1024 setModulus() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 05 04 00 00 04 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;80.00;81.00;81.00;80.00;81.00; +baseline stats (ms):;avg:;80.60;min:;80.00;max:;81.00; +operation raw measurements (ms):;1771.40;1764.40;1763.40;1764.40;1763.40; +operation stats (ms/op):;avg op:;35.31;min op:;35.27;max op:;35.43; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1024 getExponent() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 05 04 00 00 01 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;78.00;79.00;91.00;79.00;313.00; +baseline stats (ms):;avg:;128.00;min:;78.00;max:;313.00;;;CHECK +operation raw measurements (ms):;177.00;178.00;177.00;178.00;177.00; +operation stats (ms/op):;avg op:;3.55;min op:;3.54;max op:;3.56; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1024 getModulus() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 05 04 00 00 03 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;76.00;76.00;75.00;75.00;76.00; +baseline stats (ms):;avg:;75.60;min:;75.00;max:;76.00; +operation raw measurements (ms):;229.40;226.40;228.40;227.40;228.40; +operation stats (ms/op):;avg op:;4.56;min op:;4.53;max op:;4.59; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1024 clearKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 05 04 00 00 05 01 00 ff ff ff ff 00 01 00 01 +baseline measurements (ms):;70.00;76.00;77.00;75.00;76.00; +baseline stats (ms):;avg:;76.00;min:;70.00;max:;77.00;;;CHECK +operation raw measurements (ms):;17.00; +operation stats (ms/op):;avg op:;17.00;min op:;17.00;max op:;17.00; +operation info:;data length;256;total iterations;1;total invocations;1; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1280 setExponent() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 05 05 00 00 02 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;82.00;81.00;81.00;81.00;81.00; +baseline stats (ms):;avg:;81.20;min:;81.00;max:;82.00; +operation raw measurements (ms):;2049.80;2038.80;2038.80;2039.80;2038.80; +operation stats (ms/op):;avg op:;40.82;min op:;40.78;max op:;41.00; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1280 setModulus() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 05 05 00 00 04 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;84.00;84.00;83.00;83.00;83.00; +baseline stats (ms):;avg:;83.40;min:;83.00;max:;84.00; +operation raw measurements (ms):;2051.60;2042.60;2041.60;2042.60;2042.60; +operation stats (ms/op):;avg op:;40.88;min op:;40.83;max op:;41.03; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1280 getExponent() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 05 05 00 00 01 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;76.00;75.00;76.00;75.00;76.00; +baseline stats (ms):;avg:;75.60;min:;75.00;max:;76.00; +operation raw measurements (ms):;274.40;274.40;271.40;270.40;270.40; +operation stats (ms/op):;avg op:;5.44;min op:;5.41;max op:;5.49; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1280 getModulus() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 05 05 00 00 03 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;75.00;76.00;76.00;77.00;76.00; +baseline stats (ms):;avg:;76.25;min:;75.00;max:;77.00; +operation raw measurements (ms):;272.75;273.75;272.75;273.75;272.75; +operation stats (ms/op):;avg op:;5.46;min op:;5.46;max op:;5.48; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1280 clearKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 05 05 00 00 05 01 00 ff ff ff ff 00 01 00 01 +baseline measurements (ms):;71.00;75.00;77.00;76.00;76.00; +baseline stats (ms):;avg:;76.00;min:;71.00;max:;77.00;;;CHECK +operation raw measurements (ms):;22.00; +operation stats (ms/op):;avg op:;22.00;min op:;22.00;max op:;22.00; +operation info:;data length;256;total iterations;1;total invocations;1; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1536 setExponent() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 05 06 00 00 02 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;81.00;82.00;82.00;83.00;84.00; +baseline stats (ms):;avg:;82.40;min:;81.00;max:;84.00; +operation raw measurements (ms):;2223.60;2198.60;2197.60;2196.60;2197.60; +operation stats (ms/op):;avg op:;44.06;min op:;43.93;max op:;44.47; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1536 setModulus() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 05 06 00 00 04 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;83.00;82.00;81.00;82.00;82.00; +baseline stats (ms):;avg:;82.25;min:;81.00;max:;83.00; +operation raw measurements (ms):;2226.75;2196.75;2197.75;2198.75;2198.75; +operation stats (ms/op):;avg op:;44.08;min op:;43.94;max op:;44.54; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1536 getExponent() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 05 06 00 00 01 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;78.00;79.00;91.00;78.00;78.00; +baseline stats (ms):;avg:;80.80;min:;78.00;max:;91.00;;;CHECK +operation raw measurements (ms):;317.20;317.20;318.20;318.20;317.20; +operation stats (ms/op):;avg op:;6.35;min op:;6.34;max op:;6.36; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1536 getModulus() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 05 06 00 00 03 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;75.00;77.00;76.00;76.00;75.00; +baseline stats (ms):;avg:;75.80;min:;75.00;max:;77.00; +operation raw measurements (ms):;320.20;321.20;321.20;321.20;321.20; +operation stats (ms/op):;avg op:;6.42;min op:;6.40;max op:;6.42; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1536 clearKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 05 06 00 00 05 01 00 ff ff ff ff 00 01 00 01 +baseline measurements (ms):;70.00;76.00;75.00;76.00;75.00; +baseline stats (ms):;avg:;75.50;min:;70.00;max:;76.00;;;CHECK +operation raw measurements (ms):;27.50; +operation stats (ms/op):;avg op:;27.50;min op:;27.50;max op:;27.50; +operation info:;data length;256;total iterations;1;total invocations;1; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1984 setExponent() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 05 07 c0 00 02 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;85.00;84.00;84.00;84.00;85.00; +baseline stats (ms):;avg:;84.40;min:;84.00;max:;85.00; +operation raw measurements (ms):;2719.60;2709.60;2710.60;2709.60;2709.60; +operation stats (ms/op):;avg op:;54.24;min op:;54.19;max op:;54.39; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1984 setModulus() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 05 07 c0 00 04 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;84.00;84.00;94.00;85.00;306.00; +baseline stats (ms):;avg:;130.60;min:;84.00;max:;306.00;;;CHECK +operation raw measurements (ms):;2668.40;2655.40;2657.40;2656.40;2656.40; +operation stats (ms/op):;avg op:;53.18;min op:;53.11;max op:;53.37; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1984 getExponent() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 05 07 c0 00 01 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;77.00;76.00;76.00;76.00;77.00; +baseline stats (ms):;avg:;76.40;min:;76.00;max:;77.00; +operation raw measurements (ms):;403.60;401.60;403.60;402.60;402.60; +operation stats (ms/op):;avg op:;8.06;min op:;8.03;max op:;8.07; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1984 getModulus() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 05 07 c0 00 03 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;76.00;76.00;559.00;77.00;76.00; +baseline stats (ms):;avg:;172.80;min:;76.00;max:;559.00;;;CHECK +operation raw measurements (ms):;305.20;304.20;305.20;305.20;305.20; +operation stats (ms/op):;avg op:;6.10;min op:;6.08;max op:;6.10; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1984 clearKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 05 07 c0 00 05 01 00 ff ff ff ff 00 01 00 01 +baseline measurements (ms):;71.00;77.00;76.00;78.00;76.00; +baseline stats (ms):;avg:;76.75;min:;71.00;max:;78.00;;;CHECK +operation raw measurements (ms):;83.25; +operation stats (ms/op):;avg op:;83.25;min op:;83.25;max op:;83.25; +operation info:;data length;256;total iterations;1;total invocations;1; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_2048 setExponent() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 05 08 00 00 02 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;83.00;85.00;85.00;85.00;85.00; +baseline stats (ms):;avg:;85.00;min:;83.00;max:;85.00; +operation raw measurements (ms):;2759.00;2746.00;2746.00;2746.00;2745.00; +operation stats (ms/op):;avg op:;54.97;min op:;54.90;max op:;55.18; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_2048 setModulus() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 05 08 00 00 04 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;86.00;85.00;84.00;85.00;85.00; +baseline stats (ms):;avg:;85.25;min:;84.00;max:;86.00; +operation raw measurements (ms):;2760.75;2748.75;2750.75;2749.75;2749.75; +operation stats (ms/op):;avg op:;55.04;min op:;54.98;max op:;55.22; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_2048 getExponent() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 05 08 00 00 01 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;75.00;76.00;88.00;77.00;314.00; +baseline stats (ms):;avg:;126.00;min:;75.00;max:;314.00;;;CHECK +operation raw measurements (ms):;364.00;365.00;365.00;365.00;365.00; +operation stats (ms/op):;avg op:;7.30;min op:;7.28;max op:;7.30; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_2048 getModulus() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 05 08 00 00 03 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;77.00;78.00;77.00;76.00;76.00; +baseline stats (ms):;avg:;76.80;min:;76.00;max:;78.00; +operation raw measurements (ms):;414.20;413.20;413.20;413.20;413.20; +operation stats (ms/op):;avg op:;8.27;min op:;8.26;max op:;8.28; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_2048 clearKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 05 08 00 00 05 01 00 ff ff ff ff 00 01 00 01 +baseline measurements (ms):;71.00;77.00;89.00;76.00;330.00; +baseline stats (ms):;avg:;128.60;min:;71.00;max:;330.00;;;CHECK +operation raw measurements (ms):;30.40; +operation stats (ms/op):;avg op:;30.40;min op:;30.40;max op:;30.40; +operation info:;data length;256;total iterations;1;total invocations;1; + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_3072 setExponent() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 05 0c 00 00 02 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_3072 setModulus() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 05 0c 00 00 04 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_3072 getExponent() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 05 0c 00 00 01 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_3072 getModulus() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 05 0c 00 00 03 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_3072 clearKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 05 0c 00 00 05 01 00 ff ff ff ff 00 01 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_4096 setExponent() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 05 10 00 00 02 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_4096 setModulus() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 05 10 00 00 04 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_4096 getExponent() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 05 10 00 00 01 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_4096 getModulus() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 05 10 00 00 03 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_4096 clearKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 05 10 00 00 05 01 00 ff ff ff ff 00 01 00 01 +NO_SUCH_ALGORITHM + + +RSAPrivateKey - END + + +RSAPublicKey +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_512 setExponent() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 04 02 00 00 02 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_512 setModulus() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 04 02 00 00 04 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_512 getExponent() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 04 02 00 00 01 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_512 getModulus() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 04 02 00 00 03 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_512 clearKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 04 02 00 00 05 01 00 ff ff ff ff 00 01 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_736 setExponent() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 04 02 e0 00 02 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_736 setModulus() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 04 02 e0 00 04 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_736 getExponent() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 04 02 e0 00 01 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_736 getModulus() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 04 02 e0 00 03 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_736 clearKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 04 02 e0 00 05 01 00 ff ff ff ff 00 01 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_768 setExponent() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 04 03 00 00 02 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_768 setModulus() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 04 03 00 00 04 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_768 getExponent() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 04 03 00 00 01 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_768 getModulus() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 04 03 00 00 03 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_768 clearKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 04 03 00 00 05 01 00 ff ff ff ff 00 01 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_896 setExponent() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 04 03 80 00 02 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_896 setModulus() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 04 03 80 00 04 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_896 getExponent() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 04 03 80 00 01 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_896 getModulus() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 04 03 80 00 03 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_896 clearKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 04 03 80 00 05 01 00 ff ff ff ff 00 01 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1024 setExponent() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 04 04 00 00 02 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1024 setModulus() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 04 04 00 00 04 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1024 getExponent() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 04 04 00 00 01 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1024 getModulus() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 04 04 00 00 03 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1024 clearKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 04 04 00 00 05 01 00 ff ff ff ff 00 01 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1280 setExponent() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 04 05 00 00 02 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1280 setModulus() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 04 05 00 00 04 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1280 getExponent() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 04 05 00 00 01 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1280 getModulus() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 04 05 00 00 03 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1280 clearKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 04 05 00 00 05 01 00 ff ff ff ff 00 01 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1536 setExponent() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 04 06 00 00 02 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1536 setModulus() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 04 06 00 00 04 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1536 getExponent() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 04 06 00 00 01 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1536 getModulus() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 04 06 00 00 03 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1536 clearKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 04 06 00 00 05 01 00 ff ff ff ff 00 01 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1984 setExponent() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 04 07 c0 00 02 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1984 setModulus() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 04 07 c0 00 04 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1984 getExponent() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 04 07 c0 00 01 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1984 getModulus() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 04 07 c0 00 03 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1984 clearKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 04 07 c0 00 05 01 00 ff ff ff ff 00 01 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_2048 setExponent() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 04 08 00 00 02 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_2048 setModulus() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 04 08 00 00 04 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_2048 getExponent() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 04 08 00 00 01 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_2048 getModulus() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 04 08 00 00 03 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_2048 clearKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 04 08 00 00 05 01 00 ff ff ff ff 00 01 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_3072 setExponent() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 04 0c 00 00 02 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_3072 setModulus() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 04 0c 00 00 04 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_3072 getExponent() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 04 0c 00 00 01 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_3072 getModulus() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 04 0c 00 00 03 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_3072 clearKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 04 0c 00 00 05 01 00 ff ff ff ff 00 01 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_4096 setExponent() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 04 10 00 00 02 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_4096 setModulus() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 04 10 00 00 04 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_4096 getExponent() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 04 10 00 00 01 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_4096 getModulus() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 04 10 00 00 03 01 00 ff ff ff ff 00 32 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_4096 clearKey() +measurement config:;appletPrepareINS;30;appletMeasureINS;40;config;00 20 ff ff ff ff 00 04 10 00 00 05 01 00 ff ff ff ff 00 01 00 01 +NO_SUCH_ALGORITHM + + +RSAPublicKey - END + + +UTIL + +method name:; UTIL Util_arrayCompare_RAM_matching() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 12 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;57.00;58.00;58.00;58.00;58.00; +baseline stats (ms):;avg:;58.00;min:;57.00;max:;58.00; +operation raw measurements (ms):;12.00;12.00;12.00;14.00;13.00; +operation stats (ms/op):;avg op:;0.25;min op:;0.24;max op:;0.28;;CHECK +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; UTIL Util_arrayCompare_RAM_mismatching() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 13 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;57.00;347.00;57.00;57.00;58.00; +baseline stats (ms):;avg:;115.20;min:;57.00;max:;347.00;;;CHECK +operation raw measurements (ms):;-47.20;-47.20;-48.20;-46.20;-47.20; +operation stats (ms/op):;avg op:;-0.94;min op:;-0.96;max op:;-0.92; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; UTIL Util_arrayCopy_RAM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 01 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;362.00;58.00;57.00;57.00;58.00; +baseline stats (ms):;avg:;118.40;min:;57.00;max:;362.00;;;CHECK +operation raw measurements (ms):;-48.40;-47.40;-48.40;-49.40;-49.40; +operation stats (ms/op):;avg op:;-0.97;min op:;-0.99;max op:;-0.95; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; UTIL Util_arrayCopy_EEPROM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 02 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;59.00;59.00;58.00;58.00;58.00; +baseline stats (ms):;avg:;58.40;min:;58.00;max:;59.00; +operation raw measurements (ms):;30.60;13.60;13.60;12.60;13.60; +operation stats (ms/op):;avg op:;0.34;min op:;0.25;max op:;0.61;;CHECK +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; UTIL Util_arrayCopy_RAM2EEPROM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 03 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;384.00;54.00;54.00;54.00;54.00; +baseline stats (ms):;avg:;120.00;min:;54.00;max:;384.00;;;CHECK +operation raw measurements (ms):;-33.00;-53.00;-53.00;-51.00;-49.00; +operation stats (ms/op):;avg op:;-0.96;min op:;-1.06;max op:;-0.66; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; UTIL Util_arrayCopy_EEPROM2RAM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 04 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;58.00;208.00;57.00;59.00;58.00; +baseline stats (ms):;avg:;88.00;min:;57.00;max:;208.00;;;CHECK +operation raw measurements (ms):;-18.00;-17.00;-13.00;-18.00;-17.00; +operation stats (ms/op):;avg op:;-0.33;min op:;-0.36;max op:;-0.26; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; UTIL Util_arrayCopyNonAtomic_RAM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 05 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;56.00;56.00;56.00;56.00;56.00; +baseline stats (ms):;avg:;56.00;min:;56.00;max:;56.00; +operation raw measurements (ms):;14.00;14.00;14.00;14.00;14.00; +operation stats (ms/op):;avg op:;0.28;min op:;0.28;max op:;0.28; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; UTIL Util_arrayCopyNonAtomic_EEPROM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 06 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;58.00;58.00;58.00;58.00;58.00; +baseline stats (ms):;avg:;58.00;min:;58.00;max:;58.00; +operation raw measurements (ms):;19.00;14.00;11.00;12.00;13.00; +operation stats (ms/op):;avg op:;0.28;min op:;0.22;max op:;0.38;;CHECK +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; UTIL Util_arrayCopyNonAtomic_RAM2EEPROM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 07 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;367.00;58.00;58.00;57.00;57.00; +baseline stats (ms):;avg:;119.40;min:;57.00;max:;367.00;;;CHECK +operation raw measurements (ms):;-41.40;-48.40;-49.40;-48.40;-48.40; +operation stats (ms/op):;avg op:;-0.94;min op:;-0.99;max op:;-0.83; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; UTIL Util_arrayCopyNonAtomic_EEPROM2RAM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 08 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;57.00;325.00;57.00;57.00;57.00; +baseline stats (ms):;avg:;110.60;min:;57.00;max:;325.00;;;CHECK +operation raw measurements (ms):;-40.60;-40.60;-40.60;-39.60;-39.60; +operation stats (ms/op):;avg op:;-0.80;min op:;-0.81;max op:;-0.79; +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; UTIL Util_arrayFillNonAtomic_RAM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 09 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;55.00;55.00;57.00;58.00;56.00; +baseline stats (ms):;avg:;56.20;min:;55.00;max:;58.00; +operation raw measurements (ms):;7.80;7.80;7.80;7.80;8.80; +operation stats (ms/op):;avg op:;0.16;min op:;0.16;max op:;0.18;;CHECK +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; UTIL Util_arrayFillNonAtomic_EEPROM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 0a 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;58.00;58.00;58.00;59.00;57.00; +baseline stats (ms):;avg:;58.25;min:;57.00;max:;59.00; +operation raw measurements (ms):;22.75;11.75;12.75;13.75;12.75; +operation stats (ms/op):;avg op:;0.30;min op:;0.24;max op:;0.46;;CHECK +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; UTIL Util_arrayCompare_RAM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 0b 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;57.00;57.00;61.00;58.00;57.00; +baseline stats (ms):;avg:;58.00;min:;57.00;max:;61.00;;;CHECK +operation raw measurements (ms):;12.00;11.00;12.00;11.00;12.00; +operation stats (ms/op):;avg op:;0.23;min op:;0.22;max op:;0.24;;CHECK +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; UTIL Util_arrayCompare_EEPROM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 0c 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;58.00;57.00;59.00;58.00;58.00; +baseline stats (ms):;avg:;58.25;min:;57.00;max:;59.00; +operation raw measurements (ms):;14.75;13.75;12.75;12.75;13.75; +operation stats (ms/op):;avg op:;0.27;min op:;0.26;max op:;0.30;;CHECK +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; UTIL Util_arrayCompare_RAM2EEPROM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 0d 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;58.00;57.00;58.00;58.00;63.00; +baseline stats (ms):;avg:;58.80;min:;57.00;max:;63.00;;;CHECK +operation raw measurements (ms):;11.20;13.20;12.20;12.20;11.20; +operation stats (ms/op):;avg op:;0.24;min op:;0.22;max op:;0.26;;CHECK +operation info:;data length;256;total iterations;250;total invocations;250; + +method name:; UTIL Util_arrayCompare_EEPROM2RAM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 0e 01 00 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;58.00;58.00;55.00;58.00;58.00; +baseline stats (ms):;avg:;58.00;min:;55.00;max:;58.00;;;CHECK +operation raw measurements (ms):;13.00;12.00;12.00;13.00;13.00; +operation stats (ms/op):;avg op:;0.25;min op:;0.24;max op:;0.26; +operation info:;data length;256;total iterations;250;total invocations;250; + + +UTIL - END + + +SWALGS + +method name:; SWALGS SWAlgs_AES() +measurement config:;appletPrepareINS;c0;appletMeasureINS;a5;config;00 16 ff ff ff ff ff ff ff ff 00 02 00 10 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;57.00;58.00;58.00;57.00;58.00; +baseline stats (ms):;avg:;57.60;min:;57.00;max:;58.00; +operation raw measurements (ms):;10496.40;10505.40;10504.40;10506.40;10504.40; +operation stats (ms/op):;avg op:;210.07;min op:;209.93;max op:;210.13; +operation info:;data length;16;total iterations;250;total invocations;250; + +method name:; SWALGS SWAlgs_xor() +measurement config:;appletPrepareINS;c0;appletMeasureINS;a5;config;00 16 ff ff ff ff ff ff ff ff 00 01 00 10 ff ff ff ff 00 32 00 01 +baseline measurements (ms):;58.00;58.00;59.00;57.00;58.00; +baseline stats (ms):;avg:;58.25;min:;57.00;max:;59.00; +operation raw measurements (ms):;135.75;135.75;135.75;134.75;135.75; +operation stats (ms/op):;avg op:;2.71;min op:;2.70;max op:;2.72; +operation info:;data length;16;total iterations;250;total invocations;250; + + +SWALGS - END + + +KEY PAIR + +method name:; ALG_RSA LENGTH_RSA_512 KeyPair_genKeyPair() +measurement config:;appletPrepareINS;36;appletMeasureINS;45;config;00 19 ff ff 00 01 ff ff 02 00 00 01 ff ff ff ff ff ff 00 01 00 01 +baseline measurements (ms):;62.00;67.00;66.00;67.00;67.00; +baseline stats (ms):;avg:;66.75;min:;62.00;max:;67.00;;;CHECK +operation raw measurements (ms):;504.25;742.25;1070.25;682.25;535.25;1115.25;398.25;273.25;1006.25;1008.25; +operation stats (ms/op):;avg op:;733.55;min op:;273.25;max op:;1115.25;;CHECK +operation info:;data length;-1;total iterations;10;total invocations;10; + +method name:; ALG_RSA LENGTH_RSA_736 KeyPair_genKeyPair() +measurement config:;appletPrepareINS;36;appletMeasureINS;45;config;00 19 ff ff 00 01 ff ff 02 e0 00 01 ff ff ff ff ff ff 00 01 00 01 +baseline measurements (ms):;62.00;66.00;67.00;65.00;67.00; +baseline stats (ms):;avg:;66.25;min:;62.00;max:;67.00;;;CHECK +operation raw measurements (ms):;1560.75;665.75;1729.75;2068.75;1261.75;3549.75;2188.75;1135.75;1404.75;2952.75; +operation stats (ms/op):;avg op:;1851.85;min op:;665.75;max op:;3549.75;;CHECK +operation info:;data length;-1;total iterations;10;total invocations;10; + +method name:; ALG_RSA LENGTH_RSA_768 KeyPair_genKeyPair() +measurement config:;appletPrepareINS;36;appletMeasureINS;45;config;00 19 ff ff 00 01 ff ff 03 00 00 01 ff ff ff ff ff ff 00 01 00 01 +baseline measurements (ms):;62.00;66.00;67.00;67.00;65.00; +baseline stats (ms):;avg:;66.25;min:;62.00;max:;67.00;;;CHECK +operation raw measurements (ms):;860.75;814.75;1078.75;501.75;1839.75;1435.75;1253.75;2502.75;1810.75;1157.75; +operation stats (ms/op):;avg op:;1325.65;min op:;501.75;max op:;2502.75;;CHECK +operation info:;data length;-1;total iterations;10;total invocations;10; + +method name:; ALG_RSA LENGTH_RSA_896 KeyPair_genKeyPair() +measurement config:;appletPrepareINS;36;appletMeasureINS;45;config;00 19 ff ff 00 01 ff ff 03 80 00 01 ff ff ff ff ff ff 00 01 00 01 +baseline measurements (ms):;61.00;67.00;69.00;67.00;67.00; +baseline stats (ms):;avg:;67.50;min:;61.00;max:;69.00;;;CHECK +operation raw measurements (ms):;2391.50;1354.50;1589.50;1857.50;3364.50;4608.50;2906.50;2045.50;967.50;2599.50; +operation stats (ms/op):;avg op:;2368.50;min op:;967.50;max op:;4608.50;;CHECK +operation info:;data length;-1;total iterations;10;total invocations;10; + +method name:; ALG_RSA LENGTH_RSA_1024 KeyPair_genKeyPair() +measurement config:;appletPrepareINS;36;appletMeasureINS;45;config;00 19 ff ff 00 01 ff ff 04 00 00 01 ff ff ff ff ff ff 00 01 00 01 +baseline measurements (ms):;61.00;67.00;68.00;66.00;66.00; +baseline stats (ms):;avg:;66.75;min:;61.00;max:;68.00;;;CHECK +operation raw measurements (ms):;4170.25;4209.25;2005.25;3660.25;1896.25;1920.25;2754.25;1528.25;1610.25;2096.25; +operation stats (ms/op):;avg op:;2585.05;min op:;1528.25;max op:;4209.25;;CHECK +operation info:;data length;-1;total iterations;10;total invocations;10; + +method name:; ALG_RSA LENGTH_RSA_1280 KeyPair_genKeyPair() +measurement config:;appletPrepareINS;36;appletMeasureINS;45;config;00 19 ff ff 00 01 ff ff 05 00 00 01 ff ff ff ff ff ff 00 01 00 01 +baseline measurements (ms):;61.00;66.00;67.00;67.00;68.00; +baseline stats (ms):;avg:;67.00;min:;61.00;max:;68.00;;;CHECK +operation raw measurements (ms):;4779.00;2100.00;8158.00;7250.00;4010.00;4303.00;1853.00;19858.00;6245.00;3889.00; +operation stats (ms/op):;avg op:;6244.50;min op:;1853.00;max op:;19858.00;;CHECK +operation info:;data length;-1;total iterations;10;total invocations;10; + +method name:; ALG_RSA LENGTH_RSA_1536 KeyPair_genKeyPair() +measurement config:;appletPrepareINS;36;appletMeasureINS;45;config;00 19 ff ff 00 01 ff ff 06 00 00 01 ff ff ff ff ff ff 00 01 00 01 +baseline measurements (ms):;62.00;66.00;69.00;67.00;66.00; +baseline stats (ms):;avg:;67.00;min:;62.00;max:;69.00;;;CHECK +operation raw measurements (ms):;6859.00;9201.00;5011.00;7426.00;6638.00;4302.00;5968.00;14354.00;12136.00;12883.00; +operation stats (ms/op):;avg op:;8477.80;min op:;4302.00;max op:;14354.00;;CHECK +operation info:;data length;-1;total iterations;10;total invocations;10; + +method name:; ALG_RSA LENGTH_RSA_1984 KeyPair_genKeyPair() +measurement config:;appletPrepareINS;36;appletMeasureINS;45;config;00 19 ff ff 00 01 ff ff 07 c0 00 01 ff ff ff ff ff ff 00 01 00 01 +baseline measurements (ms):;62.00;67.00;66.00;66.00;66.00; +baseline stats (ms):;avg:;66.25;min:;62.00;max:;67.00;;;CHECK +operation raw measurements (ms):;29979.75;9792.75;32200.75;23564.75;29182.75;27478.75;10421.75;18900.75;47425.75;7909.75; +operation stats (ms/op):;avg op:;23685.75;min op:;7909.75;max op:;47425.75;;CHECK +operation info:;data length;-1;total iterations;10;total invocations;10; + +method name:; ALG_RSA LENGTH_RSA_2048 KeyPair_genKeyPair() +measurement config:;appletPrepareINS;36;appletMeasureINS;45;config;00 19 ff ff 00 01 ff ff 08 00 00 01 ff ff ff ff ff ff 00 01 00 01 +baseline measurements (ms):;62.00;68.00;70.00;66.00;66.00; +baseline stats (ms):;avg:;66.40;min:;62.00;max:;70.00;;;CHECK +operation raw measurements (ms):;11611.60;8053.60;39156.60;29613.60;54795.60;24395.60;22350.60;25989.60;6835.60;39053.60; +operation stats (ms/op):;avg op:;26185.60;min op:;6835.60;max op:;54795.60;;CHECK +operation info:;data length;-1;total iterations;10;total invocations;10; + +method name:; ALG_RSA LENGTH_RSA_3072 KeyPair_genKeyPair() +measurement config:;appletPrepareINS;36;appletMeasureINS;45;config;00 19 ff ff 00 01 ff ff 0c 00 00 01 ff ff ff ff ff ff 00 01 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 KeyPair_genKeyPair() +measurement config:;appletPrepareINS;36;appletMeasureINS;45;config;00 19 ff ff 00 01 ff ff 10 00 00 01 ff ff ff ff ff ff 00 01 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 KeyPair_genKeyPair() +measurement config:;appletPrepareINS;36;appletMeasureINS;45;config;00 19 ff ff 00 02 ff ff 02 00 00 01 ff ff ff ff ff ff 00 01 00 01 +baseline measurements (ms):;61.00;68.00;66.00;67.00;66.00; +baseline stats (ms):;avg:;66.75;min:;61.00;max:;68.00;;;CHECK +operation raw measurements (ms):;880.25;325.25;308.25;308.25;738.25;295.25;873.25;396.25;1402.25;374.25; +operation stats (ms/op):;avg op:;590.15;min op:;295.25;max op:;1402.25;;CHECK +operation info:;data length;-1;total iterations;10;total invocations;10; + +method name:; ALG_RSA_CRT LENGTH_RSA_736 KeyPair_genKeyPair() +measurement config:;appletPrepareINS;36;appletMeasureINS;45;config;00 19 ff ff 00 02 ff ff 02 e0 00 01 ff ff ff ff ff ff 00 01 00 01 +baseline measurements (ms):;61.00;65.00;66.00;67.00;66.00; +baseline stats (ms):;avg:;66.00;min:;61.00;max:;67.00;;;CHECK +operation raw measurements (ms):;1627.00;1898.00;2597.00;1070.00;3173.00;916.00;1495.00;660.00;2546.00;2751.00; +operation stats (ms/op):;avg op:;1873.30;min op:;660.00;max op:;3173.00;;CHECK +operation info:;data length;-1;total iterations;10;total invocations;10; + +method name:; ALG_RSA_CRT LENGTH_RSA_768 KeyPair_genKeyPair() +measurement config:;appletPrepareINS;36;appletMeasureINS;45;config;00 19 ff ff 00 02 ff ff 03 00 00 01 ff ff ff ff ff ff 00 01 00 01 +baseline measurements (ms):;61.00;68.00;68.00;67.00;67.00; +baseline stats (ms):;avg:;67.50;min:;61.00;max:;68.00;;;CHECK +operation raw measurements (ms):;4368.50;1009.50;2171.50;1204.50;2258.50;1070.50;642.50;2181.50;1130.50;1112.50; +operation stats (ms/op):;avg op:;1715.00;min op:;642.50;max op:;4368.50;;CHECK +operation info:;data length;-1;total iterations;10;total invocations;10; + +method name:; ALG_RSA_CRT LENGTH_RSA_896 KeyPair_genKeyPair() +measurement config:;appletPrepareINS;36;appletMeasureINS;45;config;00 19 ff ff 00 02 ff ff 03 80 00 01 ff ff ff ff ff ff 00 01 00 01 +baseline measurements (ms):;61.00;67.00;66.00;67.00;66.00; +baseline stats (ms):;avg:;66.50;min:;61.00;max:;67.00;;;CHECK +operation raw measurements (ms):;2160.50;2829.50;2368.50;2207.50;3709.50;1389.50;4092.50;803.50;2392.50;4955.50; +operation stats (ms/op):;avg op:;2690.90;min op:;803.50;max op:;4955.50;;CHECK +operation info:;data length;-1;total iterations;10;total invocations;10; + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 KeyPair_genKeyPair() +measurement config:;appletPrepareINS;36;appletMeasureINS;45;config;00 19 ff ff 00 02 ff ff 04 00 00 01 ff ff ff ff ff ff 00 01 00 01 +baseline measurements (ms):;61.00;66.00;67.00;67.00;67.00; +baseline stats (ms):;avg:;66.75;min:;61.00;max:;67.00;;;CHECK +operation raw measurements (ms):;5093.25;3710.25;3977.25;2323.25;2712.25;1594.25;2361.25;6462.25;3264.25;3570.25; +operation stats (ms/op):;avg op:;3506.85;min op:;1594.25;max op:;6462.25;;CHECK +operation info:;data length;-1;total iterations;10;total invocations;10; + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 KeyPair_genKeyPair() +measurement config:;appletPrepareINS;36;appletMeasureINS;45;config;00 19 ff ff 00 02 ff ff 05 00 00 01 ff ff ff ff ff ff 00 01 00 01 +baseline measurements (ms):;61.00;66.00;67.00;67.00;68.00; +baseline stats (ms):;avg:;67.00;min:;61.00;max:;68.00;;;CHECK +operation raw measurements (ms):;2669.00;6674.00;4968.00;16721.00;1886.00;5560.00;5136.00;7617.00;1513.00;5861.00; +operation stats (ms/op):;avg op:;5860.50;min op:;1513.00;max op:;16721.00;;CHECK +operation info:;data length;-1;total iterations;10;total invocations;10; + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 KeyPair_genKeyPair() +measurement config:;appletPrepareINS;36;appletMeasureINS;45;config;00 19 ff ff 00 02 ff ff 06 00 00 01 ff ff ff ff ff ff 00 01 00 01 +baseline measurements (ms):;61.00;67.00;67.00;67.00;66.00; +baseline stats (ms):;avg:;66.75;min:;61.00;max:;67.00;;;CHECK +operation raw measurements (ms):;6240.25;5149.25;8129.25;15372.25;2294.25;9976.25;16274.25;12329.25;8983.25;7555.25; +operation stats (ms/op):;avg op:;9230.35;min op:;2294.25;max op:;16274.25;;CHECK +operation info:;data length;-1;total iterations;10;total invocations;10; + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 KeyPair_genKeyPair() +measurement config:;appletPrepareINS;36;appletMeasureINS;45;config;00 19 ff ff 00 02 ff ff 07 c0 00 01 ff ff ff ff ff ff 00 01 00 01 +baseline measurements (ms):;62.00;67.00;65.00;64.00;66.00; +baseline stats (ms):;avg:;64.80;min:;62.00;max:;67.00; +operation raw measurements (ms):;7332.20;14534.20;44218.20;32281.20;18074.20;18132.20;6122.20;56485.20;10740.20;17918.20; +operation stats (ms/op):;avg op:;22583.80;min op:;6122.20;max op:;56485.20;;CHECK +operation info:;data length;-1;total iterations;10;total invocations;10; + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 KeyPair_genKeyPair() +measurement config:;appletPrepareINS;36;appletMeasureINS;45;config;00 19 ff ff 00 02 ff ff 08 00 00 01 ff ff ff ff ff ff 00 01 00 01 +baseline measurements (ms):;61.00;67.00;454.00;67.00;66.00; +baseline stats (ms):;avg:;143.00;min:;61.00;max:;454.00;;;CHECK +operation raw measurements (ms):;11295.00;41072.00;22550.00;7522.00;31092.00;18460.00;37823.00;86893.00;6660.00;16832.00; +operation stats (ms/op):;avg op:;28019.90;min op:;6660.00;max op:;86893.00;;CHECK +operation info:;data length;-1;total iterations;10;total invocations;10; + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 KeyPair_genKeyPair() +measurement config:;appletPrepareINS;36;appletMeasureINS;45;config;00 19 ff ff 00 02 ff ff 0c 00 00 01 ff ff ff ff ff ff 00 01 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 KeyPair_genKeyPair() +measurement config:;appletPrepareINS;36;appletMeasureINS;45;config;00 19 ff ff 00 02 ff ff 10 00 00 01 ff ff ff ff ff ff 00 01 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_DSA LENGTH_DSA_512 KeyPair_genKeyPair() +measurement config:;appletPrepareINS;36;appletMeasureINS;45;config;00 19 ff ff 00 03 ff ff 02 00 00 01 ff ff ff ff ff ff 00 01 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_DSA LENGTH_DSA_768 KeyPair_genKeyPair() +measurement config:;appletPrepareINS;36;appletMeasureINS;45;config;00 19 ff ff 00 03 ff ff 03 00 00 01 ff ff ff ff ff ff 00 01 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_DSA LENGTH_DSA_1024 KeyPair_genKeyPair() +measurement config:;appletPrepareINS;36;appletMeasureINS;45;config;00 19 ff ff 00 03 ff ff 04 00 00 01 ff ff ff ff ff ff 00 01 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_EC_F2M LENGTH_EC_F2M_113 KeyPair_genKeyPair() +measurement config:;appletPrepareINS;36;appletMeasureINS;45;config;00 19 ff ff 00 04 ff ff 00 71 00 01 ff ff ff ff ff ff 00 01 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_EC_F2M LENGTH_EC_F2M_131 KeyPair_genKeyPair() +measurement config:;appletPrepareINS;36;appletMeasureINS;45;config;00 19 ff ff 00 04 ff ff 00 83 00 01 ff ff ff ff ff ff 00 01 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_EC_F2M LENGTH_EC_F2M_163 KeyPair_genKeyPair() +measurement config:;appletPrepareINS;36;appletMeasureINS;45;config;00 19 ff ff 00 04 ff ff 00 a3 00 01 ff ff ff ff ff ff 00 01 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_EC_F2M LENGTH_EC_F2M_193 KeyPair_genKeyPair() +measurement config:;appletPrepareINS;36;appletMeasureINS;45;config;00 19 ff ff 00 04 ff ff 00 c1 00 01 ff ff ff ff ff ff 00 01 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_EC_FP LENGTH_EC_FP_112 KeyPair_genKeyPair() +measurement config:;appletPrepareINS;36;appletMeasureINS;45;config;00 19 ff ff 00 05 ff ff 00 70 00 01 ff ff ff ff ff ff 00 01 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_EC_FP LENGTH_EC_FP_128 KeyPair_genKeyPair() +measurement config:;appletPrepareINS;36;appletMeasureINS;45;config;00 19 ff ff 00 05 ff ff 00 80 00 01 ff ff ff ff ff ff 00 01 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_EC_FP LENGTH_EC_FP_160 KeyPair_genKeyPair() +measurement config:;appletPrepareINS;36;appletMeasureINS;45;config;00 19 ff ff 00 05 ff ff 00 a0 00 01 ff ff ff ff ff ff 00 01 00 01 +baseline measurements (ms):;119.00;66.00;68.00;67.00;67.00; +baseline stats (ms):;avg:;77.40;min:;66.00;max:;119.00;;;CHECK +operation raw measurements (ms):;394.60;240.60;241.60;241.60;242.60;241.60;240.60;241.60;241.60;240.60; +operation stats (ms/op):;avg op:;256.70;min op:;240.60;max op:;394.60;;CHECK +operation info:;data length;-1;total iterations;10;total invocations;10; + +method name:; ALG_EC_FP LENGTH_EC_FP_192 KeyPair_genKeyPair() +measurement config:;appletPrepareINS;36;appletMeasureINS;45;config;00 19 ff ff 00 05 ff ff 00 c0 00 01 ff ff ff ff ff ff 00 01 00 01 +baseline measurements (ms):;61.00;67.00;76.00;66.00;66.00; +baseline stats (ms):;avg:;67.20;min:;61.00;max:;76.00;;;CHECK +operation raw measurements (ms):;499.80;315.80;312.80;311.80;310.80;310.80;313.80;311.80;313.80;313.80; +operation stats (ms/op):;avg op:;331.50;min op:;310.80;max op:;499.80;;CHECK +operation info:;data length;-1;total iterations;10;total invocations;10; + +method name:; ALG_EC_FP LENGTH_EC_FP_224 KeyPair_genKeyPair() +measurement config:;appletPrepareINS;36;appletMeasureINS;45;config;00 19 ff ff 00 05 ff ff 00 e0 00 01 ff ff ff ff ff ff 00 01 00 01 +baseline measurements (ms):;371.00;67.00;68.00;67.00;69.00; +baseline stats (ms):;avg:;128.40;min:;67.00;max:;371.00;;;CHECK +operation raw measurements (ms):;513.60;306.60;305.60;304.60;302.60;303.60;305.60;305.60;306.60;305.60; +operation stats (ms/op):;avg op:;326.00;min op:;302.60;max op:;513.60;;CHECK +operation info:;data length;-1;total iterations;10;total invocations;10; + +method name:; ALG_EC_FP LENGTH_EC_FP_256 KeyPair_genKeyPair() +measurement config:;appletPrepareINS;36;appletMeasureINS;45;config;00 19 ff ff 00 05 ff ff 01 00 00 01 ff ff ff ff ff ff 00 01 00 01 +baseline measurements (ms):;60.00;67.00;67.00;66.00;67.00; +baseline stats (ms):;avg:;66.75;min:;60.00;max:;67.00;;;CHECK +operation raw measurements (ms):;685.25;441.25;444.25;444.25;445.25;444.25;444.25;445.25;443.25;444.25; +operation stats (ms/op):;avg op:;468.15;min op:;441.25;max op:;685.25;;CHECK +operation info:;data length;-1;total iterations;10;total invocations;10; + +method name:; ALG_EC_FP LENGTH_EC_FP_384 KeyPair_genKeyPair() +measurement config:;appletPrepareINS;36;appletMeasureINS;45;config;00 19 ff ff 00 05 ff ff 01 80 00 01 ff ff ff ff ff ff 00 01 00 01 +baseline measurements (ms):;62.00;71.00;67.00;66.00;67.00; +baseline stats (ms):;avg:;67.75;min:;62.00;max:;71.00;;;CHECK +operation raw measurements (ms):;1453.25;962.25;951.25;954.25;950.25;953.25;946.25;955.25;953.25;952.25; +operation stats (ms/op):;avg op:;1003.15;min op:;946.25;max op:;1453.25;;CHECK +operation info:;data length;-1;total iterations;10;total invocations;10; + +method name:; ALG_EC_FP LENGTH_EC_FP_521 KeyPair_genKeyPair() +measurement config:;appletPrepareINS;36;appletMeasureINS;45;config;00 19 ff ff 00 05 ff ff 02 09 00 01 ff ff ff ff ff ff 00 01 00 01 +baseline measurements (ms):;158.00;68.00;67.00;68.00;68.00; +baseline stats (ms):;avg:;85.80;min:;67.00;max:;158.00;;;CHECK +operation raw measurements (ms):;2793.20;1919.20;1915.20;1914.20;1914.20;1916.20;1914.20;1915.20;1912.20;1911.20; +operation stats (ms/op):;avg op:;2002.50;min op:;1911.20;max op:;2793.20;;CHECK +operation info:;data length;-1;total iterations;10;total invocations;10; + + +KEY PAIR - END + + +KEYAGREEMENT + +method name:; ALG_EC_FP LENGTH_EC_FP_112 ALG_EC_SVDP_DH KeyAgreement_init() +measurement config:;appletPrepareINS;37;appletMeasureINS;47;config;00 13 00 01 00 05 00 0c 00 70 00 02 01 00 ff ff ff ff 00 0a 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_EC_FP LENGTH_EC_FP_112 ALG_EC_SVDP_DH KeyAgreement_generateSecret() +measurement config:;appletPrepareINS;37;appletMeasureINS;47;config;00 13 00 01 00 05 00 0c 00 70 00 04 01 00 ff ff ff ff 00 0a 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_EC_FP LENGTH_EC_FP_128 ALG_EC_SVDP_DH KeyAgreement_init() +measurement config:;appletPrepareINS;37;appletMeasureINS;47;config;00 13 00 01 00 05 00 0c 00 80 00 02 01 00 ff ff ff ff 00 0a 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_EC_FP LENGTH_EC_FP_128 ALG_EC_SVDP_DH KeyAgreement_generateSecret() +measurement config:;appletPrepareINS;37;appletMeasureINS;47;config;00 13 00 01 00 05 00 0c 00 80 00 04 01 00 ff ff ff ff 00 0a 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_EC_FP LENGTH_EC_FP_160 ALG_EC_SVDP_DH KeyAgreement_init() +measurement config:;appletPrepareINS;37;appletMeasureINS;47;config;00 13 00 01 00 05 00 0c 00 a0 00 02 01 00 ff ff ff ff 00 0a 00 01 +baseline measurements (ms):;106.00;99.00;100.00;99.00;99.00; +baseline stats (ms):;avg:;100.60;min:;99.00;max:;106.00;;;CHECK +operation raw measurements (ms):;148.40;147.40;146.40;148.40;148.40; +operation stats (ms/op):;avg op:;14.78;min op:;14.64;max op:;14.84; +operation info:;data length;256;total iterations;50;total invocations;50; + +method name:; ALG_EC_FP LENGTH_EC_FP_160 ALG_EC_SVDP_DH KeyAgreement_generateSecret() +measurement config:;appletPrepareINS;37;appletMeasureINS;47;config;00 13 00 01 00 05 00 0c 00 a0 00 04 01 00 ff ff ff ff 00 0a 00 01 +baseline measurements (ms):;105.00;101.00;99.00;98.00;100.00; +baseline stats (ms):;avg:;100.60;min:;98.00;max:;105.00; +operation raw measurements (ms):;1009.40;1010.40;1011.40;1008.40;1008.40; +operation stats (ms/op):;avg op:;100.96;min op:;100.84;max op:;101.14; +operation info:;data length;256;total iterations;50;total invocations;50; + +method name:; ALG_EC_FP LENGTH_EC_FP_192 ALG_EC_SVDP_DH KeyAgreement_init() +measurement config:;appletPrepareINS;37;appletMeasureINS;47;config;00 13 00 01 00 05 00 0c 00 c0 00 02 01 00 ff ff ff ff 00 0a 00 01 +baseline measurements (ms):;105.00;100.00;99.00;99.00;99.00; +baseline stats (ms):;avg:;100.40;min:;99.00;max:;105.00; +operation raw measurements (ms):;149.60;150.60;149.60;150.60;150.60; +operation stats (ms/op):;avg op:;15.02;min op:;14.96;max op:;15.06; +operation info:;data length;256;total iterations;50;total invocations;50; + +method name:; ALG_EC_FP LENGTH_EC_FP_192 ALG_EC_SVDP_DH KeyAgreement_generateSecret() +measurement config:;appletPrepareINS;37;appletMeasureINS;47;config;00 13 00 01 00 05 00 0c 00 c0 00 04 01 00 ff ff ff ff 00 0a 00 01 +baseline measurements (ms):;104.00;99.00;99.00;100.00;101.00; +baseline stats (ms):;avg:;100.60;min:;99.00;max:;104.00; +operation raw measurements (ms):;1268.40;1270.40;1271.40;1271.40;1272.40; +operation stats (ms/op):;avg op:;127.08;min op:;126.84;max op:;127.24; +operation info:;data length;256;total iterations;50;total invocations;50; + +method name:; ALG_EC_FP LENGTH_EC_FP_224 ALG_EC_SVDP_DH KeyAgreement_init() +measurement config:;appletPrepareINS;37;appletMeasureINS;47;config;00 13 00 01 00 05 00 0c 00 e0 00 02 01 00 ff ff ff ff 00 0a 00 01 +baseline measurements (ms):;106.00;101.00;101.00;100.00;100.00; +baseline stats (ms):;avg:;101.60;min:;100.00;max:;106.00; +operation raw measurements (ms):;158.40;154.40;154.40;154.40;153.40; +operation stats (ms/op):;avg op:;15.50;min op:;15.34;max op:;15.84; +operation info:;data length;256;total iterations;50;total invocations;50; + +method name:; ALG_EC_FP LENGTH_EC_FP_224 ALG_EC_SVDP_DH KeyAgreement_generateSecret() +measurement config:;appletPrepareINS;37;appletMeasureINS;47;config;00 13 00 01 00 05 00 0c 00 e0 00 04 01 00 ff ff ff ff 00 0a 00 01 +baseline measurements (ms):;107.00;102.00;110.00;101.00;272.00; +baseline stats (ms):;avg:;138.40;min:;101.00;max:;272.00;;;CHECK +operation raw measurements (ms):;1458.60;1459.60;1460.60;1460.60;1461.60; +operation stats (ms/op):;avg op:;146.02;min op:;145.86;max op:;146.16; +operation info:;data length;256;total iterations;50;total invocations;50; + +method name:; ALG_EC_FP LENGTH_EC_FP_256 ALG_EC_SVDP_DH KeyAgreement_init() +measurement config:;appletPrepareINS;37;appletMeasureINS;47;config;00 13 00 01 00 05 00 0c 01 00 00 02 01 00 ff ff ff ff 00 0a 00 01 +baseline measurements (ms):;108.00;101.00;101.00;102.00;102.00; +baseline stats (ms):;avg:;102.80;min:;101.00;max:;108.00;;;CHECK +operation raw measurements (ms):;160.20;159.20;157.20;159.20;158.20; +operation stats (ms/op):;avg op:;15.88;min op:;15.72;max op:;16.02; +operation info:;data length;256;total iterations;50;total invocations;50; + +method name:; ALG_EC_FP LENGTH_EC_FP_256 ALG_EC_SVDP_DH KeyAgreement_generateSecret() +measurement config:;appletPrepareINS;37;appletMeasureINS;47;config;00 13 00 01 00 05 00 0c 01 00 00 04 01 00 ff ff ff ff 00 0a 00 01 +baseline measurements (ms):;107.00;102.00;101.00;102.00;102.00; +baseline stats (ms):;avg:;102.80;min:;101.00;max:;107.00; +operation raw measurements (ms):;1868.20;1871.20;1872.20;1872.20;1871.20; +operation stats (ms/op):;avg op:;187.10;min op:;186.82;max op:;187.22; +operation info:;data length;256;total iterations;50;total invocations;50; + +method name:; ALG_EC_FP LENGTH_EC_FP_384 ALG_EC_SVDP_DH KeyAgreement_init() +measurement config:;appletPrepareINS;37;appletMeasureINS;47;config;00 13 00 01 00 05 00 0c 01 80 00 02 01 00 ff ff ff ff 00 0a 00 01 +baseline measurements (ms):;109.00;103.00;102.00;104.00;102.00; +baseline stats (ms):;avg:;104.00;min:;102.00;max:;109.00; +operation raw measurements (ms):;179.00;176.00;174.00;176.00;175.00; +operation stats (ms/op):;avg op:;17.60;min op:;17.40;max op:;17.90; +operation info:;data length;256;total iterations;50;total invocations;50; + +method name:; ALG_EC_FP LENGTH_EC_FP_384 ALG_EC_SVDP_DH KeyAgreement_generateSecret() +measurement config:;appletPrepareINS;37;appletMeasureINS;47;config;00 13 00 01 00 05 00 0c 01 80 00 04 01 00 ff ff ff ff 00 0a 00 01 +baseline measurements (ms):;109.00;104.00;114.00;103.00;102.00; +baseline stats (ms):;avg:;106.40;min:;102.00;max:;114.00;;;CHECK +operation raw measurements (ms):;4097.60;4100.60;4100.60;4102.60;4101.60; +operation stats (ms/op):;avg op:;410.06;min op:;409.76;max op:;410.26; +operation info:;data length;256;total iterations;50;total invocations;50; + +method name:; ALG_EC_FP LENGTH_EC_FP_521 ALG_EC_SVDP_DH KeyAgreement_init() +measurement config:;appletPrepareINS;37;appletMeasureINS;47;config;00 13 00 01 00 05 00 0c 02 09 00 02 01 00 ff ff ff ff 00 0a 00 01 +baseline measurements (ms):;111.00;115.00;105.00;105.00;106.00; +baseline stats (ms):;avg:;108.40;min:;105.00;max:;115.00;;;CHECK +operation raw measurements (ms):;196.60;196.60;194.60;195.60;195.60; +operation stats (ms/op):;avg op:;19.58;min op:;19.46;max op:;19.66; +operation info:;data length;256;total iterations;50;total invocations;50; + +method name:; ALG_EC_FP LENGTH_EC_FP_521 ALG_EC_SVDP_DH KeyAgreement_generateSecret() +measurement config:;appletPrepareINS;37;appletMeasureINS;47;config;00 13 00 01 00 05 00 0c 02 09 00 04 01 00 ff ff ff ff 00 0a 00 01 +baseline measurements (ms):;111.00;106.00;105.00;105.00;105.00; +baseline stats (ms):;avg:;106.40;min:;105.00;max:;111.00; +operation raw measurements (ms):;8761.60;8764.60;8764.60;8764.60;8763.60; +operation stats (ms/op):;avg op:;876.38;min op:;876.16;max op:;876.46; +operation info:;data length;256;total iterations;50;total invocations;50; + +method name:; ALG_EC_F2M LENGTH_EC_F2M_113 ALG_EC_SVDP_DH KeyAgreement_init() +measurement config:;appletPrepareINS;37;appletMeasureINS;47;config;00 13 00 01 00 04 00 0a 00 71 00 02 01 00 ff ff ff ff 00 0a 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_EC_F2M LENGTH_EC_F2M_113 ALG_EC_SVDP_DH KeyAgreement_generateSecret() +measurement config:;appletPrepareINS;37;appletMeasureINS;47;config;00 13 00 01 00 04 00 0a 00 71 00 04 01 00 ff ff ff ff 00 0a 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_EC_F2M LENGTH_EC_F2M_131 ALG_EC_SVDP_DH KeyAgreement_init() +measurement config:;appletPrepareINS;37;appletMeasureINS;47;config;00 13 00 01 00 04 00 0a 00 83 00 02 01 00 ff ff ff ff 00 0a 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_EC_F2M LENGTH_EC_F2M_131 ALG_EC_SVDP_DH KeyAgreement_generateSecret() +measurement config:;appletPrepareINS;37;appletMeasureINS;47;config;00 13 00 01 00 04 00 0a 00 83 00 04 01 00 ff ff ff ff 00 0a 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_EC_F2M LENGTH_EC_F2M_163 ALG_EC_SVDP_DH KeyAgreement_init() +measurement config:;appletPrepareINS;37;appletMeasureINS;47;config;00 13 00 01 00 04 00 0a 00 a3 00 02 01 00 ff ff ff ff 00 0a 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_EC_F2M LENGTH_EC_F2M_163 ALG_EC_SVDP_DH KeyAgreement_generateSecret() +measurement config:;appletPrepareINS;37;appletMeasureINS;47;config;00 13 00 01 00 04 00 0a 00 a3 00 04 01 00 ff ff ff ff 00 0a 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_EC_F2M LENGTH_EC_F2M_193 ALG_EC_SVDP_DH KeyAgreement_init() +measurement config:;appletPrepareINS;37;appletMeasureINS;47;config;00 13 00 01 00 04 00 0a 00 c1 00 02 01 00 ff ff ff ff 00 0a 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_EC_F2M LENGTH_EC_F2M_193 ALG_EC_SVDP_DH KeyAgreement_generateSecret() +measurement config:;appletPrepareINS;37;appletMeasureINS;47;config;00 13 00 01 00 04 00 0a 00 c1 00 04 01 00 ff ff ff ff 00 0a 00 01 +NO_SUCH_ALGORITHM + + +KEYAGREEMENT - END + + +Total test time:; 1524311653 seconds. + +Total human interventions (retries with physical resets etc.):; 0 + +Total reconnects to card:; 0 \ No newline at end of file diff --git a/Profiles/performance/variable/Athena_IDProtect____PERFORMANCE_SYMMETRIC_ASYMMETRIC_DATADEPEND_3b_d5_18_ff_81_91_fe_1f_c3_80_73_c8_21_13_09_(provided_by_PetrS).csv b/Profiles/performance/variable/Athena_IDProtect____PERFORMANCE_SYMMETRIC_ASYMMETRIC_DATADEPEND_3b_d5_18_ff_81_91_fe_1f_c3_80_73_c8_21_13_09_(provided_by_PetrS).csv new file mode 100644 index 00000000..2bf06894 --- /dev/null +++ b/Profiles/performance/variable/Athena_IDProtect____PERFORMANCE_SYMMETRIC_ASYMMETRIC_DATADEPEND_3b_d5_18_ff_81_91_fe_1f_c3_80_73_c8_21_13_09_(provided_by_PetrS).csv @@ -0,0 +1,24428 @@ +INFO: This file was generated by AlgTest utility. See http://www.fi.muni.cz/~xsvenda/jcsupport.html for more results, source codes and other details.; +Tested and provided by; insert your name please.; +Execution date/time; 2018/04/21 15:42:27 +AlgTestJClient version; 1.7.4 +AlgTest applet version; 1.7.4 +Used reader; PC/SC terminal Generic EMV Smartcard Reader 0 +Card ATR; 3b d5 18 ff 81 91 fe 1f c3 80 73 c8 21 13 09 +Card name; Athena IDProtect +Used protocol; T=1 + +JCSystem.getVersion()[Major.Minor];2.2; +JCSystem.isObjectDeletionSupported;yes; +JCSystem.MEMORY_TYPE_PERSISTENT;28798B; +JCSystem.MEMORY_TYPE_TRANSIENT_RESET;4155B; +JCSystem.MEMORY_TYPE_TRANSIENT_DESELECT;29284B; +JCSystem.MEMORY_TYPE_TRANSIENT_DESELECT;29284B; + +CPLC; 9f 7f 2a 41 80 01 0b 82 11 03 52 00 05 38 31 00 06 37 2b 48 4a 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +CPLC.ICFabricator;4180;Atmel +CPLC.ICType;010b +CPLC.OperatingSystemID;8211 +CPLC.OperatingSystemReleaseDate;0352 +CPLC.OperatingSystemReleaseLevel;0005 +CPLC.ICFabricationDate;3831;(Y DDD) date in that year +CPLC.ICSerialNumber;0006372b +CPLC.ICBatchIdentifier;484a +CPLC.ICModuleFabricator;0000 +CPLC.ICModulePackagingDate;0000 +CPLC.ICCManufacturer;0000 +CPLC.ICEmbeddingDate;0000 +CPLC.ICPrePersonalizer;0000 +CPLC.ICPrePersonalizationEquipmentDate;0000 +CPLC.ICPrePersonalizationEquipmentID;00000000 +CPLC.ICPersonalizer;0000 +CPLC.ICPersonalizationDate;0000 +CPLC.ICPersonalizationEquipmentID;00000000 +CPLC.ICPersonalizationEquipmentID;00000000 + + +MESSAGE DIGEST + + +MESSAGE DIGEST - ALG_SHA - variable data - BEGIN + +method name:; ALG_SHA MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 01 ff ff ff ff ff ff 00 06 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;79.00;76.00;81.00;75.00;77.00; +baseline stats (ms):;avg:;77.60;min:;75.00;max:;81.00; +operation raw measurements (ms):;2.40;6.40;-2.60;-1.60;-2.60; +operation stats (ms/op):;avg op:;0.08;min op:;-0.52;max op:;1.28;;CHECK +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; ALG_SHA MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 01 ff ff ff ff ff ff 00 06 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;67.00;68.00;71.00;68.00;68.00; +baseline stats (ms):;avg:;68.40;min:;67.00;max:;71.00; +operation raw measurements (ms):;5.60;6.60;6.60;7.60;3.60; +operation stats (ms/op):;avg op:;1.20;min op:;0.72;max op:;1.52;;CHECK +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; ALG_SHA MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 01 ff ff ff ff ff ff 00 06 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;66.00;68.00;68.00;68.00;66.00; +baseline stats (ms):;avg:;67.20;min:;66.00;max:;68.00; +operation raw measurements (ms):;12.80;12.80;12.80;12.80;12.80; +operation stats (ms/op):;avg op:;2.56;min op:;2.56;max op:;2.56; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; ALG_SHA MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 01 ff ff ff ff ff ff 00 06 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;67.00;79.00;163.00;77.00;65.00; +baseline stats (ms):;avg:;90.20;min:;65.00;max:;163.00;;;CHECK +operation raw measurements (ms):;-6.20;-7.20;-6.20;-8.20;-9.20; +operation stats (ms/op):;avg op:;-1.48;min op:;-1.84;max op:;-1.24; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; ALG_SHA MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 01 ff ff ff ff ff ff 00 06 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;64.00;65.00;63.00;63.00;63.00; +baseline stats (ms):;avg:;63.60;min:;63.00;max:;65.00; +operation raw measurements (ms):;29.40;30.40;29.40;29.40;29.40; +operation stats (ms/op):;avg op:;5.92;min op:;5.88;max op:;6.08; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; ALG_SHA MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 01 ff ff ff ff ff ff 00 06 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;63.00;64.00;64.00;62.00;64.00; +baseline stats (ms):;avg:;63.75;min:;62.00;max:;64.00; +operation raw measurements (ms):;53.25;52.25;51.25;52.25;52.25; +operation stats (ms/op):;avg op:;10.45;min op:;10.25;max op:;10.65; +operation info:;data length;512;total iterations;25;total invocations;25; + + +MESSAGE DIGEST - ALG_SHA - variable data - END + + +MESSAGE DIGEST - ALG_MD5 - variable data - BEGIN + +method name:; ALG_MD5 MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 02 ff ff ff ff ff ff 00 06 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_MD5 MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 02 ff ff ff ff ff ff 00 06 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_MD5 MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 02 ff ff ff ff ff ff 00 06 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_MD5 MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 02 ff ff ff ff ff ff 00 06 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_MD5 MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 02 ff ff ff ff ff ff 00 06 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_MD5 MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 02 ff ff ff ff ff ff 00 06 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +MESSAGE DIGEST - ALG_MD5 - variable data - END + + +MESSAGE DIGEST - ALG_RIPEMD160 - variable data - BEGIN + +method name:; ALG_RIPEMD160 MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 03 ff ff ff ff ff ff 00 06 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RIPEMD160 MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 03 ff ff ff ff ff ff 00 06 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RIPEMD160 MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 03 ff ff ff ff ff ff 00 06 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RIPEMD160 MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 03 ff ff ff ff ff ff 00 06 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RIPEMD160 MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 03 ff ff ff ff ff ff 00 06 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RIPEMD160 MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 03 ff ff ff ff ff ff 00 06 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +MESSAGE DIGEST - ALG_RIPEMD160 - variable data - END + + +MESSAGE DIGEST - ALG_SHA_256 - variable data - BEGIN + +method name:; ALG_SHA_256 MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 04 ff ff ff ff ff ff 00 06 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;69.00;67.00;67.00;68.00;69.00; +baseline stats (ms):;avg:;68.00;min:;67.00;max:;69.00; +operation raw measurements (ms):;13.00;12.00;14.00;13.00;11.00; +operation stats (ms/op):;avg op:;2.52;min op:;2.20;max op:;2.80;;CHECK +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; ALG_SHA_256 MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 04 ff ff ff ff ff ff 00 06 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;68.00;67.00;71.00;68.00;73.00; +baseline stats (ms):;avg:;69.40;min:;67.00;max:;73.00;;;CHECK +operation raw measurements (ms):;10.60;10.60;11.60;11.60;12.60; +operation stats (ms/op):;avg op:;2.28;min op:;2.12;max op:;2.52;;CHECK +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; ALG_SHA_256 MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 04 ff ff ff ff ff ff 00 06 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;67.00;68.00;66.00;67.00;68.00; +baseline stats (ms):;avg:;67.20;min:;66.00;max:;68.00; +operation raw measurements (ms):;25.80;24.80;24.80;24.80;24.80; +operation stats (ms/op):;avg op:;5.00;min op:;4.96;max op:;5.16; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; ALG_SHA_256 MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 04 ff ff ff ff ff ff 00 06 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;68.00;67.00;69.00;67.00;68.00; +baseline stats (ms):;avg:;67.80;min:;67.00;max:;69.00; +operation raw measurements (ms):;35.20;36.20;36.20;36.20;36.20; +operation stats (ms/op):;avg op:;7.20;min op:;7.04;max op:;7.24; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; ALG_SHA_256 MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 04 ff ff ff ff ff ff 00 06 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;67.00;67.00;67.00;68.00;68.00; +baseline stats (ms):;avg:;67.40;min:;67.00;max:;68.00; +operation raw measurements (ms):;59.60;58.60;57.60;59.60;58.60; +operation stats (ms/op):;avg op:;11.76;min op:;11.52;max op:;11.92; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; ALG_SHA_256 MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 04 ff ff ff ff ff ff 00 06 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;67.00;68.00;69.00;68.00;68.00; +baseline stats (ms):;avg:;68.25;min:;67.00;max:;69.00; +operation raw measurements (ms):;103.75;103.75;104.75;104.75;103.75; +operation stats (ms/op):;avg op:;20.83;min op:;20.75;max op:;20.95; +operation info:;data length;512;total iterations;25;total invocations;25; + + +MESSAGE DIGEST - ALG_SHA_256 - variable data - END + + +MESSAGE DIGEST - ALG_SHA_384 - variable data - BEGIN + +method name:; ALG_SHA_384 MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 05 ff ff ff ff ff ff 00 06 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;67.00;67.00;67.00;68.00;67.00; +baseline stats (ms):;avg:;67.20;min:;67.00;max:;68.00; +operation raw measurements (ms):;11.80;9.80;10.80;10.80;12.80; +operation stats (ms/op):;avg op:;2.24;min op:;1.96;max op:;2.56;;CHECK +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; ALG_SHA_384 MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 05 ff ff ff ff ff ff 00 06 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;68.00;67.00;68.00;68.00;67.00; +baseline stats (ms):;avg:;67.60;min:;67.00;max:;68.00; +operation raw measurements (ms):;11.40;11.40;11.40;11.40;10.40; +operation stats (ms/op):;avg op:;2.24;min op:;2.08;max op:;2.28;;CHECK +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; ALG_SHA_384 MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 05 ff ff ff ff ff ff 00 06 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;67.00;67.00;67.00;68.00;67.00; +baseline stats (ms):;avg:;67.20;min:;67.00;max:;68.00; +operation raw measurements (ms):;12.80;11.80;11.80;11.80;12.80; +operation stats (ms/op):;avg op:;2.44;min op:;2.36;max op:;2.56; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; ALG_SHA_384 MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 05 ff ff ff ff ff ff 00 06 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;65.00;65.00;64.00;67.00;68.00; +baseline stats (ms):;avg:;65.80;min:;64.00;max:;68.00; +operation raw measurements (ms):;22.20;21.20;21.20;21.20;22.20; +operation stats (ms/op):;avg op:;4.32;min op:;4.24;max op:;4.44; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; ALG_SHA_384 MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 05 ff ff ff ff ff ff 00 06 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;67.00;70.00;67.00;67.00;69.00; +baseline stats (ms):;avg:;68.00;min:;67.00;max:;70.00; +operation raw measurements (ms):;29.00;29.00;29.00;30.00;29.00; +operation stats (ms/op):;avg op:;5.84;min op:;5.80;max op:;6.00; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; ALG_SHA_384 MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 05 ff ff ff ff ff ff 00 06 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;68.00;65.00;66.00;68.00;66.00; +baseline stats (ms):;avg:;66.60;min:;65.00;max:;68.00; +operation raw measurements (ms):;48.40;48.40;49.40;49.40;49.40; +operation stats (ms/op):;avg op:;9.80;min op:;9.68;max op:;9.88; +operation info:;data length;512;total iterations;25;total invocations;25; + + +MESSAGE DIGEST - ALG_SHA_384 - variable data - END + + +MESSAGE DIGEST - ALG_SHA_512 - variable data - BEGIN + +method name:; ALG_SHA_512 MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 06 ff ff ff ff ff ff 00 06 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;68.00;67.00;68.00;69.00;68.00; +baseline stats (ms):;avg:;68.25;min:;67.00;max:;69.00; +operation raw measurements (ms):;9.75;10.75;9.75;10.75;10.75; +operation stats (ms/op):;avg op:;2.07;min op:;1.95;max op:;2.15;;CHECK +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; ALG_SHA_512 MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 06 ff ff ff ff ff ff 00 06 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;67.00;64.00;65.00;67.00;66.00; +baseline stats (ms):;avg:;65.80;min:;64.00;max:;67.00; +operation raw measurements (ms):;13.20;13.20;13.20;13.20;10.20; +operation stats (ms/op):;avg op:;2.52;min op:;2.04;max op:;2.64;;CHECK +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; ALG_SHA_512 MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 06 ff ff ff ff ff ff 00 06 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;67.00;67.00;67.00;68.00;68.00; +baseline stats (ms):;avg:;67.40;min:;67.00;max:;68.00; +operation raw measurements (ms):;11.60;11.60;11.60;11.60;8.60; +operation stats (ms/op):;avg op:;2.20;min op:;1.72;max op:;2.32;;CHECK +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; ALG_SHA_512 MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 06 ff ff ff ff ff ff 00 06 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;67.00;68.00;68.00;67.00;67.00; +baseline stats (ms):;avg:;67.40;min:;67.00;max:;68.00; +operation raw measurements (ms):;19.60;18.60;20.60;32.60;19.60; +operation stats (ms/op):;avg op:;4.44;min op:;3.72;max op:;6.52;;CHECK +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; ALG_SHA_512 MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 06 ff ff ff ff ff ff 00 06 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;67.00;68.00;67.00;68.00;68.00; +baseline stats (ms):;avg:;67.60;min:;67.00;max:;68.00; +operation raw measurements (ms):;28.40;29.40;28.40;29.40;29.40; +operation stats (ms/op):;avg op:;5.80;min op:;5.68;max op:;5.88; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; ALG_SHA_512 MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 06 ff ff ff ff ff ff 00 06 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;67.00;68.00;68.00;67.00;67.00; +baseline stats (ms):;avg:;67.40;min:;67.00;max:;68.00; +operation raw measurements (ms):;45.60;45.60;47.60;48.60;47.60; +operation stats (ms/op):;avg op:;9.40;min op:;9.12;max op:;9.72; +operation info:;data length;512;total iterations;25;total invocations;25; + + +MESSAGE DIGEST - ALG_SHA_512 - variable data - END + + +MESSAGE DIGEST - ALG_SHA_224 - variable data - BEGIN + +method name:; ALG_SHA_224 MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 07 ff ff ff ff ff ff 00 06 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;67.00;68.00;67.00;68.00;68.00; +baseline stats (ms):;avg:;67.60;min:;67.00;max:;68.00; +operation raw measurements (ms):;13.40;12.40;13.40;12.40;12.40; +operation stats (ms/op):;avg op:;2.56;min op:;2.48;max op:;2.68; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; ALG_SHA_224 MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 07 ff ff ff ff ff ff 00 06 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;67.00;67.00;68.00;67.00;68.00; +baseline stats (ms):;avg:;67.40;min:;67.00;max:;68.00; +operation raw measurements (ms):;13.60;13.60;13.60;13.60;12.60; +operation stats (ms/op):;avg op:;2.68;min op:;2.52;max op:;2.72;;CHECK +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; ALG_SHA_224 MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 07 ff ff ff ff ff ff 00 06 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;67.00;68.00;68.00;68.00;68.00; +baseline stats (ms):;avg:;68.00;min:;67.00;max:;68.00; +operation raw measurements (ms):;24.00;24.00;24.00;24.00;24.00; +operation stats (ms/op):;avg op:;4.80;min op:;4.80;max op:;4.80; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; ALG_SHA_224 MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 07 ff ff ff ff ff ff 00 06 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;67.00;67.00;66.00;67.00;67.00; +baseline stats (ms):;avg:;67.00;min:;66.00;max:;67.00; +operation raw measurements (ms):;36.00;36.00;36.00;36.00;36.00; +operation stats (ms/op):;avg op:;7.20;min op:;7.20;max op:;7.20; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; ALG_SHA_224 MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 07 ff ff ff ff ff ff 00 06 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;67.00;67.00;67.00;67.00;66.00; +baseline stats (ms):;avg:;67.00;min:;66.00;max:;67.00; +operation raw measurements (ms):;59.00;59.00;60.00;59.00;58.00; +operation stats (ms/op):;avg op:;11.80;min op:;11.60;max op:;12.00; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; ALG_SHA_224 MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 07 ff ff ff ff ff ff 00 06 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;67.00;65.00;71.00;67.00;67.00; +baseline stats (ms):;avg:;67.40;min:;65.00;max:;71.00;;;CHECK +operation raw measurements (ms):;105.60;105.60;104.60;105.60;105.60; +operation stats (ms/op):;avg op:;21.08;min op:;20.92;max op:;21.12; +operation info:;data length;512;total iterations;25;total invocations;25; + + +MESSAGE DIGEST - ALG_SHA_224 - variable data - END + + +MESSAGE DIGEST - ALG_SHA3_224 - variable data - BEGIN + +method name:; ALG_SHA3_224 MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 08 ff ff ff ff ff ff 00 06 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_SHA3_224 MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 08 ff ff ff ff ff ff 00 06 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_SHA3_224 MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 08 ff ff ff ff ff ff 00 06 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_SHA3_224 MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 08 ff ff ff ff ff ff 00 06 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_SHA3_224 MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 08 ff ff ff ff ff ff 00 06 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_SHA3_224 MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 08 ff ff ff ff ff ff 00 06 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +MESSAGE DIGEST - ALG_SHA3_224 - variable data - END + + +MESSAGE DIGEST - ALG_SHA3_256 - variable data - BEGIN + +method name:; ALG_SHA3_256 MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 09 ff ff ff ff ff ff 00 06 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_SHA3_256 MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 09 ff ff ff ff ff ff 00 06 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_SHA3_256 MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 09 ff ff ff ff ff ff 00 06 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_SHA3_256 MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 09 ff ff ff ff ff ff 00 06 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_SHA3_256 MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 09 ff ff ff ff ff ff 00 06 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_SHA3_256 MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 09 ff ff ff ff ff ff 00 06 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +MESSAGE DIGEST - ALG_SHA3_256 - variable data - END + + +MESSAGE DIGEST - ALG_SHA3_384 - variable data - BEGIN + +method name:; ALG_SHA3_384 MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 0a ff ff ff ff ff ff 00 06 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_SHA3_384 MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 0a ff ff ff ff ff ff 00 06 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_SHA3_384 MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 0a ff ff ff ff ff ff 00 06 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_SHA3_384 MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 0a ff ff ff ff ff ff 00 06 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_SHA3_384 MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 0a ff ff ff ff ff ff 00 06 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_SHA3_384 MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 0a ff ff ff ff ff ff 00 06 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +MESSAGE DIGEST - ALG_SHA3_384 - variable data - END + + +MESSAGE DIGEST - ALG_SHA3_512 - variable data - BEGIN + +method name:; ALG_SHA3_512 MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 0b ff ff ff ff ff ff 00 06 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_SHA3_512 MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 0b ff ff ff ff ff ff 00 06 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_SHA3_512 MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 0b ff ff ff ff ff ff 00 06 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_SHA3_512 MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 0b ff ff ff ff ff ff 00 06 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_SHA3_512 MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 0b ff ff ff ff ff ff 00 06 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_SHA3_512 MessageDigest_doFinal() +measurement config:;appletPrepareINS;34;appletMeasureINS;41;config;00 15 00 0b ff ff ff ff ff ff 00 06 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +MESSAGE DIGEST - ALG_SHA3_512 - variable data - END + + +MESSAGE DIGEST - END + + +RANDOM GENERATOR + + +RANDOM GENERATOR - ALG_PSEUDO_RANDOM - variable data - BEGIN + +method name:; ALG_PSEUDO_RANDOM RandomData_generateData();16; +measurement config:;appletPrepareINS;33;appletMeasureINS;42;config;00 16 00 01 ff ff ff ff ff ff 00 03 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;67.00;65.00;66.00;67.00;67.00; +baseline stats (ms):;avg:;66.75;min:;65.00;max:;67.00; +operation raw measurements (ms):;1.25;1.25;1.25;1.25;1.25; +operation stats (ms/op):;avg op:;0.25;min op:;0.25;max op:;0.25; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; ALG_PSEUDO_RANDOM RandomData_generateData();32; +measurement config:;appletPrepareINS;33;appletMeasureINS;42;config;00 16 00 01 ff ff ff ff ff ff 00 03 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;67.00;67.00;66.00;66.00;68.00; +baseline stats (ms):;avg:;66.80;min:;66.00;max:;68.00; +operation raw measurements (ms):;0.20;1.20;1.20;0.20;1.20; +operation stats (ms/op):;avg op:;0.16;min op:;0.04;max op:;0.24;;CHECK +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; ALG_PSEUDO_RANDOM RandomData_generateData();64; +measurement config:;appletPrepareINS;33;appletMeasureINS;42;config;00 16 00 01 ff ff ff ff ff ff 00 03 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;67.00;67.00;66.00;67.00;67.00; +baseline stats (ms):;avg:;67.00;min:;66.00;max:;67.00; +operation raw measurements (ms):;1.00;2.00;2.00;2.00;1.00; +operation stats (ms/op):;avg op:;0.32;min op:;0.20;max op:;0.40;;CHECK +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; ALG_PSEUDO_RANDOM RandomData_generateData();128; +measurement config:;appletPrepareINS;33;appletMeasureINS;42;config;00 16 00 01 ff ff ff ff ff ff 00 03 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;65.00;66.00;67.00;67.00;67.00; +baseline stats (ms):;avg:;66.75;min:;65.00;max:;67.00; +operation raw measurements (ms):;2.25;3.25;2.25;2.25;3.25; +operation stats (ms/op):;avg op:;0.53;min op:;0.45;max op:;0.65;;CHECK +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; ALG_PSEUDO_RANDOM RandomData_generateData();256; +measurement config:;appletPrepareINS;33;appletMeasureINS;42;config;00 16 00 01 ff ff ff ff ff ff 00 03 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;66.00;67.00;67.00;68.00;67.00; +baseline stats (ms):;avg:;67.25;min:;66.00;max:;68.00; +operation raw measurements (ms):;1.75;3.75;2.75;2.75;2.75; +operation stats (ms/op):;avg op:;0.55;min op:;0.35;max op:;0.75;;CHECK +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; ALG_PSEUDO_RANDOM RandomData_generateData();512; +measurement config:;appletPrepareINS;33;appletMeasureINS;42;config;00 16 00 01 ff ff ff ff ff ff 00 03 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;66.00;66.00;68.00;66.00;67.00; +baseline stats (ms):;avg:;66.60;min:;66.00;max:;68.00; +operation raw measurements (ms):;6.40;6.40;5.40;5.40;5.40; +operation stats (ms/op):;avg op:;1.16;min op:;1.08;max op:;1.28;;CHECK +operation info:;data length;512;total iterations;25;total invocations;25; + + +RANDOM GENERATOR - ALG_PSEUDO_RANDOM - variable data - END + + +RANDOM GENERATOR - ALG_SECURE_RANDOM - variable data - BEGIN + +method name:; ALG_SECURE_RANDOM RandomData_generateData();16; +measurement config:;appletPrepareINS;33;appletMeasureINS;42;config;00 16 00 02 ff ff ff ff ff ff 00 03 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;68.00;64.00;64.00;64.00;68.00; +baseline stats (ms):;avg:;65.60;min:;64.00;max:;68.00; +operation raw measurements (ms):;36.40;36.40;38.40;35.40;35.40; +operation stats (ms/op):;avg op:;7.28;min op:;7.08;max op:;7.68;;CHECK +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; ALG_SECURE_RANDOM RandomData_generateData();32; +measurement config:;appletPrepareINS;33;appletMeasureINS;42;config;00 16 00 02 ff ff ff ff ff ff 00 03 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;68.00;66.00;91.00;338.00;63.00; +baseline stats (ms):;avg:;125.20;min:;63.00;max:;338.00;;;CHECK +operation raw measurements (ms):;-27.20;-24.20;-24.20;-23.20;-23.20; +operation stats (ms/op):;avg op:;-4.88;min op:;-5.44;max op:;-4.64; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; ALG_SECURE_RANDOM RandomData_generateData();64; +measurement config:;appletPrepareINS;33;appletMeasureINS;42;config;00 16 00 02 ff ff ff ff ff ff 00 03 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;68.00;70.00;66.00;65.00;68.00; +baseline stats (ms):;avg:;67.40;min:;65.00;max:;70.00; +operation raw measurements (ms):;46.60;45.60;44.60;45.60;45.60; +operation stats (ms/op):;avg op:;9.12;min op:;8.92;max op:;9.32; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; ALG_SECURE_RANDOM RandomData_generateData();128; +measurement config:;appletPrepareINS;33;appletMeasureINS;42;config;00 16 00 02 ff ff ff ff ff ff 00 03 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;67.00;67.00;67.00;67.00;68.00; +baseline stats (ms):;avg:;67.20;min:;67.00;max:;68.00; +operation raw measurements (ms):;68.80;68.80;69.80;69.80;68.80; +operation stats (ms/op):;avg op:;13.84;min op:;13.76;max op:;13.96; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; ALG_SECURE_RANDOM RandomData_generateData();256; +measurement config:;appletPrepareINS;33;appletMeasureINS;42;config;00 16 00 02 ff ff ff ff ff ff 00 03 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;67.00;67.00;67.00;67.00;66.00; +baseline stats (ms):;avg:;67.00;min:;66.00;max:;67.00; +operation raw measurements (ms):;112.00;113.00;115.00;114.00;114.00; +operation stats (ms/op):;avg op:;22.72;min op:;22.40;max op:;23.00; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; ALG_SECURE_RANDOM RandomData_generateData();512; +measurement config:;appletPrepareINS;33;appletMeasureINS;42;config;00 16 00 02 ff ff ff ff ff ff 00 03 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;66.00;68.00;67.00;67.00;68.00; +baseline stats (ms):;avg:;67.20;min:;66.00;max:;68.00; +operation raw measurements (ms):;205.80;205.80;205.80;206.80;205.80; +operation stats (ms/op):;avg op:;41.20;min op:;41.16;max op:;41.36; +operation info:;data length;512;total iterations;25;total invocations;25; + + +RANDOM GENERATOR - ALG_SECURE_RANDOM - variable data - END + + +RANDOM GENERATOR - ALG_TRNG - variable data - BEGIN + +method name:; ALG_TRNG RandomData_generateData();16; +measurement config:;appletPrepareINS;33;appletMeasureINS;42;config;00 16 00 03 ff ff ff ff ff ff 00 03 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_TRNG RandomData_generateData();32; +measurement config:;appletPrepareINS;33;appletMeasureINS;42;config;00 16 00 03 ff ff ff ff ff ff 00 03 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_TRNG RandomData_generateData();64; +measurement config:;appletPrepareINS;33;appletMeasureINS;42;config;00 16 00 03 ff ff ff ff ff ff 00 03 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_TRNG RandomData_generateData();128; +measurement config:;appletPrepareINS;33;appletMeasureINS;42;config;00 16 00 03 ff ff ff ff ff ff 00 03 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_TRNG RandomData_generateData();256; +measurement config:;appletPrepareINS;33;appletMeasureINS;42;config;00 16 00 03 ff ff ff ff ff ff 00 03 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_TRNG RandomData_generateData();512; +measurement config:;appletPrepareINS;33;appletMeasureINS;42;config;00 16 00 03 ff ff ff ff ff ff 00 03 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +RANDOM GENERATOR - ALG_TRNG - variable data - END + + +RANDOM GENERATOR - ALG_ALG_PRESEEDED_DRBG - variable data - BEGIN + +method name:; ALG_ALG_PRESEEDED_DRBG RandomData_generateData();16; +measurement config:;appletPrepareINS;33;appletMeasureINS;42;config;00 16 00 04 ff ff ff ff ff ff 00 03 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_ALG_PRESEEDED_DRBG RandomData_generateData();32; +measurement config:;appletPrepareINS;33;appletMeasureINS;42;config;00 16 00 04 ff ff ff ff ff ff 00 03 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_ALG_PRESEEDED_DRBG RandomData_generateData();64; +measurement config:;appletPrepareINS;33;appletMeasureINS;42;config;00 16 00 04 ff ff ff ff ff ff 00 03 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_ALG_PRESEEDED_DRBG RandomData_generateData();128; +measurement config:;appletPrepareINS;33;appletMeasureINS;42;config;00 16 00 04 ff ff ff ff ff ff 00 03 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_ALG_PRESEEDED_DRBG RandomData_generateData();256; +measurement config:;appletPrepareINS;33;appletMeasureINS;42;config;00 16 00 04 ff ff ff ff ff ff 00 03 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_ALG_PRESEEDED_DRBG RandomData_generateData();512; +measurement config:;appletPrepareINS;33;appletMeasureINS;42;config;00 16 00 04 ff ff ff ff ff ff 00 03 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +RANDOM GENERATOR - ALG_ALG_PRESEEDED_DRBG - variable data - END + + +RANDOM GENERATOR - ALG_FAST - variable data - BEGIN + +method name:; ALG_FAST RandomData_generateData();16; +measurement config:;appletPrepareINS;33;appletMeasureINS;42;config;00 16 00 05 ff ff ff ff ff ff 00 03 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_FAST RandomData_generateData();32; +measurement config:;appletPrepareINS;33;appletMeasureINS;42;config;00 16 00 05 ff ff ff ff ff ff 00 03 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_FAST RandomData_generateData();64; +measurement config:;appletPrepareINS;33;appletMeasureINS;42;config;00 16 00 05 ff ff ff ff ff ff 00 03 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_FAST RandomData_generateData();128; +measurement config:;appletPrepareINS;33;appletMeasureINS;42;config;00 16 00 05 ff ff ff ff ff ff 00 03 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_FAST RandomData_generateData();256; +measurement config:;appletPrepareINS;33;appletMeasureINS;42;config;00 16 00 05 ff ff ff ff ff ff 00 03 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_FAST RandomData_generateData();512; +measurement config:;appletPrepareINS;33;appletMeasureINS;42;config;00 16 00 05 ff ff ff ff ff ff 00 03 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +RANDOM GENERATOR - ALG_FAST - variable data - END + + +RANDOM GENERATOR - ALG_KEYGENERATION - variable data - BEGIN + +method name:; ALG_KEYGENERATION RandomData_generateData();16; +measurement config:;appletPrepareINS;33;appletMeasureINS;42;config;00 16 00 06 ff ff ff ff ff ff 00 03 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_KEYGENERATION RandomData_generateData();32; +measurement config:;appletPrepareINS;33;appletMeasureINS;42;config;00 16 00 06 ff ff ff ff ff ff 00 03 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_KEYGENERATION RandomData_generateData();64; +measurement config:;appletPrepareINS;33;appletMeasureINS;42;config;00 16 00 06 ff ff ff ff ff ff 00 03 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_KEYGENERATION RandomData_generateData();128; +measurement config:;appletPrepareINS;33;appletMeasureINS;42;config;00 16 00 06 ff ff ff ff ff ff 00 03 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_KEYGENERATION RandomData_generateData();256; +measurement config:;appletPrepareINS;33;appletMeasureINS;42;config;00 16 00 06 ff ff ff ff ff ff 00 03 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_KEYGENERATION RandomData_generateData();512; +measurement config:;appletPrepareINS;33;appletMeasureINS;42;config;00 16 00 06 ff ff ff ff ff ff 00 03 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +RANDOM GENERATOR - ALG_KEYGENERATION - variable data - END + + +RANDOM GENERATOR - END + + +CIPHER + + +CIPHER - TYPE_DES LENGTH_DES ALG_DES_CBC_NOPAD - variable data - BEGIN + +method name:; TYPE_DES LENGTH_DES ALG_DES_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 01 ff ff 00 03 00 40 00 07 00 10 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;86.00;88.00;88.00;87.00;87.00; +baseline stats (ms):;avg:;87.20;min:;86.00;max:;88.00; +operation raw measurements (ms):;13.80;12.80;12.80;13.80;12.80; +operation stats (ms/op):;avg op:;2.64;min op:;2.56;max op:;2.76; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 01 ff ff 00 03 00 40 00 07 00 20 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;87.00;288.00;84.00;83.00;83.00; +baseline stats (ms):;avg:;125.00;min:;83.00;max:;288.00;;;CHECK +operation raw measurements (ms):;-18.00;-17.00;-16.00;-17.00;-17.00; +operation stats (ms/op):;avg op:;-3.40;min op:;-3.60;max op:;-3.20; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 01 ff ff 00 03 00 40 00 07 00 40 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;86.00;86.00;333.00;86.00;87.00; +baseline stats (ms):;avg:;135.60;min:;86.00;max:;333.00;;;CHECK +operation raw measurements (ms):;-12.60;-12.60;-10.60;-11.60;-11.60; +operation stats (ms/op):;avg op:;-2.36;min op:;-2.52;max op:;-2.12; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 01 ff ff 00 03 00 40 00 07 00 80 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;87.00;430.00;87.00;87.00;87.00; +baseline stats (ms):;avg:;155.60;min:;87.00;max:;430.00;;;CHECK +operation raw measurements (ms):;0.40;0.40;0.40;-0.60;0.40; +operation stats (ms/op):;avg op:;0.04;min op:;-0.12;max op:;0.08;;CHECK +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 01 ff ff 00 03 00 40 00 07 01 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;139.00;88.00;88.00;88.00;87.00; +baseline stats (ms):;avg:;98.00;min:;87.00;max:;139.00;;;CHECK +operation raw measurements (ms):;123.00;123.00;122.00;122.00;123.00; +operation stats (ms/op):;avg op:;24.52;min op:;24.40;max op:;24.60; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 01 ff ff 00 03 00 40 00 07 02 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;85.00;124.00;84.00;87.00;88.00; +baseline stats (ms):;avg:;93.60;min:;84.00;max:;124.00;;;CHECK +operation raw measurements (ms):;255.40;255.40;256.40;256.40;255.40; +operation stats (ms/op):;avg op:;51.16;min op:;51.08;max op:;51.28; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_CBC_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 01 ff ff 00 03 00 40 00 07 00 10 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;226.00;87.00;88.00;89.00;88.00; +baseline stats (ms):;avg:;115.60;min:;87.00;max:;226.00;;;CHECK +operation raw measurements (ms):;95.40;106.40;106.40;105.40;106.40; +operation stats (ms/op):;avg op:;20.80;min op:;19.08;max op:;21.28;;CHECK +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_CBC_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 01 ff ff 00 03 00 40 00 07 00 20 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;94.00;182.00;88.00;89.00;88.00; +baseline stats (ms):;avg:;108.20;min:;88.00;max:;182.00;;;CHECK +operation raw measurements (ms):;112.80;121.80;120.80;121.80;121.80; +operation stats (ms/op):;avg op:;23.96;min op:;22.56;max op:;24.36;;CHECK +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_CBC_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 01 ff ff 00 03 00 40 00 07 00 40 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;319.00;87.00;88.00;89.00;88.00; +baseline stats (ms):;avg:;134.20;min:;87.00;max:;319.00;;;CHECK +operation raw measurements (ms):;101.80;107.80;110.80;110.80;110.80; +operation stats (ms/op):;avg op:;21.68;min op:;20.36;max op:;22.16;;CHECK +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_CBC_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 01 ff ff 00 03 00 40 00 07 00 80 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;95.00;87.00;88.00;87.00;88.00; +baseline stats (ms):;avg:;89.00;min:;87.00;max:;95.00;;;CHECK +operation raw measurements (ms):;180.00;189.00;189.00;189.00;189.00; +operation stats (ms/op):;avg op:;37.44;min op:;36.00;max op:;37.80; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_CBC_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 01 ff ff 00 03 00 40 00 07 01 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;94.00;87.00;89.00;88.00;87.00; +baseline stats (ms):;avg:;89.00;min:;87.00;max:;94.00;;;CHECK +operation raw measurements (ms):;243.00;254.00;253.00;254.00;253.00; +operation stats (ms/op):;avg op:;50.28;min op:;48.60;max op:;50.80; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_CBC_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 01 ff ff 00 03 00 40 00 07 02 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;95.00;277.00;87.00;88.00;88.00; +baseline stats (ms):;avg:;127.00;min:;87.00;max:;277.00;;;CHECK +operation raw measurements (ms):;334.00;343.00;345.00;344.00;344.00; +operation stats (ms/op):;avg op:;68.40;min op:;66.80;max op:;69.00; +operation info:;data length;512;total iterations;25;total invocations;25; + + +CIPHER - TYPE_DES LENGTH_DES ALG_DES_CBC_NOPAD - variable data - END + + +CIPHER - TYPE_DES LENGTH_DES ALG_DES_CBC_ISO9797_M1 - variable data - BEGIN + +method name:; TYPE_DES LENGTH_DES ALG_DES_CBC_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 02 ff ff 00 03 00 40 00 07 00 10 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;86.00;87.00;87.00;88.00;87.00; +baseline stats (ms):;avg:;87.25;min:;86.00;max:;88.00; +operation raw measurements (ms):;12.75;12.75;13.75;12.75;12.75; +operation stats (ms/op):;avg op:;2.59;min op:;2.55;max op:;2.75;;CHECK +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_CBC_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 02 ff ff 00 03 00 40 00 07 00 20 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;87.00;296.00;87.00;87.00;88.00; +baseline stats (ms):;avg:;129.00;min:;87.00;max:;296.00;;;CHECK +operation raw measurements (ms):;-21.00;-21.00;-20.00;-21.00;-21.00; +operation stats (ms/op):;avg op:;-4.16;min op:;-4.20;max op:;-4.00; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_CBC_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 02 ff ff 00 03 00 40 00 07 00 40 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;257.00;88.00;88.00;88.00;88.00; +baseline stats (ms):;avg:;121.80;min:;88.00;max:;257.00;;;CHECK +operation raw measurements (ms):;3.20;2.20;2.20;1.20;2.20; +operation stats (ms/op):;avg op:;0.44;min op:;0.24;max op:;0.64;;CHECK +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_CBC_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 02 ff ff 00 03 00 40 00 07 00 80 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;85.00;108.00;88.00;87.00;87.00; +baseline stats (ms):;avg:;91.00;min:;85.00;max:;108.00;;;CHECK +operation raw measurements (ms):;65.00;65.00;65.00;65.00;65.00; +operation stats (ms/op):;avg op:;13.00;min op:;13.00;max op:;13.00; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_CBC_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 02 ff ff 00 03 00 40 00 07 01 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;154.00;87.00;87.00;87.00;87.00; +baseline stats (ms):;avg:;100.40;min:;87.00;max:;154.00;;;CHECK +operation raw measurements (ms):;119.60;120.60;120.60;119.60;119.60; +operation stats (ms/op):;avg op:;24.00;min op:;23.92;max op:;24.12; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_CBC_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 02 ff ff 00 03 00 40 00 07 02 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;86.00;142.00;87.00;87.00;88.00; +baseline stats (ms):;avg:;98.00;min:;86.00;max:;142.00;;;CHECK +operation raw measurements (ms):;250.00;252.00;251.00;251.00;252.00; +operation stats (ms/op):;avg op:;50.24;min op:;50.00;max op:;50.40; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_CBC_ISO9797_M1 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 02 ff ff 00 03 00 40 00 07 00 10 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;233.00;88.00;88.00;87.00;87.00; +baseline stats (ms):;avg:;116.60;min:;87.00;max:;233.00;;;CHECK +operation raw measurements (ms):;95.40;104.40;105.40;105.40;104.40; +operation stats (ms/op):;avg op:;20.60;min op:;19.08;max op:;21.08;;CHECK +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_CBC_ISO9797_M1 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 02 ff ff 00 03 00 40 00 07 00 20 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;94.00;157.00;88.00;87.00;87.00; +baseline stats (ms):;avg:;102.60;min:;87.00;max:;157.00;;;CHECK +operation raw measurements (ms):;118.40;127.40;127.40;126.40;127.40; +operation stats (ms/op):;avg op:;25.08;min op:;23.68;max op:;25.48;;CHECK +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_CBC_ISO9797_M1 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 02 ff ff 00 03 00 40 00 07 00 40 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;94.00;87.00;308.00;89.00;87.00; +baseline stats (ms):;avg:;133.00;min:;87.00;max:;308.00;;;CHECK +operation raw measurements (ms):;103.00;113.00;114.00;113.00;111.00; +operation stats (ms/op):;avg op:;22.16;min op:;20.60;max op:;22.80;;CHECK +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_CBC_ISO9797_M1 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 02 ff ff 00 03 00 40 00 07 00 80 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;94.00;563.00;89.00;87.00;88.00; +baseline stats (ms):;avg:;184.20;min:;87.00;max:;563.00;;;CHECK +operation raw measurements (ms):;83.80;93.80;92.80;92.80;93.80; +operation stats (ms/op):;avg op:;18.28;min op:;16.76;max op:;18.76;;CHECK +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_CBC_ISO9797_M1 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 02 ff ff 00 03 00 40 00 07 01 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;94.00;87.00;303.00;87.00;88.00; +baseline stats (ms):;avg:;131.80;min:;87.00;max:;303.00;;;CHECK +operation raw measurements (ms):;200.20;209.20;210.20;209.20;210.20; +operation stats (ms/op):;avg op:;41.56;min op:;40.04;max op:;42.04; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_CBC_ISO9797_M1 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 02 ff ff 00 03 00 40 00 07 02 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;94.00;86.00;88.00;88.00;88.00; +baseline stats (ms):;avg:;88.80;min:;86.00;max:;94.00;;;CHECK +operation raw measurements (ms):;372.20;381.20;382.20;381.20;382.20; +operation stats (ms/op):;avg op:;75.96;min op:;74.44;max op:;76.44; +operation info:;data length;512;total iterations;25;total invocations;25; + + +CIPHER - TYPE_DES LENGTH_DES ALG_DES_CBC_ISO9797_M1 - variable data - END + + +CIPHER - TYPE_DES LENGTH_DES ALG_DES_CBC_ISO9797_M2 - variable data - BEGIN + +method name:; TYPE_DES LENGTH_DES ALG_DES_CBC_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 03 ff ff 00 03 00 40 00 07 00 10 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;87.00;86.00;87.00;87.00;88.00; +baseline stats (ms):;avg:;87.25;min:;86.00;max:;88.00; +operation raw measurements (ms):;16.75;16.75;16.75;15.75;16.75; +operation stats (ms/op):;avg op:;3.31;min op:;3.15;max op:;3.35; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_CBC_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 03 ff ff 00 03 00 40 00 07 00 20 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;87.00;106.00;88.00;88.00;88.00; +baseline stats (ms):;avg:;91.40;min:;87.00;max:;106.00;;;CHECK +operation raw measurements (ms):;19.60;20.60;20.60;21.60;21.60; +operation stats (ms/op):;avg op:;4.16;min op:;3.92;max op:;4.32;;CHECK +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_CBC_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 03 ff ff 00 03 00 40 00 07 00 40 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;241.00;88.00;87.00;86.00;87.00; +baseline stats (ms):;avg:;117.80;min:;86.00;max:;241.00;;;CHECK +operation raw measurements (ms):;10.20;11.20;10.20;10.20;10.20; +operation stats (ms/op):;avg op:;2.08;min op:;2.04;max op:;2.24;;CHECK +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_CBC_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 03 ff ff 00 03 00 40 00 07 00 80 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;86.00;86.00;88.00;87.00;87.00; +baseline stats (ms):;avg:;86.80;min:;86.00;max:;88.00; +operation raw measurements (ms):;73.20;74.20;72.20;74.20;73.20; +operation stats (ms/op):;avg op:;14.68;min op:;14.44;max op:;14.84; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_CBC_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 03 ff ff 00 03 00 40 00 07 01 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;142.00;88.00;87.00;87.00;87.00; +baseline stats (ms):;avg:;98.20;min:;87.00;max:;142.00;;;CHECK +operation raw measurements (ms):;126.80;125.80;126.80;126.80;125.80; +operation stats (ms/op):;avg op:;25.28;min op:;25.16;max op:;25.36; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_CBC_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 03 ff ff 00 03 00 40 00 07 02 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;86.00;89.00;87.00;87.00;88.00; +baseline stats (ms):;avg:;87.40;min:;86.00;max:;89.00; +UNKONWN_ERROR-card_has_return_value_ff02 + +method name:; TYPE_DES LENGTH_DES ALG_DES_CBC_ISO9797_M2 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 03 ff ff 00 03 00 40 00 07 00 10 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;95.00;87.00;88.00;88.00;87.00; +baseline stats (ms):;avg:;89.00;min:;87.00;max:;95.00;;;CHECK +operation raw measurements (ms):;126.00;136.00;137.00;137.00;138.00; +operation stats (ms/op):;avg op:;26.96;min op:;25.20;max op:;27.60;;CHECK +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_CBC_ISO9797_M2 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 03 ff ff 00 03 00 40 00 07 00 20 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;96.00;88.00;87.00;88.00;88.00; +baseline stats (ms):;avg:;89.40;min:;87.00;max:;96.00;;;CHECK +operation raw measurements (ms):;133.60;144.60;144.60;143.60;144.60; +operation stats (ms/op):;avg op:;28.44;min op:;26.72;max op:;28.92;;CHECK +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_CBC_ISO9797_M2 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 03 ff ff 00 03 00 40 00 07 00 40 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;96.00;87.00;89.00;88.00;88.00; +baseline stats (ms):;avg:;89.60;min:;87.00;max:;96.00;;;CHECK +operation raw measurements (ms):;150.40;160.40;161.40;160.40;160.40; +operation stats (ms/op):;avg op:;31.72;min op:;30.08;max op:;32.28;;CHECK +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_CBC_ISO9797_M2 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 03 ff ff 00 03 00 40 00 07 00 80 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;94.00;86.00;158.00;88.00;88.00; +baseline stats (ms):;avg:;102.80;min:;86.00;max:;158.00;;;CHECK +operation raw measurements (ms):;169.20;179.20;178.20;178.20;179.20; +operation stats (ms/op):;avg op:;35.36;min op:;33.84;max op:;35.84; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_CBC_ISO9797_M2 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 03 ff ff 00 03 00 40 00 07 01 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;96.00;87.00;87.00;88.00;88.00; +baseline stats (ms):;avg:;89.20;min:;87.00;max:;96.00;;;CHECK +operation raw measurements (ms):;245.80;255.80;256.80;256.80;256.80; +operation stats (ms/op):;avg op:;50.88;min op:;49.16;max op:;51.36; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_CBC_ISO9797_M2 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 03 ff ff 00 03 00 40 00 07 02 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;94.00;88.00;88.00;87.00;87.00; +baseline stats (ms):;avg:;88.80;min:;87.00;max:;94.00;;;CHECK +operation raw measurements (ms):;375.20;386.20;387.20;387.20;386.20; +operation stats (ms/op):;avg op:;76.88;min op:;75.04;max op:;77.44; +operation info:;data length;512;total iterations;25;total invocations;25; + + +CIPHER - TYPE_DES LENGTH_DES ALG_DES_CBC_ISO9797_M2 - variable data - END + + +CIPHER - TYPE_DES LENGTH_DES ALG_DES_CBC_PKCS5 - variable data - BEGIN + +method name:; TYPE_DES LENGTH_DES ALG_DES_CBC_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 04 ff ff 00 03 00 40 00 07 00 10 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_CBC_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 04 ff ff 00 03 00 40 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_CBC_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 04 ff ff 00 03 00 40 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_CBC_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 04 ff ff 00 03 00 40 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_CBC_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 04 ff ff 00 03 00 40 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_CBC_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 04 ff ff 00 03 00 40 00 07 02 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_CBC_PKCS5 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 04 ff ff 00 03 00 40 00 07 00 10 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_CBC_PKCS5 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 04 ff ff 00 03 00 40 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_CBC_PKCS5 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 04 ff ff 00 03 00 40 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_CBC_PKCS5 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 04 ff ff 00 03 00 40 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_CBC_PKCS5 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 04 ff ff 00 03 00 40 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_CBC_PKCS5 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 04 ff ff 00 03 00 40 00 07 02 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_DES LENGTH_DES ALG_DES_CBC_PKCS5 - variable data - END + + +CIPHER - TYPE_DES LENGTH_DES ALG_DES_ECB_NOPAD - variable data - BEGIN + +method name:; TYPE_DES LENGTH_DES ALG_DES_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 05 ff ff 00 03 00 40 00 07 00 10 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;158.00;86.00;87.00;87.00;86.00; +baseline stats (ms):;avg:;100.80;min:;86.00;max:;158.00;;;CHECK +operation raw measurements (ms):;-0.80;-1.80;-0.80;-1.80;0.20; +operation stats (ms/op):;avg op:;-0.20;min op:;-0.36;max op:;0.04; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 05 ff ff 00 03 00 40 00 07 00 20 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;87.00;88.00;88.00;88.00;88.00; +baseline stats (ms):;avg:;88.00;min:;87.00;max:;88.00; +operation raw measurements (ms):;19.00;20.00;19.00;20.00;20.00; +operation stats (ms/op):;avg op:;3.92;min op:;3.80;max op:;4.00; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 05 ff ff 00 03 00 40 00 07 00 40 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;87.00;88.00;87.00;87.00;88.00; +baseline stats (ms):;avg:;87.40;min:;87.00;max:;88.00; +operation raw measurements (ms):;35.60;35.60;34.60;35.60;35.60; +operation stats (ms/op):;avg op:;7.08;min op:;6.92;max op:;7.12; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 05 ff ff 00 03 00 40 00 07 00 80 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;86.00;257.00;88.00;88.00;88.00; +baseline stats (ms):;avg:;121.40;min:;86.00;max:;257.00;;;CHECK +operation raw measurements (ms):;32.60;31.60;33.60;34.60;33.60; +operation stats (ms/op):;avg op:;6.64;min op:;6.32;max op:;6.92; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 05 ff ff 00 03 00 40 00 07 01 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;87.00;88.00;85.00;83.00;86.00; +baseline stats (ms):;avg:;85.80;min:;83.00;max:;88.00; +operation raw measurements (ms):;132.20;127.20;130.20;131.20;131.20; +operation stats (ms/op):;avg op:;26.08;min op:;25.44;max op:;26.44; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 05 ff ff 00 03 00 40 00 07 02 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;87.00;87.00;90.00;83.00;84.00; +baseline stats (ms):;avg:;86.20;min:;83.00;max:;90.00; +operation raw measurements (ms):;251.80;254.80;255.80;254.80;256.80; +operation stats (ms/op):;avg op:;50.96;min op:;50.36;max op:;51.36; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_ECB_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 05 ff ff 00 03 00 40 00 07 00 10 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;179.00;87.00;88.00;87.00;100.00; +baseline stats (ms):;avg:;108.20;min:;87.00;max:;179.00;;;CHECK +operation raw measurements (ms):;99.80;108.80;111.80;111.80;110.80; +operation stats (ms/op):;avg op:;21.72;min op:;19.96;max op:;22.36;;CHECK +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_ECB_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 05 ff ff 00 03 00 40 00 07 00 20 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;92.00;137.00;88.00;88.00;88.00; +baseline stats (ms):;avg:;98.60;min:;88.00;max:;137.00;;;CHECK +operation raw measurements (ms):;121.40;128.40;130.40;130.40;129.40; +operation stats (ms/op):;avg op:;25.60;min op:;24.28;max op:;26.08;;CHECK +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_ECB_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 05 ff ff 00 03 00 40 00 07 00 40 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;95.00;87.00;89.00;88.00;88.00; +baseline stats (ms):;avg:;89.40;min:;87.00;max:;95.00;;;CHECK +operation raw measurements (ms):;145.60;154.60;154.60;154.60;155.60; +operation stats (ms/op):;avg op:;30.60;min op:;29.12;max op:;31.12; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_ECB_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 05 ff ff 00 03 00 40 00 07 00 80 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;94.00;103.00;88.00;307.00;88.00; +baseline stats (ms):;avg:;136.00;min:;88.00;max:;307.00;;;CHECK +operation raw measurements (ms):;129.00;140.00;140.00;139.00;139.00; +operation stats (ms/op):;avg op:;27.48;min op:;25.80;max op:;28.00;;CHECK +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_ECB_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 05 ff ff 00 03 00 40 00 07 01 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;94.00;86.00;88.00;88.00;89.00; +baseline stats (ms):;avg:;89.00;min:;86.00;max:;94.00;;;CHECK +operation raw measurements (ms):;239.00;249.00;250.00;249.00;250.00; +operation stats (ms/op):;avg op:;49.48;min op:;47.80;max op:;50.00; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_ECB_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 05 ff ff 00 03 00 40 00 07 02 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;95.00;87.00;87.00;88.00;88.00; +baseline stats (ms):;avg:;89.00;min:;87.00;max:;95.00;;;CHECK +operation raw measurements (ms):;364.00;375.00;375.00;374.00;375.00; +operation stats (ms/op):;avg op:;74.52;min op:;72.80;max op:;75.00; +operation info:;data length;512;total iterations;25;total invocations;25; + + +CIPHER - TYPE_DES LENGTH_DES ALG_DES_ECB_NOPAD - variable data - END + + +CIPHER - TYPE_DES LENGTH_DES ALG_DES_ECB_ISO9797_M1 - variable data - BEGIN + +method name:; TYPE_DES LENGTH_DES ALG_DES_ECB_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 06 ff ff 00 03 00 40 00 07 00 10 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;86.00;87.00;88.00;88.00;87.00; +baseline stats (ms):;avg:;87.20;min:;86.00;max:;88.00; +operation raw measurements (ms):;13.80;12.80;13.80;11.80;12.80; +operation stats (ms/op):;avg op:;2.60;min op:;2.36;max op:;2.76;;CHECK +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_ECB_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 06 ff ff 00 03 00 40 00 07 00 20 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;87.00;96.00;88.00;86.00;88.00; +baseline stats (ms):;avg:;89.00;min:;86.00;max:;96.00;;;CHECK +operation raw measurements (ms):;18.00;18.00;19.00;19.00;18.00; +operation stats (ms/op):;avg op:;3.68;min op:;3.60;max op:;3.80; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_ECB_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 06 ff ff 00 03 00 40 00 07 00 40 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;255.00;87.00;87.00;87.00;87.00; +baseline stats (ms):;avg:;120.60;min:;87.00;max:;255.00;;;CHECK +operation raw measurements (ms):;2.40;1.40;2.40;3.40;3.40; +operation stats (ms/op):;avg op:;0.52;min op:;0.28;max op:;0.68;;CHECK +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_ECB_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 06 ff ff 00 03 00 40 00 07 00 80 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;87.00;87.00;87.00;87.00;87.00; +baseline stats (ms):;avg:;87.00;min:;87.00;max:;87.00; +operation raw measurements (ms):;65.00;67.00;67.00;68.00;68.00; +operation stats (ms/op):;avg op:;13.40;min op:;13.00;max op:;13.60; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_ECB_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 06 ff ff 00 03 00 40 00 07 01 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;130.00;88.00;88.00;88.00;87.00; +baseline stats (ms):;avg:;96.20;min:;87.00;max:;130.00;;;CHECK +operation raw measurements (ms):;120.80;120.80;120.80;121.80;121.80; +operation stats (ms/op):;avg op:;24.24;min op:;24.16;max op:;24.36; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_ECB_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 06 ff ff 00 03 00 40 00 07 02 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;87.00;94.00;87.00;87.00;87.00; +baseline stats (ms):;avg:;88.40;min:;87.00;max:;94.00;;;CHECK +operation raw measurements (ms):;253.60;253.60;253.60;253.60;254.60; +operation stats (ms/op):;avg op:;50.76;min op:;50.72;max op:;50.92; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_ECB_ISO9797_M1 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 06 ff ff 00 03 00 40 00 07 00 10 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;95.00;87.00;88.00;88.00;87.00; +baseline stats (ms):;avg:;89.00;min:;87.00;max:;95.00;;;CHECK +operation raw measurements (ms):;122.00;132.00;132.00;130.00;129.00; +operation stats (ms/op):;avg op:;25.80;min op:;24.40;max op:;26.40;;CHECK +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_ECB_ISO9797_M1 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 06 ff ff 00 03 00 40 00 07 00 20 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;95.00;87.00;88.00;88.00;88.00; +baseline stats (ms):;avg:;89.20;min:;87.00;max:;95.00;;;CHECK +operation raw measurements (ms):;130.80;139.80;139.80;139.80;140.80; +operation stats (ms/op):;avg op:;27.64;min op:;26.16;max op:;28.16;;CHECK +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_ECB_ISO9797_M1 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 06 ff ff 00 03 00 40 00 07 00 40 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;510.00;87.00;88.00;88.00;87.00; +baseline stats (ms):;avg:;172.00;min:;87.00;max:;510.00;;;CHECK +operation raw measurements (ms):;63.00;71.00;72.00;73.00;74.00; +operation stats (ms/op):;avg op:;14.12;min op:;12.60;max op:;14.80;;CHECK +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_ECB_ISO9797_M1 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 06 ff ff 00 03 00 40 00 07 00 80 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;94.00;87.00;87.00;88.00;88.00; +baseline stats (ms):;avg:;88.80;min:;87.00;max:;94.00;;;CHECK +operation raw measurements (ms):;177.20;187.20;187.20;186.20;189.20; +operation stats (ms/op):;avg op:;37.08;min op:;35.44;max op:;37.84; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_ECB_ISO9797_M1 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 06 ff ff 00 03 00 40 00 07 01 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;95.00;86.00;89.00;87.00;88.00; +baseline stats (ms):;avg:;89.00;min:;86.00;max:;95.00;;;CHECK +operation raw measurements (ms):;239.00;249.00;249.00;250.00;250.00; +operation stats (ms/op):;avg op:;49.48;min op:;47.80;max op:;50.00; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_ECB_ISO9797_M1 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 06 ff ff 00 03 00 40 00 07 02 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;94.00;87.00;87.00;88.00;86.00; +baseline stats (ms):;avg:;88.40;min:;86.00;max:;94.00;;;CHECK +operation raw measurements (ms):;363.60;375.60;375.60;375.60;374.60; +operation stats (ms/op):;avg op:;74.60;min op:;72.72;max op:;75.12; +operation info:;data length;512;total iterations;25;total invocations;25; + + +CIPHER - TYPE_DES LENGTH_DES ALG_DES_ECB_ISO9797_M1 - variable data - END + + +CIPHER - TYPE_DES LENGTH_DES ALG_DES_ECB_ISO9797_M2 - variable data - BEGIN + +method name:; TYPE_DES LENGTH_DES ALG_DES_ECB_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 07 ff ff 00 03 00 40 00 07 00 10 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;87.00;87.00;87.00;87.00;87.00; +baseline stats (ms):;avg:;87.00;min:;87.00;max:;87.00; +operation raw measurements (ms):;18.00;17.00;17.00;17.00;17.00; +operation stats (ms/op):;avg op:;3.44;min op:;3.40;max op:;3.60; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_ECB_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 07 ff ff 00 03 00 40 00 07 00 20 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;87.00;90.00;87.00;88.00;87.00; +baseline stats (ms):;avg:;87.80;min:;87.00;max:;90.00; +operation raw measurements (ms):;24.20;23.20;23.20;23.20;24.20; +operation stats (ms/op):;avg op:;4.72;min op:;4.64;max op:;4.84; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_ECB_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 07 ff ff 00 03 00 40 00 07 00 40 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;87.00;87.00;86.00;88.00;88.00; +baseline stats (ms):;avg:;87.20;min:;86.00;max:;88.00; +operation raw measurements (ms):;39.80;38.80;39.80;40.80;39.80; +operation stats (ms/op):;avg op:;7.96;min op:;7.76;max op:;8.16; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_ECB_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 07 ff ff 00 03 00 40 00 07 00 80 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;86.00;88.00;87.00;87.00;86.00; +baseline stats (ms):;avg:;86.80;min:;86.00;max:;88.00; +operation raw measurements (ms):;72.20;72.20;71.20;72.20;71.20; +operation stats (ms/op):;avg op:;14.36;min op:;14.24;max op:;14.44; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_ECB_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 07 ff ff 00 03 00 40 00 07 01 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;86.00;87.00;88.00;87.00;87.00; +baseline stats (ms):;avg:;87.25;min:;86.00;max:;88.00; +operation raw measurements (ms):;133.75;133.75;132.75;132.75;133.75; +operation stats (ms/op):;avg op:;26.67;min op:;26.55;max op:;26.75; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_ECB_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 07 ff ff 00 03 00 40 00 07 02 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;87.00;96.00;88.00;87.00;88.00; +baseline stats (ms):;avg:;89.20;min:;87.00;max:;96.00;;;CHECK +UNKONWN_ERROR-card_has_return_value_ff02 + +method name:; TYPE_DES LENGTH_DES ALG_DES_ECB_ISO9797_M2 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 07 ff ff 00 03 00 40 00 07 00 10 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;94.00;87.00;87.00;88.00;87.00; +baseline stats (ms):;avg:;88.60;min:;87.00;max:;94.00;;;CHECK +operation raw measurements (ms):;126.40;136.40;136.40;136.40;135.40; +operation stats (ms/op):;avg op:;26.84;min op:;25.28;max op:;27.28;;CHECK +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_ECB_ISO9797_M2 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 07 ff ff 00 03 00 40 00 07 00 20 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;518.00;86.00;87.00;88.00;88.00; +baseline stats (ms):;avg:;173.40;min:;86.00;max:;518.00;;;CHECK +operation raw measurements (ms):;50.60;58.60;59.60;59.60;60.60; +operation stats (ms/op):;avg op:;11.56;min op:;10.12;max op:;12.12;;CHECK +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_ECB_ISO9797_M2 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 07 ff ff 00 03 00 40 00 07 00 40 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;94.00;98.00;87.00;88.00;89.00; +baseline stats (ms):;avg:;91.20;min:;87.00;max:;98.00;;;CHECK +operation raw measurements (ms):;147.80;155.80;157.80;156.80;157.80; +operation stats (ms/op):;avg op:;31.04;min op:;29.56;max op:;31.56; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_ECB_ISO9797_M2 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 07 ff ff 00 03 00 40 00 07 00 80 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;95.00;85.00;87.00;88.00;89.00; +baseline stats (ms):;avg:;88.80;min:;85.00;max:;95.00;;;CHECK +operation raw measurements (ms):;181.20;191.20;190.20;191.20;192.20; +operation stats (ms/op):;avg op:;37.84;min op:;36.24;max op:;38.44; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_ECB_ISO9797_M2 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 07 ff ff 00 03 00 40 00 07 01 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;95.00;87.00;87.00;87.00;88.00; +baseline stats (ms):;avg:;88.80;min:;87.00;max:;95.00;;;CHECK +operation raw measurements (ms):;247.20;253.20;253.20;252.20;253.20; +operation stats (ms/op):;avg op:;50.36;min op:;49.44;max op:;50.64; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_ECB_ISO9797_M2 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 07 ff ff 00 03 00 40 00 07 02 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;509.00;87.00;88.00;88.00;88.00; +baseline stats (ms):;avg:;172.00;min:;87.00;max:;509.00;;;CHECK +operation raw measurements (ms):;285.00;295.00;295.00;295.00;296.00; +operation stats (ms/op):;avg op:;58.64;min op:;57.00;max op:;59.20; +operation info:;data length;512;total iterations;25;total invocations;25; + + +CIPHER - TYPE_DES LENGTH_DES ALG_DES_ECB_ISO9797_M2 - variable data - END + + +CIPHER - TYPE_DES LENGTH_DES ALG_DES_ECB_PKCS5 - variable data - BEGIN + +method name:; TYPE_DES LENGTH_DES ALG_DES_ECB_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 08 ff ff 00 03 00 40 00 07 00 10 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_ECB_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 08 ff ff 00 03 00 40 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_ECB_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 08 ff ff 00 03 00 40 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_ECB_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 08 ff ff 00 03 00 40 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_ECB_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 08 ff ff 00 03 00 40 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_ECB_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 08 ff ff 00 03 00 40 00 07 02 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_ECB_PKCS5 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 08 ff ff 00 03 00 40 00 07 00 10 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_ECB_PKCS5 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 08 ff ff 00 03 00 40 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_ECB_PKCS5 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 08 ff ff 00 03 00 40 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_ECB_PKCS5 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 08 ff ff 00 03 00 40 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_ECB_PKCS5 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 08 ff ff 00 03 00 40 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_ECB_PKCS5 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 08 ff ff 00 03 00 40 00 07 02 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_DES LENGTH_DES ALG_DES_ECB_PKCS5 - variable data - END + + +CIPHER - TYPE_DES LENGTH_DES3_2KEY ALG_DES_CBC_NOPAD - variable data - BEGIN + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 01 ff ff 00 03 00 80 00 07 00 10 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;181.00;87.00;87.00;87.00;88.00; +baseline stats (ms):;avg:;106.00;min:;87.00;max:;181.00;;;CHECK +operation raw measurements (ms):;-6.00;-6.00;-6.00;-6.00;-6.00; +operation stats (ms/op):;avg op:;-1.20;min op:;-1.20;max op:;-1.20; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 01 ff ff 00 03 00 80 00 07 00 20 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;87.00;281.00;88.00;88.00;88.00; +baseline stats (ms):;avg:;126.40;min:;87.00;max:;281.00;;;CHECK +operation raw measurements (ms):;-16.40;-18.40;-17.40;-18.40;-18.40; +operation stats (ms/op):;avg op:;-3.56;min op:;-3.68;max op:;-3.28; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 01 ff ff 00 03 00 80 00 07 00 40 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;87.00;87.00;318.00;87.00;87.00; +baseline stats (ms):;avg:;133.20;min:;87.00;max:;318.00;;;CHECK +operation raw measurements (ms):;-8.20;-8.20;-9.20;-8.20;-8.20; +operation stats (ms/op):;avg op:;-1.68;min op:;-1.84;max op:;-1.64; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 01 ff ff 00 03 00 80 00 07 00 80 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;87.00;87.00;87.00;87.00;87.00; +baseline stats (ms):;avg:;87.00;min:;87.00;max:;87.00; +operation raw measurements (ms):;70.00;70.00;70.00;71.00;70.00; +operation stats (ms/op):;avg op:;14.04;min op:;14.00;max op:;14.20; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 01 ff ff 00 03 00 80 00 07 01 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;86.00;86.00;89.00;86.00;89.00; +baseline stats (ms):;avg:;87.20;min:;86.00;max:;89.00; +operation raw measurements (ms):;135.80;136.80;136.80;135.80;135.80; +operation stats (ms/op):;avg op:;27.24;min op:;27.16;max op:;27.36; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 01 ff ff 00 03 00 80 00 07 02 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;86.00;87.00;88.00;88.00;88.00; +baseline stats (ms):;avg:;87.75;min:;86.00;max:;88.00; +operation raw measurements (ms):;267.25;268.25;268.25;267.25;267.25; +operation stats (ms/op):;avg op:;53.53;min op:;53.45;max op:;53.65; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_CBC_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 01 ff ff 00 03 00 80 00 07 00 10 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;95.00;87.00;304.00;88.00;88.00; +baseline stats (ms):;avg:;132.40;min:;87.00;max:;304.00;;;CHECK +operation raw measurements (ms):;79.60;89.60;89.60;89.60;89.60; +operation stats (ms/op):;avg op:;17.52;min op:;15.92;max op:;17.92;;CHECK +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_CBC_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 01 ff ff 00 03 00 80 00 07 00 20 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;94.00;134.00;84.00;88.00;88.00; +baseline stats (ms):;avg:;97.60;min:;84.00;max:;134.00;;;CHECK +operation raw measurements (ms):;123.40;133.40;131.40;131.40;132.40; +operation stats (ms/op):;avg op:;26.08;min op:;24.68;max op:;26.68;;CHECK +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_CBC_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 01 ff ff 00 03 00 80 00 07 00 40 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;93.00;86.00;313.00;88.00;87.00; +baseline stats (ms):;avg:;133.40;min:;86.00;max:;313.00;;;CHECK +operation raw measurements (ms):;103.60;113.60;112.60;113.60;113.60; +operation stats (ms/op):;avg op:;22.28;min op:;20.72;max op:;22.72;;CHECK +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_CBC_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 01 ff ff 00 03 00 80 00 07 00 80 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;94.00;98.00;88.00;290.00;89.00; +baseline stats (ms):;avg:;131.80;min:;88.00;max:;290.00;;;CHECK +operation raw measurements (ms):;137.20;147.20;147.20;147.20;147.20; +operation stats (ms/op):;avg op:;29.04;min op:;27.44;max op:;29.44;;CHECK +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_CBC_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 01 ff ff 00 03 00 80 00 07 01 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;91.00;83.00;84.00;85.00;86.00; +baseline stats (ms):;avg:;85.80;min:;83.00;max:;91.00;;;CHECK +operation raw measurements (ms):;249.20;260.20;259.20;259.20;259.20; +operation stats (ms/op):;avg op:;51.48;min op:;49.84;max op:;52.04; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_CBC_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 01 ff ff 00 03 00 80 00 07 02 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;93.00;86.00;87.00;88.00;88.00; +baseline stats (ms):;avg:;88.40;min:;86.00;max:;93.00;;;CHECK +operation raw measurements (ms):;378.60;386.60;387.60;388.60;388.60; +operation stats (ms/op):;avg op:;77.20;min op:;75.72;max op:;77.72; +operation info:;data length;512;total iterations;25;total invocations;25; + + +CIPHER - TYPE_DES LENGTH_DES3_2KEY ALG_DES_CBC_NOPAD - variable data - END + + +CIPHER - TYPE_DES LENGTH_DES3_2KEY ALG_DES_CBC_ISO9797_M1 - variable data - BEGIN + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_CBC_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 02 ff ff 00 03 00 80 00 07 00 10 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;87.00;87.00;315.00;87.00;87.00; +baseline stats (ms):;avg:;132.60;min:;87.00;max:;315.00;;;CHECK +operation raw measurements (ms):;-32.60;-32.60;-33.60;-33.60;-32.60; +operation stats (ms/op):;avg op:;-6.60;min op:;-6.72;max op:;-6.52; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_CBC_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 02 ff ff 00 03 00 80 00 07 00 20 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;84.00;289.00;85.00;87.00;88.00; +baseline stats (ms):;avg:;126.60;min:;84.00;max:;289.00;;;CHECK +operation raw measurements (ms):;-18.60;-18.60;-19.60;-18.60;-17.60; +operation stats (ms/op):;avg op:;-3.72;min op:;-3.92;max op:;-3.52; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_CBC_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 02 ff ff 00 03 00 80 00 07 00 40 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;273.00;87.00;87.00;88.00;87.00; +baseline stats (ms):;avg:;124.40;min:;87.00;max:;273.00;;;CHECK +operation raw measurements (ms):;0.60;-0.40;0.60;-0.40;0.60; +operation stats (ms/op):;avg op:;0.04;min op:;-0.08;max op:;0.12;;CHECK +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_CBC_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 02 ff ff 00 03 00 80 00 07 00 80 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;85.00;94.00;87.00;87.00;88.00; +baseline stats (ms):;avg:;88.20;min:;85.00;max:;94.00;;;CHECK +operation raw measurements (ms):;69.80;69.80;69.80;67.80;69.80; +operation stats (ms/op):;avg op:;13.88;min op:;13.56;max op:;13.96; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_CBC_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 02 ff ff 00 03 00 80 00 07 01 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;160.00;88.00;88.00;87.00;87.00; +baseline stats (ms):;avg:;102.00;min:;87.00;max:;160.00;;;CHECK +operation raw measurements (ms):;122.00;121.00;122.00;121.00;122.00; +operation stats (ms/op):;avg op:;24.32;min op:;24.20;max op:;24.40; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_CBC_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 02 ff ff 00 03 00 80 00 07 02 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;86.00;136.00;88.00;86.00;87.00; +baseline stats (ms):;avg:;96.60;min:;86.00;max:;136.00;;;CHECK +operation raw measurements (ms):;257.40;259.40;258.40;258.40;258.40; +operation stats (ms/op):;avg op:;51.68;min op:;51.48;max op:;51.88; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_CBC_ISO9797_M1 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 02 ff ff 00 03 00 80 00 07 00 10 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;94.00;86.00;88.00;88.00;88.00; +baseline stats (ms):;avg:;88.80;min:;86.00;max:;94.00;;;CHECK +operation raw measurements (ms):;123.20;134.20;133.20;133.20;133.20; +operation stats (ms/op):;avg op:;26.28;min op:;24.64;max op:;26.84;;CHECK +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_CBC_ISO9797_M1 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 02 ff ff 00 03 00 80 00 07 00 20 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;94.00;86.00;88.00;88.00;87.00; +baseline stats (ms):;avg:;88.60;min:;86.00;max:;94.00;;;CHECK +operation raw measurements (ms):;132.40;140.40;141.40;140.40;141.40; +operation stats (ms/op):;avg op:;27.84;min op:;26.48;max op:;28.28; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_CBC_ISO9797_M1 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 02 ff ff 00 03 00 80 00 07 00 40 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;95.00;87.00;308.00;86.00;88.00; +baseline stats (ms):;avg:;132.80;min:;86.00;max:;308.00;;;CHECK +operation raw measurements (ms):;104.20;114.20;113.20;114.20;113.20; +operation stats (ms/op):;avg op:;22.36;min op:;20.84;max op:;22.84;;CHECK +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_CBC_ISO9797_M1 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 02 ff ff 00 03 00 80 00 07 00 80 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;95.00;97.00;88.00;289.00;87.00; +baseline stats (ms):;avg:;131.20;min:;87.00;max:;289.00;;;CHECK +operation raw measurements (ms):;137.80;148.80;148.80;148.80;147.80; +operation stats (ms/op):;avg op:;29.28;min op:;27.56;max op:;29.76;;CHECK +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_CBC_ISO9797_M1 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 02 ff ff 00 03 00 80 00 07 01 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;95.00;87.00;101.00;88.00;306.00; +baseline stats (ms):;avg:;135.40;min:;87.00;max:;306.00;;;CHECK +operation raw measurements (ms):;199.60;211.60;209.60;209.60;208.60; +operation stats (ms/op):;avg op:;41.56;min op:;39.92;max op:;42.32; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_CBC_ISO9797_M1 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 02 ff ff 00 03 00 80 00 07 02 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;95.00;88.00;88.00;86.00;87.00; +baseline stats (ms):;avg:;88.80;min:;86.00;max:;95.00;;;CHECK +operation raw measurements (ms):;378.20;388.20;387.20;388.20;389.20; +operation stats (ms/op):;avg op:;77.24;min op:;75.64;max op:;77.84; +operation info:;data length;512;total iterations;25;total invocations;25; + + +CIPHER - TYPE_DES LENGTH_DES3_2KEY ALG_DES_CBC_ISO9797_M1 - variable data - END + + +CIPHER - TYPE_DES LENGTH_DES3_2KEY ALG_DES_CBC_ISO9797_M2 - variable data - BEGIN + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_CBC_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 03 ff ff 00 03 00 80 00 07 00 10 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;85.00;88.00;319.00;87.00;87.00; +baseline stats (ms):;avg:;133.20;min:;85.00;max:;319.00;;;CHECK +operation raw measurements (ms):;-28.20;-28.20;-28.20;-30.20;-29.20; +operation stats (ms/op):;avg op:;-5.76;min op:;-6.04;max op:;-5.64; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_CBC_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 03 ff ff 00 03 00 80 00 07 00 20 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;86.00;277.00;87.00;87.00;87.00; +baseline stats (ms):;avg:;124.80;min:;86.00;max:;277.00;;;CHECK +operation raw measurements (ms):;-11.80;-12.80;-12.80;-12.80;-12.80; +operation stats (ms/op):;avg op:;-2.52;min op:;-2.56;max op:;-2.36; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_CBC_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 03 ff ff 00 03 00 80 00 07 00 40 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;86.00;88.00;323.00;87.00;88.00; +baseline stats (ms):;avg:;134.40;min:;86.00;max:;323.00;;;CHECK +operation raw measurements (ms):;-5.40;-5.40;-5.40;-6.40;-5.40; +operation stats (ms/op):;avg op:;-1.12;min op:;-1.28;max op:;-1.08; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_CBC_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 03 ff ff 00 03 00 80 00 07 00 80 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;85.00;270.00;86.00;88.00;87.00; +baseline stats (ms):;avg:;123.20;min:;85.00;max:;270.00;;;CHECK +operation raw measurements (ms):;39.80;38.80;38.80;37.80;37.80; +operation stats (ms/op):;avg op:;7.72;min op:;7.56;max op:;7.96; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_CBC_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 03 ff ff 00 03 00 80 00 07 01 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;129.00;88.00;88.00;88.00;88.00; +baseline stats (ms):;avg:;96.20;min:;88.00;max:;129.00;;;CHECK +operation raw measurements (ms):;131.80;131.80;130.80;130.80;131.80; +operation stats (ms/op):;avg op:;26.28;min op:;26.16;max op:;26.36; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_CBC_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 03 ff ff 00 03 00 80 00 07 02 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;87.00;100.00;86.00;307.00;88.00; +baseline stats (ms):;avg:;133.60;min:;86.00;max:;307.00;;;CHECK +UNKONWN_ERROR-card_has_return_value_ff02 + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_CBC_ISO9797_M2 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 03 ff ff 00 03 00 80 00 07 00 10 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;95.00;87.00;88.00;87.00;87.00; +baseline stats (ms):;avg:;88.80;min:;87.00;max:;95.00;;;CHECK +operation raw measurements (ms):;126.20;138.20;137.20;137.20;137.20; +operation stats (ms/op):;avg op:;27.04;min op:;25.24;max op:;27.64;;CHECK +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_CBC_ISO9797_M2 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 03 ff ff 00 03 00 80 00 07 00 20 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;95.00;86.00;90.00;89.00;89.00; +baseline stats (ms):;avg:;89.80;min:;86.00;max:;95.00;;;CHECK +operation raw measurements (ms):;133.20;144.20;145.20;144.20;145.20; +operation stats (ms/op):;avg op:;28.48;min op:;26.64;max op:;29.04;;CHECK +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_CBC_ISO9797_M2 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 03 ff ff 00 03 00 80 00 07 00 40 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;95.00;139.00;88.00;88.00;88.00; +baseline stats (ms):;avg:;99.60;min:;88.00;max:;139.00;;;CHECK +operation raw measurements (ms):;141.40;151.40;151.40;151.40;151.40; +operation stats (ms/op):;avg op:;29.88;min op:;28.28;max op:;30.28;;CHECK +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_CBC_ISO9797_M2 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 03 ff ff 00 03 00 80 00 07 00 80 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;96.00;86.00;88.00;88.00;88.00; +baseline stats (ms):;avg:;89.20;min:;86.00;max:;96.00;;;CHECK +operation raw measurements (ms):;183.80;193.80;194.80;193.80;194.80; +operation stats (ms/op):;avg op:;38.44;min op:;36.76;max op:;38.96; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_CBC_ISO9797_M2 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 03 ff ff 00 03 00 80 00 07 01 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;95.00;87.00;88.00;84.00;88.00; +baseline stats (ms):;avg:;88.40;min:;84.00;max:;95.00;;;CHECK +operation raw measurements (ms):;250.60;260.60;260.60;260.60;260.60; +operation stats (ms/op):;avg op:;51.72;min op:;50.12;max op:;52.12; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_CBC_ISO9797_M2 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 03 ff ff 00 03 00 80 00 07 02 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;493.00;87.00;87.00;88.00;89.00; +baseline stats (ms):;avg:;168.80;min:;87.00;max:;493.00;;;CHECK +operation raw measurements (ms):;302.20;312.20;311.20;313.20;316.20; +operation stats (ms/op):;avg op:;62.20;min op:;60.44;max op:;63.24; +operation info:;data length;512;total iterations;25;total invocations;25; + + +CIPHER - TYPE_DES LENGTH_DES3_2KEY ALG_DES_CBC_ISO9797_M2 - variable data - END + + +CIPHER - TYPE_DES LENGTH_DES3_2KEY ALG_DES_CBC_PKCS5 - variable data - BEGIN + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_CBC_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 04 ff ff 00 03 00 80 00 07 00 10 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_CBC_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 04 ff ff 00 03 00 80 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_CBC_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 04 ff ff 00 03 00 80 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_CBC_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 04 ff ff 00 03 00 80 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_CBC_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 04 ff ff 00 03 00 80 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_CBC_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 04 ff ff 00 03 00 80 00 07 02 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_CBC_PKCS5 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 04 ff ff 00 03 00 80 00 07 00 10 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_CBC_PKCS5 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 04 ff ff 00 03 00 80 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_CBC_PKCS5 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 04 ff ff 00 03 00 80 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_CBC_PKCS5 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 04 ff ff 00 03 00 80 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_CBC_PKCS5 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 04 ff ff 00 03 00 80 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_CBC_PKCS5 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 04 ff ff 00 03 00 80 00 07 02 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_DES LENGTH_DES3_2KEY ALG_DES_CBC_PKCS5 - variable data - END + + +CIPHER - TYPE_DES LENGTH_DES3_2KEY ALG_DES_ECB_NOPAD - variable data - BEGIN + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 05 ff ff 00 03 00 80 00 07 00 10 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;85.00;87.00;88.00;88.00;88.00; +baseline stats (ms):;avg:;87.75;min:;85.00;max:;88.00; +operation raw measurements (ms):;13.25;12.25;12.25;10.25;12.25; +operation stats (ms/op):;avg op:;2.41;min op:;2.05;max op:;2.65;;CHECK +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 05 ff ff 00 03 00 80 00 07 00 20 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;87.00;88.00;87.00;88.00;88.00; +baseline stats (ms):;avg:;87.60;min:;87.00;max:;88.00; +operation raw measurements (ms):;19.40;20.40;20.40;20.40;20.40; +operation stats (ms/op):;avg op:;4.04;min op:;3.88;max op:;4.08; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 05 ff ff 00 03 00 80 00 07 00 40 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;87.00;291.00;87.00;87.00;88.00; +baseline stats (ms):;avg:;128.00;min:;87.00;max:;291.00;;;CHECK +operation raw measurements (ms):;-4.00;-4.00;-5.00;-5.00;-5.00; +operation stats (ms/op):;avg op:;-0.92;min op:;-1.00;max op:;-0.80; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 05 ff ff 00 03 00 80 00 07 00 80 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;87.00;87.00;118.00;87.00;87.00; +baseline stats (ms):;avg:;93.20;min:;87.00;max:;118.00;;;CHECK +operation raw measurements (ms):;62.80;62.80;63.80;62.80;62.80; +operation stats (ms/op):;avg op:;12.60;min op:;12.56;max op:;12.76; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 05 ff ff 00 03 00 80 00 07 01 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;87.00;88.00;87.00;88.00;86.00; +baseline stats (ms):;avg:;87.20;min:;86.00;max:;88.00; +operation raw measurements (ms):;133.80;132.80;131.80;129.80;131.80; +operation stats (ms/op):;avg op:;26.40;min op:;25.96;max op:;26.76; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 05 ff ff 00 03 00 80 00 07 02 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;87.00;88.00;226.00;87.00;86.00; +baseline stats (ms):;avg:;114.80;min:;86.00;max:;226.00;;;CHECK +operation raw measurements (ms):;233.20;233.20;234.20;233.20;233.20; +operation stats (ms/op):;avg op:;46.68;min op:;46.64;max op:;46.84; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_ECB_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 05 ff ff 00 03 00 80 00 07 00 10 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;95.00;87.00;88.00;88.00;88.00; +baseline stats (ms):;avg:;89.20;min:;87.00;max:;95.00;;;CHECK +operation raw measurements (ms):;122.80;131.80;132.80;132.80;131.80; +operation stats (ms/op):;avg op:;26.08;min op:;24.56;max op:;26.56;;CHECK +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_ECB_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 05 ff ff 00 03 00 80 00 07 00 20 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;95.00;87.00;88.00;88.00;87.00; +baseline stats (ms):;avg:;89.00;min:;87.00;max:;95.00;;;CHECK +operation raw measurements (ms):;132.00;141.00;142.00;140.00;140.00; +operation stats (ms/op):;avg op:;27.80;min op:;26.40;max op:;28.40;;CHECK +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_ECB_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 05 ff ff 00 03 00 80 00 07 00 40 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;95.00;133.00;89.00;88.00;88.00; +baseline stats (ms):;avg:;98.60;min:;88.00;max:;133.00;;;CHECK +operation raw measurements (ms):;137.40;147.40;148.40;147.40;147.40; +operation stats (ms/op):;avg op:;29.12;min op:;27.48;max op:;29.68;;CHECK +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_ECB_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 05 ff ff 00 03 00 80 00 07 00 80 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;94.00;87.00;166.00;89.00;88.00; +baseline stats (ms):;avg:;104.80;min:;87.00;max:;166.00;;;CHECK +operation raw measurements (ms):;162.20;173.20;173.20;174.20;172.20; +operation stats (ms/op):;avg op:;34.20;min op:;32.44;max op:;34.84;;CHECK +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_ECB_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 05 ff ff 00 03 00 80 00 07 01 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;94.00;88.00;88.00;88.00;88.00; +baseline stats (ms):;avg:;89.20;min:;88.00;max:;94.00;;;CHECK +operation raw measurements (ms):;241.80;252.80;253.80;251.80;252.80; +operation stats (ms/op):;avg op:;50.12;min op:;48.36;max op:;50.76; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_ECB_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 05 ff ff 00 03 00 80 00 07 02 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;95.00;87.00;235.00;88.00;88.00; +baseline stats (ms):;avg:;118.60;min:;87.00;max:;235.00;;;CHECK +operation raw measurements (ms):;341.40;351.40;351.40;351.40;350.40; +operation stats (ms/op):;avg op:;69.84;min op:;68.28;max op:;70.28; +operation info:;data length;512;total iterations;25;total invocations;25; + + +CIPHER - TYPE_DES LENGTH_DES3_2KEY ALG_DES_ECB_NOPAD - variable data - END + + +CIPHER - TYPE_DES LENGTH_DES3_2KEY ALG_DES_ECB_ISO9797_M1 - variable data - BEGIN + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_ECB_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 06 ff ff 00 03 00 80 00 07 00 10 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;86.00;87.00;87.00;88.00;87.00; +baseline stats (ms):;avg:;87.25;min:;86.00;max:;88.00; +operation raw measurements (ms):;11.75;12.75;13.75;12.75;12.75; +operation stats (ms/op):;avg op:;2.55;min op:;2.35;max op:;2.75;;CHECK +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_ECB_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 06 ff ff 00 03 00 80 00 07 00 20 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;86.00;88.00;313.00;88.00;88.00; +baseline stats (ms):;avg:;132.60;min:;86.00;max:;313.00;;;CHECK +operation raw measurements (ms):;-24.60;-24.60;-23.60;-23.60;-25.60; +operation stats (ms/op):;avg op:;-4.88;min op:;-5.12;max op:;-4.72; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_ECB_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 06 ff ff 00 03 00 80 00 07 00 40 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;87.00;300.00;85.00;84.00;84.00; +baseline stats (ms):;avg:;128.00;min:;84.00;max:;300.00;;;CHECK +operation raw measurements (ms):;-8.00;-7.00;-6.00;-4.00;-4.00; +operation stats (ms/op):;avg op:;-1.16;min op:;-1.60;max op:;-0.80; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_ECB_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 06 ff ff 00 03 00 80 00 07 00 80 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;206.00;86.00;85.00;87.00;87.00; +baseline stats (ms):;avg:;110.20;min:;85.00;max:;206.00;;;CHECK +operation raw measurements (ms):;45.80;45.80;45.80;45.80;45.80; +operation stats (ms/op):;avg op:;9.16;min op:;9.16;max op:;9.16; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_ECB_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 06 ff ff 00 03 00 80 00 07 01 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;86.00;88.00;88.00;88.00;85.00; +baseline stats (ms):;avg:;87.50;min:;85.00;max:;88.00; +operation raw measurements (ms):;131.50;131.50;132.50;132.50;132.50; +operation stats (ms/op):;avg op:;26.42;min op:;26.30;max op:;26.50; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_ECB_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 06 ff ff 00 03 00 80 00 07 02 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;87.00;87.00;227.00;87.00;87.00; +baseline stats (ms):;avg:;115.00;min:;87.00;max:;227.00;;;CHECK +operation raw measurements (ms):;234.00;233.00;233.00;232.00;232.00; +operation stats (ms/op):;avg op:;46.56;min op:;46.40;max op:;46.80; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_ECB_ISO9797_M1 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 06 ff ff 00 03 00 80 00 07 00 10 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;95.00;88.00;88.00;88.00;88.00; +baseline stats (ms):;avg:;89.40;min:;88.00;max:;95.00;;;CHECK +operation raw measurements (ms):;122.60;132.60;132.60;132.60;132.60; +operation stats (ms/op):;avg op:;26.12;min op:;24.52;max op:;26.52;;CHECK +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_ECB_ISO9797_M1 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 06 ff ff 00 03 00 80 00 07 00 20 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;291.00;87.00;88.00;87.00;88.00; +baseline stats (ms):;avg:;128.20;min:;87.00;max:;291.00;;;CHECK +operation raw measurements (ms):;91.80;101.80;99.80;99.80;101.80; +operation stats (ms/op):;avg op:;19.80;min op:;18.36;max op:;20.36;;CHECK +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_ECB_ISO9797_M1 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 06 ff ff 00 03 00 80 00 07 00 40 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;95.00;88.00;89.00;85.00;87.00; +baseline stats (ms):;avg:;88.80;min:;85.00;max:;95.00;;;CHECK +operation raw measurements (ms):;146.20;157.20;157.20;157.20;157.20; +operation stats (ms/op):;avg op:;31.00;min op:;29.24;max op:;31.44;;CHECK +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_ECB_ISO9797_M1 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 06 ff ff 00 03 00 80 00 07 00 80 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;95.00;87.00;88.00;87.00;87.00; +baseline stats (ms):;avg:;88.80;min:;87.00;max:;95.00;;;CHECK +operation raw measurements (ms):;179.20;190.20;189.20;189.20;188.20; +operation stats (ms/op):;avg op:;37.44;min op:;35.84;max op:;38.04; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_ECB_ISO9797_M1 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 06 ff ff 00 03 00 80 00 07 01 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;94.00;87.00;89.00;88.00;87.00; +baseline stats (ms):;avg:;89.00;min:;87.00;max:;94.00;;;CHECK +operation raw measurements (ms):;242.00;253.00;252.00;253.00;252.00; +operation stats (ms/op):;avg op:;50.08;min op:;48.40;max op:;50.60; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_ECB_ISO9797_M1 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 06 ff ff 00 03 00 80 00 07 02 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;95.00;87.00;88.00;88.00;88.00; +baseline stats (ms):;avg:;89.20;min:;87.00;max:;95.00;;;CHECK +operation raw measurements (ms):;369.80;379.80;380.80;379.80;380.80; +operation stats (ms/op):;avg op:;75.64;min op:;73.96;max op:;76.16; +operation info:;data length;512;total iterations;25;total invocations;25; + + +CIPHER - TYPE_DES LENGTH_DES3_2KEY ALG_DES_ECB_ISO9797_M1 - variable data - END + + +CIPHER - TYPE_DES LENGTH_DES3_2KEY ALG_DES_ECB_ISO9797_M2 - variable data - BEGIN + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_ECB_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 07 ff ff 00 03 00 80 00 07 00 10 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;86.00;87.00;87.00;87.00;87.00; +baseline stats (ms):;avg:;87.00;min:;86.00;max:;87.00; +operation raw measurements (ms):;17.00;17.00;16.00;17.00;16.00; +operation stats (ms/op):;avg op:;3.32;min op:;3.20;max op:;3.40; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_ECB_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 07 ff ff 00 03 00 80 00 07 00 20 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;87.00;88.00;315.00;88.00;87.00; +baseline stats (ms):;avg:;133.00;min:;87.00;max:;315.00;;;CHECK +operation raw measurements (ms):;-22.00;-21.00;-21.00;-20.00;-22.00; +operation stats (ms/op):;avg op:;-4.24;min op:;-4.40;max op:;-4.00; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_ECB_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 07 ff ff 00 03 00 80 00 07 00 40 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;85.00;90.00;88.00;87.00;87.00; +baseline stats (ms):;avg:;87.40;min:;85.00;max:;90.00; +operation raw measurements (ms):;41.60;41.60;40.60;39.60;40.60; +operation stats (ms/op):;avg op:;8.16;min op:;7.92;max op:;8.32; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_ECB_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 07 ff ff 00 03 00 80 00 07 00 80 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;86.00;86.00;89.00;87.00;87.00; +baseline stats (ms):;avg:;87.00;min:;86.00;max:;89.00; +operation raw measurements (ms):;72.00;72.00;73.00;73.00;72.00; +operation stats (ms/op):;avg op:;14.48;min op:;14.40;max op:;14.60; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_ECB_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 07 ff ff 00 03 00 80 00 07 01 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;87.00;224.00;87.00;88.00;86.00; +baseline stats (ms):;avg:;114.40;min:;86.00;max:;224.00;;;CHECK +operation raw measurements (ms):;109.60;109.60;108.60;109.60;108.60; +operation stats (ms/op):;avg op:;21.84;min op:;21.72;max op:;21.92; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_ECB_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 07 ff ff 00 03 00 80 00 07 02 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;510.00;88.00;88.00;87.00;88.00; +baseline stats (ms):;avg:;172.20;min:;87.00;max:;510.00;;;CHECK +UNKONWN_ERROR-card_has_return_value_ff02 + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_ECB_ISO9797_M2 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 07 ff ff 00 03 00 80 00 07 00 10 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;94.00;88.00;87.00;89.00;88.00; +baseline stats (ms):;avg:;89.20;min:;87.00;max:;94.00;;;CHECK +operation raw measurements (ms):;126.80;136.80;136.80;135.80;136.80; +operation stats (ms/op):;avg op:;26.92;min op:;25.36;max op:;27.36;;CHECK +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_ECB_ISO9797_M2 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 07 ff ff 00 03 00 80 00 07 00 20 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;95.00;145.00;88.00;88.00;87.00; +baseline stats (ms):;avg:;100.60;min:;87.00;max:;145.00;;;CHECK +operation raw measurements (ms):;122.40;132.40;133.40;132.40;133.40; +operation stats (ms/op):;avg op:;26.16;min op:;24.48;max op:;26.68;;CHECK +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_ECB_ISO9797_M2 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 07 ff ff 00 03 00 80 00 07 00 40 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;95.00;87.00;313.00;89.00;87.00; +baseline stats (ms):;avg:;134.20;min:;87.00;max:;313.00;;;CHECK +operation raw measurements (ms):;105.80;114.80;115.80;115.80;115.80; +operation stats (ms/op):;avg op:;22.72;min op:;21.16;max op:;23.16;;CHECK +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_ECB_ISO9797_M2 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 07 ff ff 00 03 00 80 00 07 00 80 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;95.00;88.00;87.00;89.00;88.00; +baseline stats (ms):;avg:;89.40;min:;87.00;max:;95.00;;;CHECK +operation raw measurements (ms):;182.60;192.60;191.60;192.60;193.60; +operation stats (ms/op):;avg op:;38.12;min op:;36.52;max op:;38.72; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_ECB_ISO9797_M2 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 07 ff ff 00 03 00 80 00 07 01 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;95.00;87.00;88.00;87.00;88.00; +baseline stats (ms):;avg:;89.00;min:;87.00;max:;95.00;;;CHECK +operation raw measurements (ms):;248.00;256.00;258.00;256.00;256.00; +operation stats (ms/op):;avg op:;50.96;min op:;49.60;max op:;51.60; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_ECB_ISO9797_M2 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 07 ff ff 00 03 00 80 00 07 02 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;96.00;87.00;88.00;88.00;89.00; +baseline stats (ms):;avg:;89.60;min:;87.00;max:;96.00;;;CHECK +operation raw measurements (ms):;374.40;384.40;383.40;383.40;383.40; +operation stats (ms/op):;avg op:;76.36;min op:;74.88;max op:;76.88; +operation info:;data length;512;total iterations;25;total invocations;25; + + +CIPHER - TYPE_DES LENGTH_DES3_2KEY ALG_DES_ECB_ISO9797_M2 - variable data - END + + +CIPHER - TYPE_DES LENGTH_DES3_2KEY ALG_DES_ECB_PKCS5 - variable data - BEGIN + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_ECB_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 08 ff ff 00 03 00 80 00 07 00 10 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_ECB_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 08 ff ff 00 03 00 80 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_ECB_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 08 ff ff 00 03 00 80 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_ECB_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 08 ff ff 00 03 00 80 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_ECB_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 08 ff ff 00 03 00 80 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_ECB_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 08 ff ff 00 03 00 80 00 07 02 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_ECB_PKCS5 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 08 ff ff 00 03 00 80 00 07 00 10 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_ECB_PKCS5 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 08 ff ff 00 03 00 80 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_ECB_PKCS5 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 08 ff ff 00 03 00 80 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_ECB_PKCS5 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 08 ff ff 00 03 00 80 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_ECB_PKCS5 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 08 ff ff 00 03 00 80 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_ECB_PKCS5 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 08 ff ff 00 03 00 80 00 07 02 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_DES LENGTH_DES3_2KEY ALG_DES_ECB_PKCS5 - variable data - END + + +CIPHER - TYPE_DES LENGTH_DES3_3KEY ALG_DES_CBC_NOPAD - variable data - BEGIN + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 01 ff ff 00 03 00 c0 00 07 00 10 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;86.00;87.00;87.00;87.00;88.00; +baseline stats (ms):;avg:;87.25;min:;86.00;max:;88.00; +operation raw measurements (ms):;28.75;27.75;27.75;28.75;28.75; +operation stats (ms/op):;avg op:;5.67;min op:;5.55;max op:;5.75; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 01 ff ff 00 03 00 c0 00 07 00 20 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;227.00;87.00;87.00;88.00;87.00; +baseline stats (ms):;avg:;115.20;min:;87.00;max:;227.00;;;CHECK +operation raw measurements (ms):;21.80;21.80;22.80;22.80;21.80; +operation stats (ms/op):;avg op:;4.44;min op:;4.36;max op:;4.56; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 01 ff ff 00 03 00 c0 00 07 00 40 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;86.00;87.00;88.00;87.00;87.00; +baseline stats (ms):;avg:;87.25;min:;86.00;max:;88.00; +operation raw measurements (ms):;93.75;93.75;93.75;92.75;93.75; +operation stats (ms/op):;avg op:;18.71;min op:;18.55;max op:;18.75; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 01 ff ff 00 03 00 c0 00 07 00 80 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;87.00;83.00;84.00;84.00;87.00; +baseline stats (ms):;avg:;85.00;min:;83.00;max:;87.00; +operation raw measurements (ms):;184.00;184.00;184.00;182.00;181.00; +operation stats (ms/op):;avg op:;36.60;min op:;36.20;max op:;36.80; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 01 ff ff 00 03 00 c0 00 07 01 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;85.00;88.00;87.00;87.00;88.00; +baseline stats (ms):;avg:;87.50;min:;85.00;max:;88.00; +operation raw measurements (ms):;358.50;358.50;358.50;358.50;359.50; +operation stats (ms/op):;avg op:;71.74;min op:;71.70;max op:;71.90; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 01 ff ff 00 03 00 c0 00 07 02 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;510.00;87.00;87.00;87.00;86.00; +baseline stats (ms):;avg:;171.40;min:;86.00;max:;510.00;;;CHECK +operation raw measurements (ms):;627.60;628.60;627.60;625.60;627.60; +operation stats (ms/op):;avg op:;125.48;min op:;125.12;max op:;125.72; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_CBC_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 01 ff ff 00 03 00 c0 00 07 00 10 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;92.00;87.00;86.00;89.00;86.00; +baseline stats (ms):;avg:;88.00;min:;86.00;max:;92.00; +operation raw measurements (ms):;137.00;144.00;142.00;142.00;142.00; +operation stats (ms/op):;avg op:;28.28;min op:;27.40;max op:;28.80; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_CBC_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 01 ff ff 00 03 00 c0 00 07 00 20 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;496.00;86.00;87.00;88.00;87.00; +baseline stats (ms):;avg:;168.80;min:;86.00;max:;496.00;;;CHECK +operation raw measurements (ms):;79.20;83.20;84.20;83.20;83.20; +operation stats (ms/op):;avg op:;16.52;min op:;15.84;max op:;16.84; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_CBC_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 01 ff ff 00 03 00 c0 00 07 00 40 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;92.00;89.00;88.00;88.00;88.00; +baseline stats (ms):;avg:;89.00;min:;88.00;max:;92.00; +operation raw measurements (ms):;203.00;207.00;207.00;207.00;208.00; +operation stats (ms/op):;avg op:;41.28;min op:;40.60;max op:;41.60; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_CBC_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 01 ff ff 00 03 00 c0 00 07 00 80 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;93.00;87.00;91.00;88.00;89.00; +baseline stats (ms):;avg:;89.60;min:;87.00;max:;93.00; +operation raw measurements (ms):;289.40;294.40;293.40;296.40;295.40; +operation stats (ms/op):;avg op:;58.76;min op:;57.88;max op:;59.28; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_CBC_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 01 ff ff 00 03 00 c0 00 07 01 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;93.00;156.00;89.00;87.00;88.00; +baseline stats (ms):;avg:;102.60;min:;87.00;max:;156.00;;;CHECK +operation raw measurements (ms):;453.40;457.40;458.40;458.40;459.40; +operation stats (ms/op):;avg op:;91.48;min op:;90.68;max op:;91.88; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_CBC_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 01 ff ff 00 03 00 c0 00 07 02 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;152.00;86.00;88.00;87.00;87.00; +baseline stats (ms):;avg:;100.00;min:;86.00;max:;152.00;;;CHECK +operation raw measurements (ms):;809.00;814.00;814.00;814.00;814.00; +operation stats (ms/op):;avg op:;162.60;min op:;161.80;max op:;162.80; +operation info:;data length;512;total iterations;25;total invocations;25; + + +CIPHER - TYPE_DES LENGTH_DES3_3KEY ALG_DES_CBC_NOPAD - variable data - END + + +CIPHER - TYPE_DES LENGTH_DES3_3KEY ALG_DES_CBC_ISO9797_M1 - variable data - BEGIN + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_CBC_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 02 ff ff 00 03 00 c0 00 07 00 10 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;86.00;87.00;88.00;87.00;87.00; +baseline stats (ms):;avg:;87.25;min:;86.00;max:;88.00; +operation raw measurements (ms):;27.75;28.75;27.75;27.75;28.75; +operation stats (ms/op):;avg op:;5.63;min op:;5.55;max op:;5.75; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_CBC_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 02 ff ff 00 03 00 c0 00 07 00 20 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;85.00;87.00;87.00;87.00;87.00; +baseline stats (ms):;avg:;87.00;min:;85.00;max:;87.00; +operation raw measurements (ms):;51.00;51.00;51.00;50.00;51.00; +operation stats (ms/op):;avg op:;10.16;min op:;10.00;max op:;10.20; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_CBC_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 02 ff ff 00 03 00 c0 00 07 00 40 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;87.00;87.00;87.00;88.00;87.00; +baseline stats (ms):;avg:;87.20;min:;87.00;max:;88.00; +operation raw measurements (ms):;93.80;93.80;94.80;89.80;90.80; +operation stats (ms/op):;avg op:;18.52;min op:;17.96;max op:;18.96; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_CBC_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 02 ff ff 00 03 00 c0 00 07 00 80 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;110.00;88.00;87.00;88.00;88.00; +baseline stats (ms):;avg:;92.20;min:;87.00;max:;110.00;;;CHECK +operation raw measurements (ms):;177.80;176.80;176.80;176.80;176.80; +operation stats (ms/op):;avg op:;35.40;min op:;35.36;max op:;35.56; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_CBC_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 02 ff ff 00 03 00 c0 00 07 01 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;86.00;439.00;87.00;88.00;87.00; +baseline stats (ms):;avg:;157.40;min:;86.00;max:;439.00;;;CHECK +operation raw measurements (ms):;287.60;286.60;287.60;288.60;288.60; +operation stats (ms/op):;avg op:;57.56;min op:;57.32;max op:;57.72; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_CBC_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 02 ff ff 00 03 00 c0 00 07 02 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;86.00;88.00;88.00;87.00;87.00; +baseline stats (ms):;avg:;87.20;min:;86.00;max:;88.00; +operation raw measurements (ms):;711.80;712.80;712.80;712.80;713.80; +operation stats (ms/op):;avg op:;142.56;min op:;142.36;max op:;142.76; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_CBC_ISO9797_M1 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 02 ff ff 00 03 00 c0 00 07 00 10 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;93.00;90.00;88.00;85.00;84.00; +baseline stats (ms):;avg:;88.00;min:;84.00;max:;93.00;;;CHECK +operation raw measurements (ms):;134.00;139.00;141.00;143.00;142.00; +operation stats (ms/op):;avg op:;27.96;min op:;26.80;max op:;28.60; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_CBC_ISO9797_M1 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 02 ff ff 00 03 00 c0 00 07 00 20 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;92.00;87.00;89.00;85.00;88.00; +baseline stats (ms):;avg:;88.20;min:;85.00;max:;92.00; +operation raw measurements (ms):;158.80;164.80;162.80;163.80;164.80; +operation stats (ms/op):;avg op:;32.60;min op:;31.76;max op:;32.96; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_CBC_ISO9797_M1 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 02 ff ff 00 03 00 c0 00 07 00 40 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;93.00;86.00;88.00;88.00;87.00; +baseline stats (ms):;avg:;88.40;min:;86.00;max:;93.00;;;CHECK +operation raw measurements (ms):;203.60;207.60;207.60;207.60;207.60; +operation stats (ms/op):;avg op:;41.36;min op:;40.72;max op:;41.52; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_CBC_ISO9797_M1 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 02 ff ff 00 03 00 c0 00 07 00 80 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;92.00;87.00;87.00;88.00;88.00; +baseline stats (ms):;avg:;88.40;min:;87.00;max:;92.00; +operation raw measurements (ms):;291.60;296.60;296.60;295.60;296.60; +operation stats (ms/op):;avg op:;59.08;min op:;58.32;max op:;59.32; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_CBC_ISO9797_M1 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 02 ff ff 00 03 00 c0 00 07 01 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;91.00;158.00;88.00;88.00;88.00; +baseline stats (ms):;avg:;102.60;min:;88.00;max:;158.00;;;CHECK +operation raw measurements (ms):;453.40;458.40;457.40;454.40;456.40; +operation stats (ms/op):;avg op:;91.20;min op:;90.68;max op:;91.68; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_CBC_ISO9797_M1 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 02 ff ff 00 03 00 c0 00 07 02 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;176.00;87.00;86.00;88.00;88.00; +baseline stats (ms):;avg:;105.00;min:;86.00;max:;176.00;;;CHECK +operation raw measurements (ms):;804.00;809.00;810.00;809.00;810.00; +operation stats (ms/op):;avg op:;161.68;min op:;160.80;max op:;162.00; +operation info:;data length;512;total iterations;25;total invocations;25; + + +CIPHER - TYPE_DES LENGTH_DES3_3KEY ALG_DES_CBC_ISO9797_M1 - variable data - END + + +CIPHER - TYPE_DES LENGTH_DES3_3KEY ALG_DES_CBC_ISO9797_M2 - variable data - BEGIN + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_CBC_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 03 ff ff 00 03 00 c0 00 07 00 10 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;85.00;87.00;88.00;87.00;88.00; +baseline stats (ms):;avg:;87.50;min:;85.00;max:;88.00; +operation raw measurements (ms):;39.50;39.50;38.50;38.50;39.50; +operation stats (ms/op):;avg op:;7.82;min op:;7.70;max op:;7.90; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_CBC_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 03 ff ff 00 03 00 c0 00 07 00 20 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;86.00;88.00;87.00;88.00;88.00; +baseline stats (ms):;avg:;87.75;min:;86.00;max:;88.00; +operation raw measurements (ms):;61.25;61.25;60.25;60.25;58.25; +operation stats (ms/op):;avg op:;12.05;min op:;11.65;max op:;12.25; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_CBC_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 03 ff ff 00 03 00 c0 00 07 00 40 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;86.00;87.00;88.00;87.00;88.00; +baseline stats (ms):;avg:;87.20;min:;86.00;max:;88.00; +operation raw measurements (ms):;104.80;105.80;104.80;104.80;104.80; +operation stats (ms/op):;avg op:;21.00;min op:;20.96;max op:;21.16; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_CBC_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 03 ff ff 00 03 00 c0 00 07 00 80 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;86.00;88.00;323.00;88.00;88.00; +baseline stats (ms):;avg:;134.60;min:;86.00;max:;323.00;;;CHECK +operation raw measurements (ms):;146.40;145.40;146.40;146.40;146.40; +operation stats (ms/op):;avg op:;29.24;min op:;29.08;max op:;29.28; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_CBC_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 03 ff ff 00 03 00 c0 00 07 01 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;86.00;87.00;87.00;87.00;87.00; +baseline stats (ms):;avg:;87.00;min:;86.00;max:;87.00; +operation raw measurements (ms):;370.00;369.00;371.00;370.00;370.00; +operation stats (ms/op):;avg op:;74.00;min op:;73.80;max op:;74.20; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_CBC_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 03 ff ff 00 03 00 c0 00 07 02 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;87.00;87.00;227.00;86.00;87.00; +baseline stats (ms):;avg:;114.80;min:;86.00;max:;227.00;;;CHECK +UNKONWN_ERROR-card_has_return_value_ff02 + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_CBC_ISO9797_M2 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 03 ff ff 00 03 00 c0 00 07 00 10 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;92.00;86.00;88.00;88.00;88.00; +baseline stats (ms):;avg:;88.40;min:;86.00;max:;92.00; +operation raw measurements (ms):;149.60;153.60;152.60;152.60;153.60; +operation stats (ms/op):;avg op:;30.48;min op:;29.92;max op:;30.72; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_CBC_ISO9797_M2 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 03 ff ff 00 03 00 c0 00 07 00 20 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;91.00;98.00;88.00;306.00;88.00; +baseline stats (ms):;avg:;134.20;min:;88.00;max:;306.00;;;CHECK +operation raw measurements (ms):;123.80;128.80;130.80;125.80;129.80; +operation stats (ms/op):;avg op:;25.56;min op:;24.76;max op:;26.16; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_CBC_ISO9797_M2 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 03 ff ff 00 03 00 c0 00 07 00 40 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;92.00;87.00;316.00;88.00;89.00; +baseline stats (ms):;avg:;134.40;min:;87.00;max:;316.00;;;CHECK +operation raw measurements (ms):;168.60;172.60;173.60;172.60;172.60; +operation stats (ms/op):;avg op:;34.40;min op:;33.72;max op:;34.72; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_CBC_ISO9797_M2 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 03 ff ff 00 03 00 c0 00 07 00 80 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;92.00;88.00;88.00;88.00;88.00; +baseline stats (ms):;avg:;88.80;min:;88.00;max:;92.00; +operation raw measurements (ms):;302.20;305.20;306.20;307.20;307.20; +operation stats (ms/op):;avg op:;61.12;min op:;60.44;max op:;61.44; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_CBC_ISO9797_M2 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 03 ff ff 00 03 00 c0 00 07 01 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;431.00;86.00;88.00;88.00;87.00; +baseline stats (ms):;avg:;156.00;min:;86.00;max:;431.00;;;CHECK +operation raw measurements (ms):;411.00;415.00;416.00;415.00;415.00; +operation stats (ms/op):;avg op:;82.88;min op:;82.20;max op:;83.20; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_CBC_ISO9797_M2 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 03 ff ff 00 03 00 c0 00 07 02 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;93.00;366.00;88.00;88.00;87.00; +baseline stats (ms):;avg:;144.40;min:;87.00;max:;366.00;;;CHECK +operation raw measurements (ms):;775.60;781.60;781.60;781.60;781.60; +operation stats (ms/op):;avg op:;156.08;min op:;155.12;max op:;156.32; +operation info:;data length;512;total iterations;25;total invocations;25; + + +CIPHER - TYPE_DES LENGTH_DES3_3KEY ALG_DES_CBC_ISO9797_M2 - variable data - END + + +CIPHER - TYPE_DES LENGTH_DES3_3KEY ALG_DES_CBC_PKCS5 - variable data - BEGIN + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_CBC_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 04 ff ff 00 03 00 c0 00 07 00 10 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_CBC_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 04 ff ff 00 03 00 c0 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_CBC_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 04 ff ff 00 03 00 c0 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_CBC_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 04 ff ff 00 03 00 c0 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_CBC_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 04 ff ff 00 03 00 c0 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_CBC_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 04 ff ff 00 03 00 c0 00 07 02 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_CBC_PKCS5 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 04 ff ff 00 03 00 c0 00 07 00 10 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_CBC_PKCS5 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 04 ff ff 00 03 00 c0 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_CBC_PKCS5 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 04 ff ff 00 03 00 c0 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_CBC_PKCS5 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 04 ff ff 00 03 00 c0 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_CBC_PKCS5 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 04 ff ff 00 03 00 c0 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_CBC_PKCS5 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 04 ff ff 00 03 00 c0 00 07 02 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_DES LENGTH_DES3_3KEY ALG_DES_CBC_PKCS5 - variable data - END + + +CIPHER - TYPE_DES LENGTH_DES3_3KEY ALG_DES_ECB_NOPAD - variable data - BEGIN + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 05 ff ff 00 03 00 c0 00 07 00 10 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;203.00;88.00;87.00;88.00;88.00; +baseline stats (ms):;avg:;110.80;min:;87.00;max:;203.00;;;CHECK +operation raw measurements (ms):;4.20;3.20;4.20;4.20;4.20; +operation stats (ms/op):;avg op:;0.80;min op:;0.64;max op:;0.84;;CHECK +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 05 ff ff 00 03 00 c0 00 07 00 20 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;87.00;87.00;87.00;87.00;87.00; +baseline stats (ms):;avg:;87.00;min:;87.00;max:;87.00; +operation raw measurements (ms):;50.00;50.00;50.00;50.00;50.00; +operation stats (ms/op):;avg op:;10.00;min op:;10.00;max op:;10.00; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 05 ff ff 00 03 00 c0 00 07 00 40 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;87.00;87.00;87.00;87.00;87.00; +baseline stats (ms):;avg:;87.00;min:;87.00;max:;87.00; +operation raw measurements (ms):;94.00;93.00;94.00;94.00;93.00; +operation stats (ms/op):;avg op:;18.72;min op:;18.60;max op:;18.80; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 05 ff ff 00 03 00 c0 00 07 00 80 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;86.00;190.00;86.00;88.00;87.00; +baseline stats (ms):;avg:;107.40;min:;86.00;max:;190.00;;;CHECK +operation raw measurements (ms):;160.60;159.60;161.60;159.60;159.60; +operation stats (ms/op):;avg op:;32.04;min op:;31.92;max op:;32.32; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 05 ff ff 00 03 00 c0 00 07 01 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;86.00;87.00;88.00;87.00;87.00; +baseline stats (ms):;avg:;87.25;min:;86.00;max:;88.00; +operation raw measurements (ms):;352.75;353.75;354.75;354.75;355.75; +operation stats (ms/op):;avg op:;70.87;min op:;70.55;max op:;71.15; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 05 ff ff 00 03 00 c0 00 07 02 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;86.00;88.00;87.00;87.00;87.00; +baseline stats (ms):;avg:;87.25;min:;86.00;max:;88.00; +operation raw measurements (ms):;704.75;706.75;705.75;703.75;705.75; +operation stats (ms/op):;avg op:;141.07;min op:;140.75;max op:;141.35; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_ECB_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 05 ff ff 00 03 00 c0 00 07 00 10 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;92.00;87.00;88.00;87.00;88.00; +baseline stats (ms):;avg:;88.40;min:;87.00;max:;92.00; +operation raw measurements (ms):;137.60;141.60;141.60;142.60;142.60; +operation stats (ms/op):;avg op:;28.24;min op:;27.52;max op:;28.52; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_ECB_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 05 ff ff 00 03 00 c0 00 07 00 20 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;93.00;86.00;88.00;88.00;88.00; +baseline stats (ms):;avg:;88.60;min:;86.00;max:;93.00; +operation raw measurements (ms):;158.40;163.40;164.40;162.40;162.40; +operation stats (ms/op):;avg op:;32.44;min op:;31.68;max op:;32.88; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_ECB_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 05 ff ff 00 03 00 c0 00 07 00 40 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;93.00;87.00;87.00;87.00;88.00; +baseline stats (ms):;avg:;88.40;min:;87.00;max:;93.00;;;CHECK +operation raw measurements (ms):;201.60;207.60;206.60;206.60;207.60; +operation stats (ms/op):;avg op:;41.20;min op:;40.32;max op:;41.52; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_ECB_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 05 ff ff 00 03 00 c0 00 07 00 80 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;92.00;87.00;89.00;88.00;88.00; +baseline stats (ms):;avg:;88.80;min:;87.00;max:;92.00; +operation raw measurements (ms):;289.20;294.20;294.20;293.20;293.20; +operation stats (ms/op):;avg op:;58.56;min op:;57.84;max op:;58.84; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_ECB_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 05 ff ff 00 03 00 c0 00 07 01 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;92.00;87.00;87.00;87.00;88.00; +baseline stats (ms):;avg:;88.20;min:;87.00;max:;92.00; +operation raw measurements (ms):;464.80;467.80;468.80;465.80;466.80; +operation stats (ms/op):;avg op:;93.36;min op:;92.96;max op:;93.76; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_ECB_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 05 ff ff 00 03 00 c0 00 07 02 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;92.00;88.00;88.00;88.00;87.00; +baseline stats (ms):;avg:;88.60;min:;87.00;max:;92.00; +operation raw measurements (ms):;811.40;818.40;817.40;819.40;819.40; +operation stats (ms/op):;avg op:;163.44;min op:;162.28;max op:;163.88; +operation info:;data length;512;total iterations;25;total invocations;25; + + +CIPHER - TYPE_DES LENGTH_DES3_3KEY ALG_DES_ECB_NOPAD - variable data - END + + +CIPHER - TYPE_DES LENGTH_DES3_3KEY ALG_DES_ECB_ISO9797_M1 - variable data - BEGIN + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_ECB_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 06 ff ff 00 03 00 c0 00 07 00 10 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;85.00;88.00;318.00;87.00;85.00; +baseline stats (ms):;avg:;132.60;min:;85.00;max:;318.00;;;CHECK +operation raw measurements (ms):;-18.60;-17.60;-17.60;-17.60;-17.60; +operation stats (ms/op):;avg op:;-3.56;min op:;-3.72;max op:;-3.52; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_ECB_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 06 ff ff 00 03 00 c0 00 07 00 20 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;85.00;263.00;87.00;87.00;86.00; +baseline stats (ms):;avg:;121.60;min:;85.00;max:;263.00;;;CHECK +operation raw measurements (ms):;13.40;14.40;13.40;15.40;14.40; +operation stats (ms/op):;avg op:;2.84;min op:;2.68;max op:;3.08;;CHECK +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_ECB_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 06 ff ff 00 03 00 c0 00 07 00 40 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;210.00;88.00;88.00;87.00;86.00; +baseline stats (ms):;avg:;111.80;min:;86.00;max:;210.00;;;CHECK +operation raw measurements (ms):;67.20;68.20;69.20;68.20;68.20; +operation stats (ms/op):;avg op:;13.64;min op:;13.44;max op:;13.84; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_ECB_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 06 ff ff 00 03 00 c0 00 07 00 80 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;86.00;211.00;88.00;87.00;88.00; +baseline stats (ms):;avg:;112.00;min:;86.00;max:;211.00;;;CHECK +operation raw measurements (ms):;155.00;156.00;155.00;156.00;156.00; +operation stats (ms/op):;avg op:;31.12;min op:;31.00;max op:;31.20; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_ECB_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 06 ff ff 00 03 00 c0 00 07 01 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;87.00;87.00;87.00;87.00;84.00; +baseline stats (ms):;avg:;87.00;min:;84.00;max:;87.00; +operation raw measurements (ms):;354.00;356.00;355.00;356.00;356.00; +operation stats (ms/op):;avg op:;71.08;min op:;70.80;max op:;71.20; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_ECB_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 06 ff ff 00 03 00 c0 00 07 02 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;85.00;87.00;86.00;87.00;87.00; +baseline stats (ms):;avg:;86.75;min:;85.00;max:;87.00; +operation raw measurements (ms):;707.25;705.25;705.25;707.25;706.25; +operation stats (ms/op):;avg op:;141.25;min op:;141.05;max op:;141.45; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_ECB_ISO9797_M1 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 06 ff ff 00 03 00 c0 00 07 00 10 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;92.00;86.00;88.00;88.00;88.00; +baseline stats (ms):;avg:;88.40;min:;86.00;max:;92.00; +operation raw measurements (ms):;137.60;141.60;141.60;141.60;140.60; +operation stats (ms/op):;avg op:;28.12;min op:;27.52;max op:;28.32; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_ECB_ISO9797_M1 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 06 ff ff 00 03 00 c0 00 07 00 20 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;93.00;87.00;88.00;87.00;88.00; +baseline stats (ms):;avg:;88.60;min:;87.00;max:;93.00; +operation raw measurements (ms):;159.40;163.40;162.40;163.40;163.40; +operation stats (ms/op):;avg op:;32.48;min op:;31.88;max op:;32.68; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_ECB_ISO9797_M1 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 06 ff ff 00 03 00 c0 00 07 00 40 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;93.00;86.00;303.00;87.00;87.00; +baseline stats (ms):;avg:;131.20;min:;86.00;max:;303.00;;;CHECK +operation raw measurements (ms):;160.80;165.80;163.80;163.80;164.80; +operation stats (ms/op):;avg op:;32.76;min op:;32.16;max op:;33.16; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_ECB_ISO9797_M1 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 06 ff ff 00 03 00 c0 00 07 00 80 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;91.00;428.00;88.00;87.00;87.00; +baseline stats (ms):;avg:;156.20;min:;87.00;max:;428.00;;;CHECK +operation raw measurements (ms):;220.80;226.80;224.80;226.80;226.80; +operation stats (ms/op):;avg op:;45.04;min op:;44.16;max op:;45.36; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_ECB_ISO9797_M1 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 06 ff ff 00 03 00 c0 00 07 01 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;91.00;87.00;87.00;88.00;86.00; +baseline stats (ms):;avg:;87.80;min:;86.00;max:;91.00; +operation raw measurements (ms):;463.20;469.20;470.20;469.20;469.20; +operation stats (ms/op):;avg op:;93.64;min op:;92.64;max op:;94.04; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_ECB_ISO9797_M1 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 06 ff ff 00 03 00 c0 00 07 02 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;93.00;87.00;88.00;87.00;87.00; +baseline stats (ms):;avg:;88.40;min:;87.00;max:;93.00;;;CHECK +operation raw measurements (ms):;813.60;819.60;820.60;820.60;820.60; +operation stats (ms/op):;avg op:;163.80;min op:;162.72;max op:;164.12; +operation info:;data length;512;total iterations;25;total invocations;25; + + +CIPHER - TYPE_DES LENGTH_DES3_3KEY ALG_DES_ECB_ISO9797_M1 - variable data - END + + +CIPHER - TYPE_DES LENGTH_DES3_3KEY ALG_DES_ECB_ISO9797_M2 - variable data - BEGIN + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_ECB_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 07 ff ff 00 03 00 c0 00 07 00 10 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;86.00;87.00;87.00;87.00;87.00; +baseline stats (ms):;avg:;87.00;min:;86.00;max:;87.00; +operation raw measurements (ms):;39.00;39.00;38.00;39.00;37.00; +operation stats (ms/op):;avg op:;7.68;min op:;7.40;max op:;7.80; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_ECB_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 07 ff ff 00 03 00 c0 00 07 00 20 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;86.00;87.00;87.00;88.00;88.00; +baseline stats (ms):;avg:;87.20;min:;86.00;max:;88.00; +operation raw measurements (ms):;60.80;60.80;61.80;60.80;59.80; +operation stats (ms/op):;avg op:;12.16;min op:;11.96;max op:;12.36; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_ECB_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 07 ff ff 00 03 00 c0 00 07 00 40 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;86.00;87.00;87.00;87.00;87.00; +baseline stats (ms):;avg:;87.00;min:;86.00;max:;87.00; +operation raw measurements (ms):;104.00;105.00;104.00;106.00;105.00; +operation stats (ms/op):;avg op:;20.96;min op:;20.80;max op:;21.20; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_ECB_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 07 ff ff 00 03 00 c0 00 07 00 80 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;87.00;88.00;87.00;87.00;87.00; +baseline stats (ms):;avg:;87.20;min:;87.00;max:;88.00; +operation raw measurements (ms):;191.80;189.80;191.80;190.80;191.80; +operation stats (ms/op):;avg op:;38.24;min op:;37.96;max op:;38.36; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_ECB_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 07 ff ff 00 03 00 c0 00 07 01 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;86.00;86.00;97.00;88.00;85.00; +baseline stats (ms):;avg:;88.40;min:;85.00;max:;97.00;;;CHECK +operation raw measurements (ms):;364.60;365.60;364.60;364.60;364.60; +operation stats (ms/op):;avg op:;72.96;min op:;72.92;max op:;73.12; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_ECB_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 07 ff ff 00 03 00 c0 00 07 02 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;85.00;88.00;87.00;87.00;86.00; +baseline stats (ms):;avg:;86.60;min:;85.00;max:;88.00; +UNKONWN_ERROR-card_has_return_value_ff02 + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_ECB_ISO9797_M2 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 07 ff ff 00 03 00 c0 00 07 00 10 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;92.00;86.00;88.00;84.00;88.00; +baseline stats (ms):;avg:;87.60;min:;84.00;max:;92.00;;;CHECK +operation raw measurements (ms):;149.40;152.40;154.40;153.40;153.40; +operation stats (ms/op):;avg op:;30.52;min op:;29.88;max op:;30.88; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_ECB_ISO9797_M2 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 07 ff ff 00 03 00 c0 00 07 00 20 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;92.00;86.00;184.00;88.00;88.00; +baseline stats (ms):;avg:;107.60;min:;86.00;max:;184.00;;;CHECK +operation raw measurements (ms):;149.40;155.40;155.40;154.40;154.40; +operation stats (ms/op):;avg op:;30.76;min op:;29.88;max op:;31.08; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_ECB_ISO9797_M2 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 07 ff ff 00 03 00 c0 00 07 00 40 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;92.00;89.00;86.00;87.00;88.00; +baseline stats (ms):;avg:;88.40;min:;86.00;max:;92.00; +operation raw measurements (ms):;213.60;217.60;216.60;217.60;217.60; +operation stats (ms/op):;avg op:;43.32;min op:;42.72;max op:;43.52; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_ECB_ISO9797_M2 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 07 ff ff 00 03 00 c0 00 07 00 80 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;92.00;86.00;88.00;88.00;88.00; +baseline stats (ms):;avg:;88.40;min:;86.00;max:;92.00; +operation raw measurements (ms):;299.60;304.60;304.60;305.60;304.60; +operation stats (ms/op):;avg op:;60.76;min op:;59.92;max op:;61.12; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_ECB_ISO9797_M2 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 07 ff ff 00 03 00 c0 00 07 01 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;93.00;147.00;88.00;87.00;88.00; +baseline stats (ms):;avg:;100.60;min:;87.00;max:;147.00;;;CHECK +operation raw measurements (ms):;459.40;467.40;466.40;467.40;467.40; +operation stats (ms/op):;avg op:;93.12;min op:;91.88;max op:;93.48; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_ECB_ISO9797_M2 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 07 ff ff 00 03 00 c0 00 07 02 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;143.00;86.00;88.00;87.00;89.00; +baseline stats (ms):;avg:;98.60;min:;86.00;max:;143.00;;;CHECK +operation raw measurements (ms):;814.40;820.40;819.40;819.40;820.40; +operation stats (ms/op):;avg op:;163.76;min op:;162.88;max op:;164.08; +operation info:;data length;512;total iterations;25;total invocations;25; + + +CIPHER - TYPE_DES LENGTH_DES3_3KEY ALG_DES_ECB_ISO9797_M2 - variable data - END + + +CIPHER - TYPE_DES LENGTH_DES3_3KEY ALG_DES_ECB_PKCS5 - variable data - BEGIN + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_ECB_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 08 ff ff 00 03 00 c0 00 07 00 10 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_ECB_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 08 ff ff 00 03 00 c0 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_ECB_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 08 ff ff 00 03 00 c0 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_ECB_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 08 ff ff 00 03 00 c0 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_ECB_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 08 ff ff 00 03 00 c0 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_ECB_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 08 ff ff 00 03 00 c0 00 07 02 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_ECB_PKCS5 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 08 ff ff 00 03 00 c0 00 07 00 10 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_ECB_PKCS5 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 08 ff ff 00 03 00 c0 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_ECB_PKCS5 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 08 ff ff 00 03 00 c0 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_ECB_PKCS5 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 08 ff ff 00 03 00 c0 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_ECB_PKCS5 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 08 ff ff 00 03 00 c0 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_ECB_PKCS5 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 08 ff ff 00 03 00 c0 00 07 02 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_DES LENGTH_DES3_3KEY ALG_DES_ECB_PKCS5 - variable data - END + + +CIPHER - TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_128_CBC_NOPAD - variable data - BEGIN + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_128_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0d ff ff 00 0f 00 80 00 07 00 10 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;86.00;86.00;86.00;84.00;84.00; +baseline stats (ms):;avg:;85.20;min:;84.00;max:;86.00; +operation raw measurements (ms):;7.80;6.80;8.80;6.80;7.80; +operation stats (ms/op):;avg op:;1.52;min op:;1.36;max op:;1.76;;CHECK +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_128_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0d ff ff 00 0f 00 80 00 07 00 20 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;86.00;262.00;84.00;86.00;84.00; +baseline stats (ms):;avg:;120.40;min:;84.00;max:;262.00;;;CHECK +operation raw measurements (ms):;-24.40;-25.40;-24.40;-24.40;-25.40; +operation stats (ms/op):;avg op:;-4.96;min op:;-5.08;max op:;-4.88; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_128_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0d ff ff 00 0f 00 80 00 07 00 40 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;86.00;86.00;89.00;84.00;84.00; +baseline stats (ms):;avg:;85.80;min:;84.00;max:;89.00; +operation raw measurements (ms):;15.20;14.20;15.20;15.20;16.20; +operation stats (ms/op):;avg op:;3.04;min op:;2.84;max op:;3.24;;CHECK +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_128_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0d ff ff 00 0f 00 80 00 07 00 80 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;85.00;84.00;86.00;84.00;85.00; +baseline stats (ms):;avg:;84.80;min:;84.00;max:;86.00; +operation raw measurements (ms):;26.20;28.20;27.20;28.20;28.20; +operation stats (ms/op):;avg op:;5.52;min op:;5.24;max op:;5.64;;CHECK +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_128_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0d ff ff 00 0f 00 80 00 07 01 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;85.00;86.00;84.00;86.00;85.00; +baseline stats (ms):;avg:;85.20;min:;84.00;max:;86.00; +operation raw measurements (ms):;49.80;48.80;48.80;49.80;48.80; +operation stats (ms/op):;avg op:;9.84;min op:;9.76;max op:;9.96; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_128_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0d ff ff 00 0f 00 80 00 07 02 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;85.00;88.00;85.00;85.00;85.00; +baseline stats (ms):;avg:;85.60;min:;85.00;max:;88.00; +operation raw measurements (ms):;93.40;92.40;93.40;91.40;93.40; +operation stats (ms/op):;avg op:;18.56;min op:;18.28;max op:;18.68; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_128_CBC_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 0d ff ff 00 0f 00 80 00 07 00 10 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;94.00;85.00;86.00;86.00;86.00; +baseline stats (ms):;avg:;87.40;min:;85.00;max:;94.00;;;CHECK +operation raw measurements (ms):;118.60;126.60;127.60;126.60;127.60; +operation stats (ms/op):;avg op:;25.08;min op:;23.72;max op:;25.52;;CHECK +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_128_CBC_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 0d ff ff 00 0f 00 80 00 07 00 20 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;95.00;89.00;85.00;86.00;86.00; +baseline stats (ms):;avg:;88.20;min:;85.00;max:;95.00;;;CHECK +operation raw measurements (ms):;120.80;128.80;128.80;129.80;129.80; +operation stats (ms/op):;avg op:;25.52;min op:;24.16;max op:;25.96;;CHECK +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_128_CBC_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 0d ff ff 00 0f 00 80 00 07 00 40 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;502.00;84.00;82.00;84.00;85.00; +baseline stats (ms):;avg:;167.40;min:;82.00;max:;502.00;;;CHECK +operation raw measurements (ms):;47.60;55.60;55.60;55.60;55.60; +operation stats (ms/op):;avg op:;10.80;min op:;9.52;max op:;11.12;;CHECK +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_128_CBC_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 0d ff ff 00 0f 00 80 00 07 00 80 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;95.00;143.00;85.00;86.00;85.00; +baseline stats (ms):;avg:;98.80;min:;85.00;max:;143.00;;;CHECK +operation raw measurements (ms):;126.20;134.20;134.20;135.20;135.20; +operation stats (ms/op):;avg op:;26.60;min op:;25.24;max op:;27.04;;CHECK +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_128_CBC_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 0d ff ff 00 0f 00 80 00 07 01 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;261.00;86.00;85.00;85.00;86.00; +baseline stats (ms):;avg:;120.60;min:;85.00;max:;261.00;;;CHECK +operation raw measurements (ms):;127.40;135.40;135.40;134.40;135.40; +operation stats (ms/op):;avg op:;26.72;min op:;25.48;max op:;27.08; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_128_CBC_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 0d ff ff 00 0f 00 80 00 07 02 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;96.00;86.00;85.00;85.00;85.00; +baseline stats (ms):;avg:;87.40;min:;85.00;max:;96.00;;;CHECK +operation raw measurements (ms):;200.60;208.60;208.60;211.60;211.60; +operation stats (ms/op):;avg op:;41.64;min op:;40.12;max op:;42.32; +operation info:;data length;512;total iterations;25;total invocations;25; + + +CIPHER - TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_128_CBC_NOPAD - variable data - END + + +CIPHER - TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_128_ECB_NOPAD - variable data - BEGIN + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_128_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0e ff ff 00 0f 00 80 00 07 00 10 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;85.00;85.00;85.00;85.00;85.00; +baseline stats (ms):;avg:;85.00;min:;85.00;max:;85.00; +operation raw measurements (ms):;8.00;8.00;7.00;8.00;9.00; +operation stats (ms/op):;avg op:;1.60;min op:;1.40;max op:;1.80;;CHECK +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_128_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0e ff ff 00 0f 00 80 00 07 00 20 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;85.00;380.00;85.00;86.00;85.00; +baseline stats (ms):;avg:;144.20;min:;85.00;max:;380.00;;;CHECK +operation raw measurements (ms):;-49.20;-48.20;-49.20;-49.20;-49.20; +operation stats (ms/op):;avg op:;-9.80;min op:;-9.84;max op:;-9.64; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_128_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0e ff ff 00 0f 00 80 00 07 00 40 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;86.00;84.00;86.00;84.00;85.00; +baseline stats (ms):;avg:;85.00;min:;84.00;max:;86.00; +operation raw measurements (ms):;16.00;15.00;15.00;15.00;16.00; +operation stats (ms/op):;avg op:;3.08;min op:;3.00;max op:;3.20; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_128_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0e ff ff 00 0f 00 80 00 07 00 80 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;85.00;107.00;82.00;85.00;85.00; +baseline stats (ms):;avg:;88.80;min:;82.00;max:;107.00;;;CHECK +operation raw measurements (ms):;22.20;21.20;21.20;22.20;22.20; +operation stats (ms/op):;avg op:;4.36;min op:;4.24;max op:;4.44; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_128_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0e ff ff 00 0f 00 80 00 07 01 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;85.00;86.00;86.00;85.00;85.00; +baseline stats (ms):;avg:;85.40;min:;85.00;max:;86.00; +operation raw measurements (ms):;45.60;44.60;45.60;46.60;45.60; +operation stats (ms/op):;avg op:;9.12;min op:;8.92;max op:;9.32; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_128_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0e ff ff 00 0f 00 80 00 07 02 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;86.00;201.00;86.00;85.00;85.00; +baseline stats (ms):;avg:;108.60;min:;85.00;max:;201.00;;;CHECK +operation raw measurements (ms):;62.40;64.40;65.40;64.40;63.40; +operation stats (ms/op):;avg op:;12.80;min op:;12.48;max op:;13.08; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_128_ECB_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 0e ff ff 00 0f 00 80 00 07 00 10 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;91.00;85.00;85.00;85.00;85.00; +baseline stats (ms):;avg:;86.20;min:;85.00;max:;91.00;;;CHECK +operation raw measurements (ms):;119.80;124.80;125.80;126.80;127.80; +operation stats (ms/op):;avg op:;25.00;min op:;23.96;max op:;25.56; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_128_ECB_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 0e ff ff 00 0f 00 80 00 07 00 20 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;96.00;168.00;85.00;84.00;83.00; +baseline stats (ms):;avg:;103.20;min:;83.00;max:;168.00;;;CHECK +operation raw measurements (ms):;101.80;109.80;109.80;110.80;109.80; +operation stats (ms/op):;avg op:;21.68;min op:;20.36;max op:;22.16;;CHECK +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_128_ECB_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 0e ff ff 00 0f 00 80 00 07 00 40 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;91.00;82.00;334.00;82.00;85.00; +baseline stats (ms):;avg:;134.80;min:;82.00;max:;334.00;;;CHECK +operation raw measurements (ms):;78.20;86.20;86.20;87.20;87.20; +operation stats (ms/op):;avg op:;17.00;min op:;15.64;max op:;17.44;;CHECK +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_128_ECB_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 0e ff ff 00 0f 00 80 00 07 00 80 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;95.00;84.00;86.00;86.00;85.00; +baseline stats (ms):;avg:;87.20;min:;84.00;max:;95.00;;;CHECK +operation raw measurements (ms):;136.80;144.80;144.80;144.80;144.80; +operation stats (ms/op):;avg op:;28.64;min op:;27.36;max op:;28.96; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_128_ECB_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 0e ff ff 00 0f 00 80 00 07 01 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;92.00;82.00;83.00;91.00;82.00; +baseline stats (ms):;avg:;86.00;min:;82.00;max:;92.00;;;CHECK +operation raw measurements (ms):;158.00;163.00;163.00;167.00;166.00; +operation stats (ms/op):;avg op:;32.68;min op:;31.60;max op:;33.40; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_128_ECB_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 0e ff ff 00 0f 00 80 00 07 02 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;96.00;85.00;86.00;83.00;82.00; +baseline stats (ms):;avg:;86.40;min:;82.00;max:;96.00;;;CHECK +operation raw measurements (ms):;199.60;207.60;206.60;207.60;206.60; +operation stats (ms/op):;avg op:;41.12;min op:;39.92;max op:;41.52; +operation info:;data length;512;total iterations;25;total invocations;25; + + +CIPHER - TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_128_ECB_NOPAD - variable data - END + + +CIPHER - TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_192_CBC_NOPAD - variable data - BEGIN + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_192_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 12 ff ff 00 0f 00 80 00 07 00 10 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_192_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 12 ff ff 00 0f 00 80 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_192_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 12 ff ff 00 0f 00 80 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_192_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 12 ff ff 00 0f 00 80 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_192_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 12 ff ff 00 0f 00 80 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_192_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 12 ff ff 00 0f 00 80 00 07 02 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_192_CBC_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 12 ff ff 00 0f 00 80 00 07 00 10 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_192_CBC_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 12 ff ff 00 0f 00 80 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_192_CBC_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 12 ff ff 00 0f 00 80 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_192_CBC_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 12 ff ff 00 0f 00 80 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_192_CBC_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 12 ff ff 00 0f 00 80 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_192_CBC_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 12 ff ff 00 0f 00 80 00 07 02 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_192_CBC_NOPAD - variable data - END + + +CIPHER - TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_192_ECB_NOPAD - variable data - BEGIN + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_192_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 13 ff ff 00 0f 00 80 00 07 00 10 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_192_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 13 ff ff 00 0f 00 80 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_192_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 13 ff ff 00 0f 00 80 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_192_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 13 ff ff 00 0f 00 80 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_192_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 13 ff ff 00 0f 00 80 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_192_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 13 ff ff 00 0f 00 80 00 07 02 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_192_ECB_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 13 ff ff 00 0f 00 80 00 07 00 10 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_192_ECB_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 13 ff ff 00 0f 00 80 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_192_ECB_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 13 ff ff 00 0f 00 80 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_192_ECB_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 13 ff ff 00 0f 00 80 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_192_ECB_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 13 ff ff 00 0f 00 80 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_192_ECB_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 13 ff ff 00 0f 00 80 00 07 02 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_192_ECB_NOPAD - variable data - END + + +CIPHER - TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_256_CBC_NOPAD - variable data - BEGIN + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_256_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 14 ff ff 00 0f 00 80 00 07 00 10 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_256_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 14 ff ff 00 0f 00 80 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_256_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 14 ff ff 00 0f 00 80 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_256_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 14 ff ff 00 0f 00 80 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_256_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 14 ff ff 00 0f 00 80 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_256_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 14 ff ff 00 0f 00 80 00 07 02 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_256_CBC_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 14 ff ff 00 0f 00 80 00 07 00 10 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_256_CBC_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 14 ff ff 00 0f 00 80 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_256_CBC_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 14 ff ff 00 0f 00 80 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_256_CBC_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 14 ff ff 00 0f 00 80 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_256_CBC_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 14 ff ff 00 0f 00 80 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_256_CBC_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 14 ff ff 00 0f 00 80 00 07 02 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_256_CBC_NOPAD - variable data - END + + +CIPHER - TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_256_ECB_NOPAD - variable data - BEGIN + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_256_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 15 ff ff 00 0f 00 80 00 07 00 10 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_256_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 15 ff ff 00 0f 00 80 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_256_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 15 ff ff 00 0f 00 80 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_256_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 15 ff ff 00 0f 00 80 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_256_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 15 ff ff 00 0f 00 80 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_256_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 15 ff ff 00 0f 00 80 00 07 02 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_256_ECB_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 15 ff ff 00 0f 00 80 00 07 00 10 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_256_ECB_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 15 ff ff 00 0f 00 80 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_256_ECB_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 15 ff ff 00 0f 00 80 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_256_ECB_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 15 ff ff 00 0f 00 80 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_256_ECB_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 15 ff ff 00 0f 00 80 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_256_ECB_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 15 ff ff 00 0f 00 80 00 07 02 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_AES LENGTH_AES_128 ALG_AES_BLOCK_256_ECB_NOPAD - variable data - END + + +CIPHER - TYPE_AES LENGTH_AES_128 ALG_AES_CBC_ISO9797_M1 - variable data - BEGIN + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_CBC_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 16 ff ff 00 0f 00 80 00 07 00 10 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_CBC_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 16 ff ff 00 0f 00 80 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_CBC_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 16 ff ff 00 0f 00 80 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_CBC_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 16 ff ff 00 0f 00 80 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_CBC_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 16 ff ff 00 0f 00 80 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_CBC_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 16 ff ff 00 0f 00 80 00 07 02 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_CBC_ISO9797_M1 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 16 ff ff 00 0f 00 80 00 07 00 10 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_CBC_ISO9797_M1 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 16 ff ff 00 0f 00 80 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_CBC_ISO9797_M1 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 16 ff ff 00 0f 00 80 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_CBC_ISO9797_M1 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 16 ff ff 00 0f 00 80 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_CBC_ISO9797_M1 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 16 ff ff 00 0f 00 80 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_CBC_ISO9797_M1 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 16 ff ff 00 0f 00 80 00 07 02 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_AES LENGTH_AES_128 ALG_AES_CBC_ISO9797_M1 - variable data - END + + +CIPHER - TYPE_AES LENGTH_AES_128 ALG_AES_CBC_ISO9797_M2 - variable data - BEGIN + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_CBC_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 17 ff ff 00 0f 00 80 00 07 00 10 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_CBC_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 17 ff ff 00 0f 00 80 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_CBC_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 17 ff ff 00 0f 00 80 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_CBC_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 17 ff ff 00 0f 00 80 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_CBC_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 17 ff ff 00 0f 00 80 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_CBC_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 17 ff ff 00 0f 00 80 00 07 02 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_CBC_ISO9797_M2 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 17 ff ff 00 0f 00 80 00 07 00 10 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_CBC_ISO9797_M2 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 17 ff ff 00 0f 00 80 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_CBC_ISO9797_M2 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 17 ff ff 00 0f 00 80 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_CBC_ISO9797_M2 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 17 ff ff 00 0f 00 80 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_CBC_ISO9797_M2 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 17 ff ff 00 0f 00 80 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_CBC_ISO9797_M2 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 17 ff ff 00 0f 00 80 00 07 02 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_AES LENGTH_AES_128 ALG_AES_CBC_ISO9797_M2 - variable data - END + + +CIPHER - TYPE_AES LENGTH_AES_128 ALG_AES_CBC_PKCS5 - variable data - BEGIN + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_CBC_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 18 ff ff 00 0f 00 80 00 07 00 10 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_CBC_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 18 ff ff 00 0f 00 80 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_CBC_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 18 ff ff 00 0f 00 80 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_CBC_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 18 ff ff 00 0f 00 80 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_CBC_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 18 ff ff 00 0f 00 80 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_CBC_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 18 ff ff 00 0f 00 80 00 07 02 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_CBC_PKCS5 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 18 ff ff 00 0f 00 80 00 07 00 10 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_CBC_PKCS5 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 18 ff ff 00 0f 00 80 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_CBC_PKCS5 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 18 ff ff 00 0f 00 80 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_CBC_PKCS5 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 18 ff ff 00 0f 00 80 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_CBC_PKCS5 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 18 ff ff 00 0f 00 80 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_CBC_PKCS5 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 18 ff ff 00 0f 00 80 00 07 02 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_AES LENGTH_AES_128 ALG_AES_CBC_PKCS5 - variable data - END + + +CIPHER - TYPE_AES LENGTH_AES_128 ALG_AES_ECB_ISO9797_M1 - variable data - BEGIN + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_ECB_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 19 ff ff 00 0f 00 80 00 07 00 10 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_ECB_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 19 ff ff 00 0f 00 80 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_ECB_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 19 ff ff 00 0f 00 80 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_ECB_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 19 ff ff 00 0f 00 80 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_ECB_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 19 ff ff 00 0f 00 80 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_ECB_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 19 ff ff 00 0f 00 80 00 07 02 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_ECB_ISO9797_M1 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 19 ff ff 00 0f 00 80 00 07 00 10 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_ECB_ISO9797_M1 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 19 ff ff 00 0f 00 80 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_ECB_ISO9797_M1 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 19 ff ff 00 0f 00 80 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_ECB_ISO9797_M1 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 19 ff ff 00 0f 00 80 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_ECB_ISO9797_M1 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 19 ff ff 00 0f 00 80 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_ECB_ISO9797_M1 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 19 ff ff 00 0f 00 80 00 07 02 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_AES LENGTH_AES_128 ALG_AES_ECB_ISO9797_M1 - variable data - END + + +CIPHER - TYPE_AES LENGTH_AES_128 ALG_AES_ECB_ISO9797_M2 - variable data - BEGIN + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_ECB_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 1a ff ff 00 0f 00 80 00 07 00 10 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_ECB_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 1a ff ff 00 0f 00 80 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_ECB_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 1a ff ff 00 0f 00 80 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_ECB_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 1a ff ff 00 0f 00 80 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_ECB_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 1a ff ff 00 0f 00 80 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_ECB_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 1a ff ff 00 0f 00 80 00 07 02 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_ECB_ISO9797_M2 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 1a ff ff 00 0f 00 80 00 07 00 10 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_ECB_ISO9797_M2 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 1a ff ff 00 0f 00 80 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_ECB_ISO9797_M2 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 1a ff ff 00 0f 00 80 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_ECB_ISO9797_M2 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 1a ff ff 00 0f 00 80 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_ECB_ISO9797_M2 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 1a ff ff 00 0f 00 80 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_ECB_ISO9797_M2 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 1a ff ff 00 0f 00 80 00 07 02 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_AES LENGTH_AES_128 ALG_AES_ECB_ISO9797_M2 - variable data - END + + +CIPHER - TYPE_AES LENGTH_AES_128 ALG_AES_ECB_PKCS5 - variable data - BEGIN + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_ECB_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 1b ff ff 00 0f 00 80 00 07 00 10 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_ECB_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 1b ff ff 00 0f 00 80 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_ECB_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 1b ff ff 00 0f 00 80 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_ECB_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 1b ff ff 00 0f 00 80 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_ECB_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 1b ff ff 00 0f 00 80 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_ECB_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 1b ff ff 00 0f 00 80 00 07 02 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_ECB_PKCS5 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 1b ff ff 00 0f 00 80 00 07 00 10 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_ECB_PKCS5 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 1b ff ff 00 0f 00 80 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_ECB_PKCS5 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 1b ff ff 00 0f 00 80 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_ECB_PKCS5 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 1b ff ff 00 0f 00 80 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_ECB_PKCS5 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 1b ff ff 00 0f 00 80 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_ECB_PKCS5 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 1b ff ff 00 0f 00 80 00 07 02 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_AES LENGTH_AES_128 ALG_AES_ECB_PKCS5 - variable data - END + + +CIPHER - TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_128_CBC_NOPAD - variable data - BEGIN + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_128_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0d ff ff 00 0f 00 c0 00 07 00 10 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;86.00;86.00;85.00;84.00;85.00; +baseline stats (ms):;avg:;85.20;min:;84.00;max:;86.00; +operation raw measurements (ms):;8.80;9.80;9.80;9.80;10.80; +operation stats (ms/op):;avg op:;1.96;min op:;1.76;max op:;2.16;;CHECK +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_128_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0d ff ff 00 0f 00 c0 00 07 00 20 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;84.00;271.00;85.00;84.00;81.00; +baseline stats (ms):;avg:;121.00;min:;81.00;max:;271.00;;;CHECK +operation raw measurements (ms):;-27.00;-27.00;-28.00;-28.00;-27.00; +operation stats (ms/op):;avg op:;-5.48;min op:;-5.60;max op:;-5.40; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_128_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0d ff ff 00 0f 00 c0 00 07 00 40 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;82.00;81.00;81.00;82.00;82.00; +baseline stats (ms):;avg:;81.60;min:;81.00;max:;82.00; +operation raw measurements (ms):;22.40;22.40;22.40;21.40;22.40; +operation stats (ms/op):;avg op:;4.44;min op:;4.28;max op:;4.48; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_128_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0d ff ff 00 0f 00 c0 00 07 00 80 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;85.00;85.00;86.00;86.00;86.00; +baseline stats (ms):;avg:;85.60;min:;85.00;max:;86.00; +operation raw measurements (ms):;31.40;31.40;30.40;32.40;30.40; +operation stats (ms/op):;avg op:;6.24;min op:;6.08;max op:;6.48; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_128_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0d ff ff 00 0f 00 c0 00 07 01 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;196.00;85.00;84.00;92.00;85.00; +baseline stats (ms):;avg:;108.40;min:;84.00;max:;196.00;;;CHECK +operation raw measurements (ms):;33.60;32.60;32.60;33.60;34.60; +operation stats (ms/op):;avg op:;6.68;min op:;6.52;max op:;6.92; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_128_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0d ff ff 00 0f 00 c0 00 07 02 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;85.00;192.00;85.00;85.00;86.00; +baseline stats (ms):;avg:;106.60;min:;85.00;max:;192.00;;;CHECK +operation raw measurements (ms):;108.40;85.40;86.40;84.40;85.40; +operation stats (ms/op):;avg op:;18.00;min op:;16.88;max op:;21.68;;CHECK +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_128_CBC_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 0d ff ff 00 0f 00 c0 00 07 00 10 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;94.00;86.00;85.00;86.00;86.00; +baseline stats (ms):;avg:;87.40;min:;85.00;max:;94.00;;;CHECK +operation raw measurements (ms):;117.60;124.60;124.60;123.60;124.60; +operation stats (ms/op):;avg op:;24.60;min op:;23.52;max op:;24.92; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_128_CBC_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 0d ff ff 00 0f 00 c0 00 07 00 20 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;94.00;85.00;85.00;85.00;86.00; +baseline stats (ms):;avg:;87.00;min:;85.00;max:;94.00;;;CHECK +operation raw measurements (ms):;122.00;127.00;128.00;128.00;129.00; +operation stats (ms/op):;avg op:;25.36;min op:;24.40;max op:;25.80; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_128_CBC_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 0d ff ff 00 0f 00 c0 00 07 00 40 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;93.00;86.00;86.00;85.00;86.00; +baseline stats (ms):;avg:;87.20;min:;85.00;max:;93.00;;;CHECK +operation raw measurements (ms):;129.80;133.80;133.80;133.80;134.80; +operation stats (ms/op):;avg op:;26.64;min op:;25.96;max op:;26.96; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_128_CBC_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 0d ff ff 00 0f 00 c0 00 07 00 80 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;93.00;114.00;86.00;85.00;86.00; +baseline stats (ms):;avg:;92.80;min:;85.00;max:;114.00;;;CHECK +operation raw measurements (ms):;136.20;141.20;141.20;142.20;142.20; +operation stats (ms/op):;avg op:;28.12;min op:;27.24;max op:;28.44; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_128_CBC_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 0d ff ff 00 0f 00 c0 00 07 01 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;263.00;85.00;86.00;85.00;85.00; +baseline stats (ms):;avg:;120.80;min:;85.00;max:;263.00;;;CHECK +operation raw measurements (ms):;133.20;138.20;139.20;138.20;139.20; +operation stats (ms/op):;avg op:;27.52;min op:;26.64;max op:;27.84; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_128_CBC_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 0d ff ff 00 0f 00 c0 00 07 02 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;93.00;86.00;86.00;86.00;85.00; +baseline stats (ms):;avg:;87.20;min:;85.00;max:;93.00;;;CHECK +operation raw measurements (ms):;215.80;222.80;223.80;222.80;223.80; +operation stats (ms/op):;avg op:;44.36;min op:;43.16;max op:;44.76; +operation info:;data length;512;total iterations;25;total invocations;25; + + +CIPHER - TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_128_CBC_NOPAD - variable data - END + + +CIPHER - TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_128_ECB_NOPAD - variable data - BEGIN + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_128_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0e ff ff 00 0f 00 c0 00 07 00 10 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;196.00;84.00;85.00;85.00;86.00; +baseline stats (ms):;avg:;107.20;min:;84.00;max:;196.00;;;CHECK +operation raw measurements (ms):;-13.20;-13.20;-13.20;-12.20;-12.20; +operation stats (ms/op):;avg op:;-2.56;min op:;-2.64;max op:;-2.44; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_128_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0e ff ff 00 0f 00 c0 00 07 00 20 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;85.00;262.00;85.00;84.00;85.00; +baseline stats (ms):;avg:;120.20;min:;84.00;max:;262.00;;;CHECK +operation raw measurements (ms):;-23.20;-23.20;-22.20;-23.20;-23.20; +operation stats (ms/op):;avg op:;-4.60;min op:;-4.64;max op:;-4.44; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_128_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0e ff ff 00 0f 00 c0 00 07 00 40 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;86.00;85.00;85.00;84.00;85.00; +baseline stats (ms):;avg:;85.25;min:;84.00;max:;86.00; +operation raw measurements (ms):;18.75;17.75;18.75;17.75;17.75; +operation stats (ms/op):;avg op:;3.63;min op:;3.55;max op:;3.75; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_128_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0e ff ff 00 0f 00 c0 00 07 00 80 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;85.00;97.00;85.00;86.00;85.00; +baseline stats (ms):;avg:;87.60;min:;85.00;max:;97.00;;;CHECK +operation raw measurements (ms):;26.40;34.40;26.40;27.40;27.40; +operation stats (ms/op):;avg op:;5.68;min op:;5.28;max op:;6.88;;CHECK +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_128_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0e ff ff 00 0f 00 c0 00 07 01 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;372.00;82.00;83.00;85.00;83.00; +baseline stats (ms):;avg:;141.00;min:;82.00;max:;372.00;;;CHECK +operation raw measurements (ms):;-2.00;-2.00;-5.00;-5.00;-4.00; +operation stats (ms/op):;avg op:;-0.72;min op:;-1.00;max op:;-0.40; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_128_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0e ff ff 00 0f 00 c0 00 07 02 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;85.00;199.00;83.00;84.00;83.00; +baseline stats (ms):;avg:;106.80;min:;83.00;max:;199.00;;;CHECK +operation raw measurements (ms):;77.20;79.20;80.20;80.20;80.20; +operation stats (ms/op):;avg op:;15.88;min op:;15.44;max op:;16.04; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_128_ECB_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 0e ff ff 00 0f 00 c0 00 07 00 10 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;93.00;86.00;85.00;85.00;85.00; +baseline stats (ms):;avg:;86.80;min:;85.00;max:;93.00;;;CHECK +operation raw measurements (ms):;122.20;122.20;124.20;125.20;124.20; +operation stats (ms/op):;avg op:;24.72;min op:;24.44;max op:;25.04; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_128_ECB_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 0e ff ff 00 0f 00 c0 00 07 00 20 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;94.00;86.00;86.00;85.00;86.00; +baseline stats (ms):;avg:;87.40;min:;85.00;max:;94.00;;;CHECK +operation raw measurements (ms):;121.60;127.60;127.60;126.60;126.60; +operation stats (ms/op):;avg op:;25.20;min op:;24.32;max op:;25.52; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_128_ECB_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 0e ff ff 00 0f 00 c0 00 07 00 40 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;93.00;84.00;85.00;86.00;84.00; +baseline stats (ms):;avg:;86.40;min:;84.00;max:;93.00;;;CHECK +operation raw measurements (ms):;128.60;133.60;133.60;135.60;133.60; +operation stats (ms/op):;avg op:;26.60;min op:;25.72;max op:;27.12; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_128_ECB_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 0e ff ff 00 0f 00 c0 00 07 00 80 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;94.00;100.00;86.00;85.00;85.00; +baseline stats (ms):;avg:;90.00;min:;85.00;max:;100.00;;;CHECK +operation raw measurements (ms):;136.00;141.00;142.00;143.00;143.00; +operation stats (ms/op):;avg op:;28.20;min op:;27.20;max op:;28.60; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_128_ECB_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 0e ff ff 00 0f 00 c0 00 07 01 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;515.00;85.00;86.00;86.00;86.00; +baseline stats (ms):;avg:;171.60;min:;85.00;max:;515.00;;;CHECK +operation raw measurements (ms):;79.40;84.40;84.40;84.40;85.40; +operation stats (ms/op):;avg op:;16.72;min op:;15.88;max op:;17.08;;CHECK +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_128_ECB_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 0e ff ff 00 0f 00 c0 00 07 02 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;94.00;85.00;85.00;86.00;87.00; +baseline stats (ms):;avg:;87.40;min:;85.00;max:;94.00;;;CHECK +operation raw measurements (ms):;210.60;216.60;216.60;216.60;215.60; +operation stats (ms/op):;avg op:;43.04;min op:;42.12;max op:;43.32; +operation info:;data length;512;total iterations;25;total invocations;25; + + +CIPHER - TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_128_ECB_NOPAD - variable data - END + + +CIPHER - TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_192_CBC_NOPAD - variable data - BEGIN + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_192_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 12 ff ff 00 0f 00 c0 00 07 00 10 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_192_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 12 ff ff 00 0f 00 c0 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_192_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 12 ff ff 00 0f 00 c0 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_192_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 12 ff ff 00 0f 00 c0 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_192_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 12 ff ff 00 0f 00 c0 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_192_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 12 ff ff 00 0f 00 c0 00 07 02 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_192_CBC_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 12 ff ff 00 0f 00 c0 00 07 00 10 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_192_CBC_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 12 ff ff 00 0f 00 c0 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_192_CBC_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 12 ff ff 00 0f 00 c0 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_192_CBC_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 12 ff ff 00 0f 00 c0 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_192_CBC_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 12 ff ff 00 0f 00 c0 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_192_CBC_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 12 ff ff 00 0f 00 c0 00 07 02 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_192_CBC_NOPAD - variable data - END + + +CIPHER - TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_192_ECB_NOPAD - variable data - BEGIN + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_192_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 13 ff ff 00 0f 00 c0 00 07 00 10 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_192_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 13 ff ff 00 0f 00 c0 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_192_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 13 ff ff 00 0f 00 c0 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_192_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 13 ff ff 00 0f 00 c0 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_192_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 13 ff ff 00 0f 00 c0 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_192_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 13 ff ff 00 0f 00 c0 00 07 02 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_192_ECB_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 13 ff ff 00 0f 00 c0 00 07 00 10 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_192_ECB_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 13 ff ff 00 0f 00 c0 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_192_ECB_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 13 ff ff 00 0f 00 c0 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_192_ECB_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 13 ff ff 00 0f 00 c0 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_192_ECB_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 13 ff ff 00 0f 00 c0 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_192_ECB_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 13 ff ff 00 0f 00 c0 00 07 02 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_192_ECB_NOPAD - variable data - END + + +CIPHER - TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_256_CBC_NOPAD - variable data - BEGIN + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_256_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 14 ff ff 00 0f 00 c0 00 07 00 10 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_256_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 14 ff ff 00 0f 00 c0 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_256_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 14 ff ff 00 0f 00 c0 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_256_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 14 ff ff 00 0f 00 c0 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_256_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 14 ff ff 00 0f 00 c0 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_256_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 14 ff ff 00 0f 00 c0 00 07 02 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_256_CBC_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 14 ff ff 00 0f 00 c0 00 07 00 10 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_256_CBC_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 14 ff ff 00 0f 00 c0 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_256_CBC_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 14 ff ff 00 0f 00 c0 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_256_CBC_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 14 ff ff 00 0f 00 c0 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_256_CBC_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 14 ff ff 00 0f 00 c0 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_256_CBC_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 14 ff ff 00 0f 00 c0 00 07 02 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_256_CBC_NOPAD - variable data - END + + +CIPHER - TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_256_ECB_NOPAD - variable data - BEGIN + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_256_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 15 ff ff 00 0f 00 c0 00 07 00 10 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_256_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 15 ff ff 00 0f 00 c0 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_256_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 15 ff ff 00 0f 00 c0 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_256_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 15 ff ff 00 0f 00 c0 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_256_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 15 ff ff 00 0f 00 c0 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_256_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 15 ff ff 00 0f 00 c0 00 07 02 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_256_ECB_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 15 ff ff 00 0f 00 c0 00 07 00 10 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_256_ECB_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 15 ff ff 00 0f 00 c0 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_256_ECB_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 15 ff ff 00 0f 00 c0 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_256_ECB_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 15 ff ff 00 0f 00 c0 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_256_ECB_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 15 ff ff 00 0f 00 c0 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_256_ECB_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 15 ff ff 00 0f 00 c0 00 07 02 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_AES LENGTH_AES_192 ALG_AES_BLOCK_256_ECB_NOPAD - variable data - END + + +CIPHER - TYPE_AES LENGTH_AES_192 ALG_AES_CBC_ISO9797_M1 - variable data - BEGIN + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_CBC_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 16 ff ff 00 0f 00 c0 00 07 00 10 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_CBC_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 16 ff ff 00 0f 00 c0 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_CBC_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 16 ff ff 00 0f 00 c0 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_CBC_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 16 ff ff 00 0f 00 c0 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_CBC_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 16 ff ff 00 0f 00 c0 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_CBC_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 16 ff ff 00 0f 00 c0 00 07 02 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_CBC_ISO9797_M1 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 16 ff ff 00 0f 00 c0 00 07 00 10 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_CBC_ISO9797_M1 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 16 ff ff 00 0f 00 c0 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_CBC_ISO9797_M1 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 16 ff ff 00 0f 00 c0 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_CBC_ISO9797_M1 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 16 ff ff 00 0f 00 c0 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_CBC_ISO9797_M1 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 16 ff ff 00 0f 00 c0 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_CBC_ISO9797_M1 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 16 ff ff 00 0f 00 c0 00 07 02 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_AES LENGTH_AES_192 ALG_AES_CBC_ISO9797_M1 - variable data - END + + +CIPHER - TYPE_AES LENGTH_AES_192 ALG_AES_CBC_ISO9797_M2 - variable data - BEGIN + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_CBC_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 17 ff ff 00 0f 00 c0 00 07 00 10 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_CBC_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 17 ff ff 00 0f 00 c0 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_CBC_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 17 ff ff 00 0f 00 c0 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_CBC_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 17 ff ff 00 0f 00 c0 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_CBC_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 17 ff ff 00 0f 00 c0 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_CBC_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 17 ff ff 00 0f 00 c0 00 07 02 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_CBC_ISO9797_M2 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 17 ff ff 00 0f 00 c0 00 07 00 10 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_CBC_ISO9797_M2 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 17 ff ff 00 0f 00 c0 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_CBC_ISO9797_M2 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 17 ff ff 00 0f 00 c0 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_CBC_ISO9797_M2 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 17 ff ff 00 0f 00 c0 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_CBC_ISO9797_M2 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 17 ff ff 00 0f 00 c0 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_CBC_ISO9797_M2 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 17 ff ff 00 0f 00 c0 00 07 02 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_AES LENGTH_AES_192 ALG_AES_CBC_ISO9797_M2 - variable data - END + + +CIPHER - TYPE_AES LENGTH_AES_192 ALG_AES_CBC_PKCS5 - variable data - BEGIN + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_CBC_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 18 ff ff 00 0f 00 c0 00 07 00 10 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_CBC_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 18 ff ff 00 0f 00 c0 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_CBC_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 18 ff ff 00 0f 00 c0 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_CBC_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 18 ff ff 00 0f 00 c0 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_CBC_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 18 ff ff 00 0f 00 c0 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_CBC_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 18 ff ff 00 0f 00 c0 00 07 02 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_CBC_PKCS5 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 18 ff ff 00 0f 00 c0 00 07 00 10 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_CBC_PKCS5 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 18 ff ff 00 0f 00 c0 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_CBC_PKCS5 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 18 ff ff 00 0f 00 c0 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_CBC_PKCS5 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 18 ff ff 00 0f 00 c0 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_CBC_PKCS5 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 18 ff ff 00 0f 00 c0 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_CBC_PKCS5 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 18 ff ff 00 0f 00 c0 00 07 02 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_AES LENGTH_AES_192 ALG_AES_CBC_PKCS5 - variable data - END + + +CIPHER - TYPE_AES LENGTH_AES_192 ALG_AES_ECB_ISO9797_M1 - variable data - BEGIN + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_ECB_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 19 ff ff 00 0f 00 c0 00 07 00 10 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_ECB_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 19 ff ff 00 0f 00 c0 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_ECB_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 19 ff ff 00 0f 00 c0 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_ECB_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 19 ff ff 00 0f 00 c0 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_ECB_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 19 ff ff 00 0f 00 c0 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_ECB_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 19 ff ff 00 0f 00 c0 00 07 02 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_ECB_ISO9797_M1 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 19 ff ff 00 0f 00 c0 00 07 00 10 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_ECB_ISO9797_M1 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 19 ff ff 00 0f 00 c0 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_ECB_ISO9797_M1 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 19 ff ff 00 0f 00 c0 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_ECB_ISO9797_M1 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 19 ff ff 00 0f 00 c0 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_ECB_ISO9797_M1 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 19 ff ff 00 0f 00 c0 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_ECB_ISO9797_M1 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 19 ff ff 00 0f 00 c0 00 07 02 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_AES LENGTH_AES_192 ALG_AES_ECB_ISO9797_M1 - variable data - END + + +CIPHER - TYPE_AES LENGTH_AES_192 ALG_AES_ECB_ISO9797_M2 - variable data - BEGIN + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_ECB_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 1a ff ff 00 0f 00 c0 00 07 00 10 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_ECB_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 1a ff ff 00 0f 00 c0 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_ECB_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 1a ff ff 00 0f 00 c0 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_ECB_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 1a ff ff 00 0f 00 c0 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_ECB_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 1a ff ff 00 0f 00 c0 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_ECB_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 1a ff ff 00 0f 00 c0 00 07 02 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_ECB_ISO9797_M2 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 1a ff ff 00 0f 00 c0 00 07 00 10 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_ECB_ISO9797_M2 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 1a ff ff 00 0f 00 c0 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_ECB_ISO9797_M2 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 1a ff ff 00 0f 00 c0 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_ECB_ISO9797_M2 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 1a ff ff 00 0f 00 c0 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_ECB_ISO9797_M2 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 1a ff ff 00 0f 00 c0 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_ECB_ISO9797_M2 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 1a ff ff 00 0f 00 c0 00 07 02 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_AES LENGTH_AES_192 ALG_AES_ECB_ISO9797_M2 - variable data - END + + +CIPHER - TYPE_AES LENGTH_AES_192 ALG_AES_ECB_PKCS5 - variable data - BEGIN + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_ECB_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 1b ff ff 00 0f 00 c0 00 07 00 10 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_ECB_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 1b ff ff 00 0f 00 c0 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_ECB_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 1b ff ff 00 0f 00 c0 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_ECB_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 1b ff ff 00 0f 00 c0 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_ECB_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 1b ff ff 00 0f 00 c0 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_ECB_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 1b ff ff 00 0f 00 c0 00 07 02 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_ECB_PKCS5 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 1b ff ff 00 0f 00 c0 00 07 00 10 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_ECB_PKCS5 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 1b ff ff 00 0f 00 c0 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_ECB_PKCS5 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 1b ff ff 00 0f 00 c0 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_ECB_PKCS5 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 1b ff ff 00 0f 00 c0 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_ECB_PKCS5 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 1b ff ff 00 0f 00 c0 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_ECB_PKCS5 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 1b ff ff 00 0f 00 c0 00 07 02 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_AES LENGTH_AES_192 ALG_AES_ECB_PKCS5 - variable data - END + + +CIPHER - TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_128_CBC_NOPAD - variable data - BEGIN + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_128_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0d ff ff 00 0f 01 00 00 07 00 10 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;84.00;85.00;85.00;84.00;84.00; +baseline stats (ms):;avg:;84.40;min:;84.00;max:;85.00; +operation raw measurements (ms):;10.60;10.60;7.60;10.60;9.60; +operation stats (ms/op):;avg op:;1.96;min op:;1.52;max op:;2.12;;CHECK +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_128_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0d ff ff 00 0f 01 00 00 07 00 20 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;86.00;119.00;85.00;86.00;85.00; +baseline stats (ms):;avg:;92.20;min:;85.00;max:;119.00;;;CHECK +operation raw measurements (ms):;7.80;6.80;6.80;5.80;6.80; +operation stats (ms/op):;avg op:;1.36;min op:;1.16;max op:;1.56;;CHECK +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_128_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0d ff ff 00 0f 01 00 00 07 00 40 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;256.00;85.00;85.00;85.00;85.00; +baseline stats (ms):;avg:;119.20;min:;85.00;max:;256.00;;;CHECK +operation raw measurements (ms):;-12.20;-14.20;-14.20;-14.20;-14.20; +operation stats (ms/op):;avg op:;-2.76;min op:;-2.84;max op:;-2.44; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_128_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0d ff ff 00 0f 01 00 00 07 00 80 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;85.00;266.00;85.00;86.00;85.00; +baseline stats (ms):;avg:;121.40;min:;85.00;max:;266.00;;;CHECK +operation raw measurements (ms):;-1.40;-1.40;-1.40;-1.40;-1.40; +operation stats (ms/op):;avg op:;-0.28;min op:;-0.28;max op:;-0.28; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_128_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0d ff ff 00 0f 01 00 00 07 01 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;180.00;85.00;85.00;85.00;86.00; +baseline stats (ms):;avg:;104.20;min:;85.00;max:;180.00;;;CHECK +operation raw measurements (ms):;44.80;42.80;44.80;44.80;44.80; +operation stats (ms/op):;avg op:;8.88;min op:;8.56;max op:;8.96; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_128_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0d ff ff 00 0f 01 00 00 07 02 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;85.00;188.00;86.00;84.00;86.00; +baseline stats (ms):;avg:;105.80;min:;84.00;max:;188.00;;;CHECK +operation raw measurements (ms):;100.20;101.20;101.20;101.20;101.20; +operation stats (ms/op):;avg op:;20.20;min op:;20.04;max op:;20.24; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_128_CBC_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 0d ff ff 00 0f 01 00 00 07 00 10 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;94.00;85.00;86.00;84.00;85.00; +baseline stats (ms):;avg:;86.80;min:;84.00;max:;94.00;;;CHECK +operation raw measurements (ms):;119.20;125.20;125.20;125.20;122.20; +operation stats (ms/op):;avg op:;24.68;min op:;23.84;max op:;25.04; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_128_CBC_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 0d ff ff 00 0f 01 00 00 07 00 20 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;94.00;85.00;85.00;86.00;85.00; +baseline stats (ms):;avg:;87.00;min:;85.00;max:;94.00;;;CHECK +operation raw measurements (ms):;124.00;127.00;128.00;128.00;128.00; +operation stats (ms/op):;avg op:;25.40;min op:;24.80;max op:;25.60; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_128_CBC_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 0d ff ff 00 0f 01 00 00 07 00 40 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;93.00;85.00;307.00;86.00;85.00; +baseline stats (ms):;avg:;131.20;min:;85.00;max:;307.00;;;CHECK +operation raw measurements (ms):;84.80;91.80;91.80;91.80;90.80; +operation stats (ms/op):;avg op:;18.04;min op:;16.96;max op:;18.36;;CHECK +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_128_CBC_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 0d ff ff 00 0f 01 00 00 07 00 80 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;93.00;119.00;85.00;84.00;85.00; +baseline stats (ms):;avg:;93.20;min:;84.00;max:;119.00;;;CHECK +operation raw measurements (ms):;138.80;143.80;142.80;144.80;143.80; +operation stats (ms/op):;avg op:;28.56;min op:;27.76;max op:;28.96; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_128_CBC_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 0d ff ff 00 0f 01 00 00 07 01 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;522.00;85.00;86.00;86.00;85.00; +baseline stats (ms):;avg:;172.80;min:;85.00;max:;522.00;;;CHECK +operation raw measurements (ms):;87.20;93.20;93.20;93.20;93.20; +operation stats (ms/op):;avg op:;18.40;min op:;17.44;max op:;18.64;;CHECK +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_128_CBC_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 0d ff ff 00 0f 01 00 00 07 02 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;94.00;366.00;86.00;85.00;85.00; +baseline stats (ms):;avg:;143.20;min:;85.00;max:;366.00;;;CHECK +operation raw measurements (ms):;173.80;179.80;180.80;178.80;177.80; +operation stats (ms/op):;avg op:;35.64;min op:;34.76;max op:;36.16; +operation info:;data length;512;total iterations;25;total invocations;25; + + +CIPHER - TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_128_CBC_NOPAD - variable data - END + + +CIPHER - TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_128_ECB_NOPAD - variable data - BEGIN + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_128_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0e ff ff 00 0f 01 00 00 07 00 10 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;87.00;85.00;85.00;85.00;86.00; +baseline stats (ms):;avg:;85.60;min:;85.00;max:;87.00; +operation raw measurements (ms):;9.40;9.40;9.40;9.40;9.40; +operation stats (ms/op):;avg op:;1.88;min op:;1.88;max op:;1.88; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_128_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0e ff ff 00 0f 01 00 00 07 00 20 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;85.00;279.00;84.00;86.00;82.00; +baseline stats (ms):;avg:;123.20;min:;82.00;max:;279.00;;;CHECK +operation raw measurements (ms):;-26.20;-25.20;-25.20;-24.20;-25.20; +operation stats (ms/op):;avg op:;-5.04;min op:;-5.24;max op:;-4.84; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_128_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0e ff ff 00 0f 01 00 00 07 00 40 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;244.00;85.00;85.00;85.00;85.00; +baseline stats (ms):;avg:;116.80;min:;85.00;max:;244.00;;;CHECK +operation raw measurements (ms):;-12.80;-12.80;-10.80;-12.80;-11.80; +operation stats (ms/op):;avg op:;-2.44;min op:;-2.56;max op:;-2.16; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_128_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0e ff ff 00 0f 01 00 00 07 00 80 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;85.00;266.00;85.00;86.00;85.00; +baseline stats (ms):;avg:;121.40;min:;85.00;max:;266.00;;;CHECK +operation raw measurements (ms):;-2.40;-3.40;-3.40;-2.40;-2.40; +operation stats (ms/op):;avg op:;-0.56;min op:;-0.68;max op:;-0.48; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_128_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0e ff ff 00 0f 01 00 00 07 01 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;188.00;85.00;86.00;86.00;84.00; +baseline stats (ms):;avg:;105.80;min:;84.00;max:;188.00;;;CHECK +operation raw measurements (ms):;41.20;40.20;40.20;40.20;39.20; +operation stats (ms/op):;avg op:;8.04;min op:;7.84;max op:;8.24; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_128_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0e ff ff 00 0f 01 00 00 07 02 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;85.00;85.00;85.00;86.00;85.00; +baseline stats (ms):;avg:;85.20;min:;85.00;max:;86.00; +operation raw measurements (ms):;114.80;113.80;115.80;114.80;114.80; +operation stats (ms/op):;avg op:;22.96;min op:;22.76;max op:;23.16; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_128_ECB_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 0e ff ff 00 0f 01 00 00 07 00 10 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;94.00;86.00;85.00;86.00;84.00; +baseline stats (ms):;avg:;87.00;min:;84.00;max:;94.00;;;CHECK +operation raw measurements (ms):;118.00;124.00;125.00;124.00;124.00; +operation stats (ms/op):;avg op:;24.60;min op:;23.60;max op:;25.00; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_128_ECB_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 0e ff ff 00 0f 01 00 00 07 00 20 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;90.00;82.00;83.00;82.00;84.00; +baseline stats (ms):;avg:;84.20;min:;82.00;max:;90.00;;;CHECK +operation raw measurements (ms):;125.80;131.80;129.80;130.80;130.80; +operation stats (ms/op):;avg op:;25.96;min op:;25.16;max op:;26.36; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_128_ECB_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 0e ff ff 00 0f 01 00 00 07 00 40 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;93.00;85.00;85.00;86.00;85.00; +baseline stats (ms):;avg:;86.80;min:;85.00;max:;93.00;;;CHECK +operation raw measurements (ms):;127.20;134.20;136.20;135.20;135.20; +operation stats (ms/op):;avg op:;26.72;min op:;25.44;max op:;27.24; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_128_ECB_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 0e ff ff 00 0f 01 00 00 07 00 80 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;94.00;86.00;85.00;86.00;86.00; +baseline stats (ms):;avg:;87.40;min:;85.00;max:;94.00;;;CHECK +operation raw measurements (ms):;142.60;148.60;148.60;148.60;148.60; +operation stats (ms/op):;avg op:;29.48;min op:;28.52;max op:;29.72; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_128_ECB_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 0e ff ff 00 0f 01 00 00 07 01 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;94.00;85.00;85.00;86.00;85.00; +baseline stats (ms):;avg:;87.00;min:;85.00;max:;94.00;;;CHECK +operation raw measurements (ms):;170.00;176.00;176.00;176.00;176.00; +operation stats (ms/op):;avg op:;34.96;min op:;34.00;max op:;35.20; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_128_ECB_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 0e ff ff 00 0f 01 00 00 07 02 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;93.00;87.00;86.00;86.00;85.00; +baseline stats (ms):;avg:;87.40;min:;85.00;max:;93.00;;;CHECK +operation raw measurements (ms):;224.60;230.60;229.60;229.60;229.60; +operation stats (ms/op):;avg op:;45.76;min op:;44.92;max op:;46.12; +operation info:;data length;512;total iterations;25;total invocations;25; + + +CIPHER - TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_128_ECB_NOPAD - variable data - END + + +CIPHER - TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_192_CBC_NOPAD - variable data - BEGIN + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_192_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 12 ff ff 00 0f 01 00 00 07 00 10 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_192_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 12 ff ff 00 0f 01 00 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_192_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 12 ff ff 00 0f 01 00 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_192_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 12 ff ff 00 0f 01 00 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_192_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 12 ff ff 00 0f 01 00 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_192_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 12 ff ff 00 0f 01 00 00 07 02 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_192_CBC_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 12 ff ff 00 0f 01 00 00 07 00 10 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_192_CBC_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 12 ff ff 00 0f 01 00 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_192_CBC_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 12 ff ff 00 0f 01 00 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_192_CBC_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 12 ff ff 00 0f 01 00 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_192_CBC_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 12 ff ff 00 0f 01 00 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_192_CBC_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 12 ff ff 00 0f 01 00 00 07 02 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_192_CBC_NOPAD - variable data - END + + +CIPHER - TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_192_ECB_NOPAD - variable data - BEGIN + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_192_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 13 ff ff 00 0f 01 00 00 07 00 10 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_192_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 13 ff ff 00 0f 01 00 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_192_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 13 ff ff 00 0f 01 00 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_192_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 13 ff ff 00 0f 01 00 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_192_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 13 ff ff 00 0f 01 00 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_192_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 13 ff ff 00 0f 01 00 00 07 02 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_192_ECB_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 13 ff ff 00 0f 01 00 00 07 00 10 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_192_ECB_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 13 ff ff 00 0f 01 00 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_192_ECB_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 13 ff ff 00 0f 01 00 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_192_ECB_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 13 ff ff 00 0f 01 00 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_192_ECB_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 13 ff ff 00 0f 01 00 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_192_ECB_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 13 ff ff 00 0f 01 00 00 07 02 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_192_ECB_NOPAD - variable data - END + + +CIPHER - TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_256_CBC_NOPAD - variable data - BEGIN + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_256_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 14 ff ff 00 0f 01 00 00 07 00 10 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_256_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 14 ff ff 00 0f 01 00 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_256_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 14 ff ff 00 0f 01 00 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_256_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 14 ff ff 00 0f 01 00 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_256_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 14 ff ff 00 0f 01 00 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_256_CBC_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 14 ff ff 00 0f 01 00 00 07 02 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_256_CBC_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 14 ff ff 00 0f 01 00 00 07 00 10 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_256_CBC_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 14 ff ff 00 0f 01 00 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_256_CBC_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 14 ff ff 00 0f 01 00 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_256_CBC_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 14 ff ff 00 0f 01 00 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_256_CBC_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 14 ff ff 00 0f 01 00 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_256_CBC_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 14 ff ff 00 0f 01 00 00 07 02 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_256_CBC_NOPAD - variable data - END + + +CIPHER - TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_256_ECB_NOPAD - variable data - BEGIN + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_256_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 15 ff ff 00 0f 01 00 00 07 00 10 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_256_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 15 ff ff 00 0f 01 00 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_256_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 15 ff ff 00 0f 01 00 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_256_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 15 ff ff 00 0f 01 00 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_256_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 15 ff ff 00 0f 01 00 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_256_ECB_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 15 ff ff 00 0f 01 00 00 07 02 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_256_ECB_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 15 ff ff 00 0f 01 00 00 07 00 10 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_256_ECB_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 15 ff ff 00 0f 01 00 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_256_ECB_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 15 ff ff 00 0f 01 00 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_256_ECB_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 15 ff ff 00 0f 01 00 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_256_ECB_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 15 ff ff 00 0f 01 00 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_256_ECB_NOPAD Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 15 ff ff 00 0f 01 00 00 07 02 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_AES LENGTH_AES_256 ALG_AES_BLOCK_256_ECB_NOPAD - variable data - END + + +CIPHER - TYPE_AES LENGTH_AES_256 ALG_AES_CBC_ISO9797_M1 - variable data - BEGIN + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_CBC_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 16 ff ff 00 0f 01 00 00 07 00 10 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_CBC_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 16 ff ff 00 0f 01 00 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_CBC_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 16 ff ff 00 0f 01 00 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_CBC_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 16 ff ff 00 0f 01 00 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_CBC_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 16 ff ff 00 0f 01 00 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_CBC_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 16 ff ff 00 0f 01 00 00 07 02 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_CBC_ISO9797_M1 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 16 ff ff 00 0f 01 00 00 07 00 10 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_CBC_ISO9797_M1 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 16 ff ff 00 0f 01 00 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_CBC_ISO9797_M1 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 16 ff ff 00 0f 01 00 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_CBC_ISO9797_M1 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 16 ff ff 00 0f 01 00 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_CBC_ISO9797_M1 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 16 ff ff 00 0f 01 00 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_CBC_ISO9797_M1 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 16 ff ff 00 0f 01 00 00 07 02 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_AES LENGTH_AES_256 ALG_AES_CBC_ISO9797_M1 - variable data - END + + +CIPHER - TYPE_AES LENGTH_AES_256 ALG_AES_CBC_ISO9797_M2 - variable data - BEGIN + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_CBC_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 17 ff ff 00 0f 01 00 00 07 00 10 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_CBC_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 17 ff ff 00 0f 01 00 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_CBC_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 17 ff ff 00 0f 01 00 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_CBC_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 17 ff ff 00 0f 01 00 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_CBC_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 17 ff ff 00 0f 01 00 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_CBC_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 17 ff ff 00 0f 01 00 00 07 02 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_CBC_ISO9797_M2 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 17 ff ff 00 0f 01 00 00 07 00 10 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_CBC_ISO9797_M2 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 17 ff ff 00 0f 01 00 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_CBC_ISO9797_M2 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 17 ff ff 00 0f 01 00 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_CBC_ISO9797_M2 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 17 ff ff 00 0f 01 00 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_CBC_ISO9797_M2 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 17 ff ff 00 0f 01 00 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_CBC_ISO9797_M2 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 17 ff ff 00 0f 01 00 00 07 02 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_AES LENGTH_AES_256 ALG_AES_CBC_ISO9797_M2 - variable data - END + + +CIPHER - TYPE_AES LENGTH_AES_256 ALG_AES_CBC_PKCS5 - variable data - BEGIN + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_CBC_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 18 ff ff 00 0f 01 00 00 07 00 10 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_CBC_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 18 ff ff 00 0f 01 00 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_CBC_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 18 ff ff 00 0f 01 00 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_CBC_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 18 ff ff 00 0f 01 00 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_CBC_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 18 ff ff 00 0f 01 00 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_CBC_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 18 ff ff 00 0f 01 00 00 07 02 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_CBC_PKCS5 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 18 ff ff 00 0f 01 00 00 07 00 10 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_CBC_PKCS5 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 18 ff ff 00 0f 01 00 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_CBC_PKCS5 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 18 ff ff 00 0f 01 00 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_CBC_PKCS5 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 18 ff ff 00 0f 01 00 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_CBC_PKCS5 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 18 ff ff 00 0f 01 00 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_CBC_PKCS5 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 18 ff ff 00 0f 01 00 00 07 02 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_AES LENGTH_AES_256 ALG_AES_CBC_PKCS5 - variable data - END + + +CIPHER - TYPE_AES LENGTH_AES_256 ALG_AES_ECB_ISO9797_M1 - variable data - BEGIN + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_ECB_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 19 ff ff 00 0f 01 00 00 07 00 10 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_ECB_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 19 ff ff 00 0f 01 00 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_ECB_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 19 ff ff 00 0f 01 00 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_ECB_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 19 ff ff 00 0f 01 00 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_ECB_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 19 ff ff 00 0f 01 00 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_ECB_ISO9797_M1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 19 ff ff 00 0f 01 00 00 07 02 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_ECB_ISO9797_M1 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 19 ff ff 00 0f 01 00 00 07 00 10 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_ECB_ISO9797_M1 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 19 ff ff 00 0f 01 00 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_ECB_ISO9797_M1 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 19 ff ff 00 0f 01 00 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_ECB_ISO9797_M1 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 19 ff ff 00 0f 01 00 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_ECB_ISO9797_M1 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 19 ff ff 00 0f 01 00 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_ECB_ISO9797_M1 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 19 ff ff 00 0f 01 00 00 07 02 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_AES LENGTH_AES_256 ALG_AES_ECB_ISO9797_M1 - variable data - END + + +CIPHER - TYPE_AES LENGTH_AES_256 ALG_AES_ECB_ISO9797_M2 - variable data - BEGIN + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_ECB_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 1a ff ff 00 0f 01 00 00 07 00 10 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_ECB_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 1a ff ff 00 0f 01 00 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_ECB_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 1a ff ff 00 0f 01 00 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_ECB_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 1a ff ff 00 0f 01 00 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_ECB_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 1a ff ff 00 0f 01 00 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_ECB_ISO9797_M2 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 1a ff ff 00 0f 01 00 00 07 02 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_ECB_ISO9797_M2 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 1a ff ff 00 0f 01 00 00 07 00 10 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_ECB_ISO9797_M2 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 1a ff ff 00 0f 01 00 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_ECB_ISO9797_M2 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 1a ff ff 00 0f 01 00 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_ECB_ISO9797_M2 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 1a ff ff 00 0f 01 00 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_ECB_ISO9797_M2 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 1a ff ff 00 0f 01 00 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_ECB_ISO9797_M2 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 1a ff ff 00 0f 01 00 00 07 02 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_AES LENGTH_AES_256 ALG_AES_ECB_ISO9797_M2 - variable data - END + + +CIPHER - TYPE_AES LENGTH_AES_256 ALG_AES_ECB_PKCS5 - variable data - BEGIN + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_ECB_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 1b ff ff 00 0f 01 00 00 07 00 10 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_ECB_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 1b ff ff 00 0f 01 00 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_ECB_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 1b ff ff 00 0f 01 00 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_ECB_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 1b ff ff 00 0f 01 00 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_ECB_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 1b ff ff 00 0f 01 00 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_ECB_PKCS5 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 1b ff ff 00 0f 01 00 00 07 02 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_ECB_PKCS5 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 1b ff ff 00 0f 01 00 00 07 00 10 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_ECB_PKCS5 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 1b ff ff 00 0f 01 00 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_ECB_PKCS5 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 1b ff ff 00 0f 01 00 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_ECB_PKCS5 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 1b ff ff 00 0f 01 00 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_ECB_PKCS5 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 1b ff ff 00 0f 01 00 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_ECB_PKCS5 Cipher_setKeyInitDoFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;a3;config;00 11 00 1b ff ff 00 0f 01 00 00 07 02 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_AES LENGTH_AES_256 ALG_AES_ECB_PKCS5 - variable data - END + + +CIPHER - TYPE_RSA_PRIVATE LENGTH_RSA_512 ALG_RSA_ISO14888 - variable data - BEGIN + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_512 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 ff ff 00 05 02 00 00 07 00 20 ff ff 00 01 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_PRIVATE LENGTH_RSA_512 ALG_RSA_ISO9796 - variable data - BEGIN + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_512 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b ff ff 00 05 02 00 00 07 00 20 ff ff 00 01 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_PRIVATE LENGTH_RSA_512 ALG_RSA_NOPAD - variable data - BEGIN + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_512 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c ff ff 00 05 02 00 00 07 00 40 ff ff 00 01 00 05 00 01 +baseline measurements (ms):;101.00;99.00;100.00;102.00;100.00; +baseline stats (ms):;avg:;100.40;min:;99.00;max:;102.00; +operation raw measurements (ms):;467.60;466.60;470.60;460.60;465.60; +operation stats (ms/op):;avg op:;93.24;min op:;92.12;max op:;94.12; +operation info:;data length;64;total iterations;25;total invocations;25; + + +CIPHER - TYPE_RSA_PRIVATE LENGTH_RSA_512 ALG_RSA_PKCS1 - variable data - BEGIN + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_512 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a ff ff 00 05 02 00 00 07 00 20 ff ff 00 01 00 05 00 01 +baseline measurements (ms):;106.00;107.00;109.00;108.00;108.00; +baseline stats (ms):;avg:;107.60;min:;106.00;max:;109.00; +operation raw measurements (ms):;462.40;467.40;468.40;464.40;466.40; +operation stats (ms/op):;avg op:;93.16;min op:;92.48;max op:;93.68; +operation info:;data length;32;total iterations;25;total invocations;25; + + +CIPHER - TYPE_RSA_PRIVATE LENGTH_RSA_512 ALG_RSA_PKCS1_OAEP - variable data - BEGIN + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_512 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f ff ff 00 05 02 00 00 07 00 20 ff ff 00 01 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_PRIVATE LENGTH_RSA_736 ALG_RSA_ISO14888 - variable data - BEGIN + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_736 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 ff ff 00 05 02 e0 00 07 00 2e ff ff 00 01 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_PRIVATE LENGTH_RSA_736 ALG_RSA_ISO9796 - variable data - BEGIN + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_736 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b ff ff 00 05 02 e0 00 07 00 2e ff ff 00 01 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_PRIVATE LENGTH_RSA_736 ALG_RSA_NOPAD - variable data - BEGIN + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_736 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c ff ff 00 05 02 e0 00 07 00 5c ff ff 00 01 00 05 00 01 +baseline measurements (ms):;103.00;101.00;102.00;101.00;101.00; +baseline stats (ms):;avg:;101.60;min:;101.00;max:;103.00; +operation raw measurements (ms):;910.40;914.40;909.40;910.40;920.40; +operation stats (ms/op):;avg op:;182.60;min op:;181.88;max op:;184.08; +operation info:;data length;92;total iterations;25;total invocations;25; + + +CIPHER - TYPE_RSA_PRIVATE LENGTH_RSA_736 ALG_RSA_PKCS1 - variable data - BEGIN + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_736 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a ff ff 00 05 02 e0 00 07 00 2e ff ff 00 01 00 05 00 01 +baseline measurements (ms):;111.00;111.00;110.00;111.00;110.00; +baseline stats (ms):;avg:;110.60;min:;110.00;max:;111.00; +operation raw measurements (ms):;911.40;913.40;916.40;912.40;914.40; +operation stats (ms/op):;avg op:;182.72;min op:;182.28;max op:;183.28; +operation info:;data length;46;total iterations;25;total invocations;25; + + +CIPHER - TYPE_RSA_PRIVATE LENGTH_RSA_736 ALG_RSA_PKCS1_OAEP - variable data - BEGIN + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_736 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f ff ff 00 05 02 e0 00 07 00 2e ff ff 00 01 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_PRIVATE LENGTH_RSA_768 ALG_RSA_ISO14888 - variable data - BEGIN + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_768 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 ff ff 00 05 03 00 00 07 00 30 ff ff 00 01 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_PRIVATE LENGTH_RSA_768 ALG_RSA_ISO9796 - variable data - BEGIN + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_768 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b ff ff 00 05 03 00 00 07 00 30 ff ff 00 01 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_PRIVATE LENGTH_RSA_768 ALG_RSA_NOPAD - variable data - BEGIN + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_768 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c ff ff 00 05 03 00 00 07 00 60 ff ff 00 01 00 05 00 01 +baseline measurements (ms):;100.00;102.00;101.00;101.00;101.00; +baseline stats (ms):;avg:;101.25;min:;100.00;max:;102.00; +operation raw measurements (ms):;1027.75;1020.75;1015.75;1020.75;1026.75; +operation stats (ms/op):;avg op:;204.47;min op:;203.15;max op:;205.55; +operation info:;data length;96;total iterations;25;total invocations;25; + + +CIPHER - TYPE_RSA_PRIVATE LENGTH_RSA_768 ALG_RSA_PKCS1 - variable data - BEGIN + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_768 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a ff ff 00 05 03 00 00 07 00 30 ff ff 00 01 00 05 00 01 +baseline measurements (ms):;109.00;111.00;110.00;111.00;111.00; +baseline stats (ms):;avg:;110.75;min:;109.00;max:;111.00; +operation raw measurements (ms):;1016.25;1022.25;1026.25;1025.25;1022.25; +operation stats (ms/op):;avg op:;204.49;min op:;203.25;max op:;205.25; +operation info:;data length;48;total iterations;25;total invocations;25; + + +CIPHER - TYPE_RSA_PRIVATE LENGTH_RSA_768 ALG_RSA_PKCS1_OAEP - variable data - BEGIN + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_768 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f ff ff 00 05 03 00 00 07 00 30 ff ff 00 01 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_PRIVATE LENGTH_RSA_896 ALG_RSA_ISO14888 - variable data - BEGIN + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_896 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 ff ff 00 05 03 80 00 07 00 38 ff ff 00 01 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_PRIVATE LENGTH_RSA_896 ALG_RSA_ISO9796 - variable data - BEGIN + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_896 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b ff ff 00 05 03 80 00 07 00 38 ff ff 00 01 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_PRIVATE LENGTH_RSA_896 ALG_RSA_NOPAD - variable data - BEGIN + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_896 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c ff ff 00 05 03 80 00 07 00 70 ff ff 00 01 00 05 00 01 +baseline measurements (ms):;103.00;102.00;102.00;102.00;102.00; +baseline stats (ms):;avg:;102.20;min:;102.00;max:;103.00; +operation raw measurements (ms):;1494.80;1481.80;1482.80;1484.80;1484.80; +operation stats (ms/op):;avg op:;297.16;min op:;296.36;max op:;298.96; +operation info:;data length;112;total iterations;25;total invocations;25; + + +CIPHER - TYPE_RSA_PRIVATE LENGTH_RSA_896 ALG_RSA_PKCS1 - variable data - BEGIN + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_896 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a ff ff 00 05 03 80 00 07 00 38 ff ff 00 01 00 05 00 01 +baseline measurements (ms):;113.00;113.00;111.00;111.00;111.00; +baseline stats (ms):;avg:;111.80;min:;111.00;max:;113.00; +operation raw measurements (ms):;1484.20;1489.20;1480.20;1474.20;1476.20; +operation stats (ms/op):;avg op:;296.16;min op:;294.84;max op:;297.84; +operation info:;data length;56;total iterations;25;total invocations;25; + + +CIPHER - TYPE_RSA_PRIVATE LENGTH_RSA_896 ALG_RSA_PKCS1_OAEP - variable data - BEGIN + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_896 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f ff ff 00 05 03 80 00 07 00 38 ff ff 00 01 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_PRIVATE LENGTH_RSA_1024 ALG_RSA_ISO14888 - variable data - BEGIN + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1024 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 ff ff 00 05 04 00 00 07 00 40 ff ff 00 01 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_PRIVATE LENGTH_RSA_1024 ALG_RSA_ISO9796 - variable data - BEGIN + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1024 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b ff ff 00 05 04 00 00 07 00 40 ff ff 00 01 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_PRIVATE LENGTH_RSA_1024 ALG_RSA_NOPAD - variable data - BEGIN + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1024 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c ff ff 00 05 04 00 00 07 00 80 ff ff 00 01 00 05 00 01 +baseline measurements (ms):;101.00;102.00;103.00;102.00;102.00; +baseline stats (ms):;avg:;102.25;min:;101.00;max:;103.00; +operation raw measurements (ms):;2066.75;2068.75;2055.75;2071.75;2074.75; +operation stats (ms/op):;avg op:;413.51;min op:;411.15;max op:;414.95; +operation info:;data length;128;total iterations;25;total invocations;25; + + +CIPHER - TYPE_RSA_PRIVATE LENGTH_RSA_1024 ALG_RSA_PKCS1 - variable data - BEGIN + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1024 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a ff ff 00 05 04 00 00 07 00 40 ff ff 00 01 00 05 00 01 +baseline measurements (ms):;110.00;112.00;112.00;111.00;113.00; +baseline stats (ms):;avg:;111.60;min:;110.00;max:;113.00; +operation raw measurements (ms):;2045.40;2062.40;2060.40;2063.40;2055.40; +operation stats (ms/op):;avg op:;411.48;min op:;409.08;max op:;412.68; +operation info:;data length;64;total iterations;25;total invocations;25; + + +CIPHER - TYPE_RSA_PRIVATE LENGTH_RSA_1024 ALG_RSA_PKCS1_OAEP - variable data - BEGIN + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1024 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f ff ff 00 05 04 00 00 07 00 40 ff ff 00 01 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_PRIVATE LENGTH_RSA_1280 ALG_RSA_ISO14888 - variable data - BEGIN + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1280 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 ff ff 00 05 05 00 00 07 00 50 ff ff 00 01 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_PRIVATE LENGTH_RSA_1280 ALG_RSA_ISO9796 - variable data - BEGIN + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1280 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b ff ff 00 05 05 00 00 07 00 50 ff ff 00 01 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_PRIVATE LENGTH_RSA_1280 ALG_RSA_NOPAD - variable data - BEGIN + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1280 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c ff ff 00 05 05 00 00 07 00 a0 ff ff 00 01 00 05 00 01 +baseline measurements (ms):;104.00;103.00;103.00;104.00;103.00; +baseline stats (ms):;avg:;103.40;min:;103.00;max:;104.00; +operation raw measurements (ms):;3676.60;3677.60;3681.60;3684.60;3679.60; +operation stats (ms/op):;avg op:;736.00;min op:;735.32;max op:;736.92; +operation info:;data length;160;total iterations;25;total invocations;25; + + +CIPHER - TYPE_RSA_PRIVATE LENGTH_RSA_1280 ALG_RSA_PKCS1 - variable data - BEGIN + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1280 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a ff ff 00 05 05 00 00 07 00 50 ff ff 00 01 00 05 00 01 +baseline measurements (ms):;117.00;114.00;114.00;115.00;113.00; +baseline stats (ms):;avg:;114.60;min:;113.00;max:;117.00; +operation raw measurements (ms):;3677.40;3681.40;3675.40;3662.40;3668.40; +operation stats (ms/op):;avg op:;734.60;min op:;732.48;max op:;736.28; +operation info:;data length;80;total iterations;25;total invocations;25; + + +CIPHER - TYPE_RSA_PRIVATE LENGTH_RSA_1280 ALG_RSA_PKCS1_OAEP - variable data - BEGIN + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1280 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f ff ff 00 05 05 00 00 07 00 50 ff ff 00 01 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_PRIVATE LENGTH_RSA_1536 ALG_RSA_ISO14888 - variable data - BEGIN + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1536 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 ff ff 00 05 06 00 00 07 00 60 ff ff 00 01 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_PRIVATE LENGTH_RSA_1536 ALG_RSA_ISO9796 - variable data - BEGIN + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1536 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b ff ff 00 05 06 00 00 07 00 60 ff ff 00 01 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_PRIVATE LENGTH_RSA_1536 ALG_RSA_NOPAD - variable data - BEGIN + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1536 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c ff ff 00 05 06 00 00 07 00 c0 ff ff 00 01 00 05 00 01 +baseline measurements (ms):;106.00;105.00;105.00;104.00;104.00; +baseline stats (ms):;avg:;104.80;min:;104.00;max:;106.00; +operation raw measurements (ms):;5956.20;5985.20;5958.20;5948.20;5964.20; +operation stats (ms/op):;avg op:;1192.48;min op:;1189.64;max op:;1197.04; +operation info:;data length;192;total iterations;25;total invocations;25; + + +CIPHER - TYPE_RSA_PRIVATE LENGTH_RSA_1536 ALG_RSA_PKCS1 - variable data - BEGIN + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1536 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a ff ff 00 05 06 00 00 07 00 60 ff ff 00 01 00 05 00 01 +baseline measurements (ms):;118.00;117.00;115.00;116.00;116.00; +baseline stats (ms):;avg:;116.40;min:;115.00;max:;118.00; +operation raw measurements (ms):;5978.60;5994.60;5971.60;5947.60;5950.60; +operation stats (ms/op):;avg op:;1193.72;min op:;1189.52;max op:;1198.92; +operation info:;data length;96;total iterations;25;total invocations;25; + + +CIPHER - TYPE_RSA_PRIVATE LENGTH_RSA_1536 ALG_RSA_PKCS1_OAEP - variable data - BEGIN + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1536 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f ff ff 00 05 06 00 00 07 00 60 ff ff 00 01 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_PRIVATE LENGTH_RSA_1984 ALG_RSA_ISO14888 - variable data - BEGIN + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1984 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 ff ff 00 05 07 c0 00 07 00 7c ff ff 00 01 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_PRIVATE LENGTH_RSA_1984 ALG_RSA_ISO9796 - variable data - BEGIN + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1984 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b ff ff 00 05 07 c0 00 07 00 7c ff ff 00 01 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_PRIVATE LENGTH_RSA_1984 ALG_RSA_NOPAD - variable data - BEGIN + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1984 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c ff ff 00 05 07 c0 00 07 00 f8 ff ff 00 01 00 05 00 01 +baseline measurements (ms):;109.00;108.00;108.00;107.00;107.00; +baseline stats (ms):;avg:;107.80;min:;107.00;max:;109.00; +operation raw measurements (ms):;11976.20;12080.20;11995.20;12042.20;11990.20; +operation stats (ms/op):;avg op:;2403.36;min op:;2395.24;max op:;2416.04; +operation info:;data length;248;total iterations;25;total invocations;25; + + +CIPHER - TYPE_RSA_PRIVATE LENGTH_RSA_1984 ALG_RSA_PKCS1 - variable data - BEGIN + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1984 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a ff ff 00 05 07 c0 00 07 00 7c ff ff 00 01 00 05 00 01 +baseline measurements (ms):;125.00;121.00;121.00;121.00;122.00; +baseline stats (ms):;avg:;122.00;min:;121.00;max:;125.00; +operation raw measurements (ms):;12004.00;12037.00;11994.00;11988.00;12032.00; +operation stats (ms/op):;avg op:;2402.20;min op:;2397.60;max op:;2407.40; +operation info:;data length;124;total iterations;25;total invocations;25; + + +CIPHER - TYPE_RSA_PRIVATE LENGTH_RSA_1984 ALG_RSA_PKCS1_OAEP - variable data - BEGIN + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_1984 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f ff ff 00 05 07 c0 00 07 00 7c ff ff 00 01 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_PRIVATE LENGTH_RSA_2048 ALG_RSA_ISO14888 - variable data - BEGIN + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_2048 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 ff ff 00 05 08 00 00 07 00 80 ff ff 00 01 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_PRIVATE LENGTH_RSA_2048 ALG_RSA_ISO9796 - variable data - BEGIN + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_2048 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b ff ff 00 05 08 00 00 07 00 80 ff ff 00 01 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_PRIVATE LENGTH_RSA_2048 ALG_RSA_NOPAD - variable data - BEGIN + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_2048 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c ff ff 00 05 08 00 00 07 01 00 ff ff 00 01 00 05 00 01 +baseline measurements (ms):;109.00;109.00;109.00;109.00;110.00; +baseline stats (ms):;avg:;109.20;min:;109.00;max:;110.00; +operation raw measurements (ms):;13123.80;13116.80;13084.80;13141.80;13130.80; +operation stats (ms/op):;avg op:;2623.92;min op:;2616.96;max op:;2628.36; +operation info:;data length;256;total iterations;25;total invocations;25; + + +CIPHER - TYPE_RSA_PRIVATE LENGTH_RSA_2048 ALG_RSA_PKCS1 - variable data - BEGIN + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_2048 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a ff ff 00 05 08 00 00 07 00 80 ff ff 00 01 00 05 00 01 +baseline measurements (ms):;121.00;120.00;119.00;120.00;121.00; +baseline stats (ms):;avg:;120.20;min:;119.00;max:;121.00; +operation raw measurements (ms):;13093.80;13130.80;13148.80;13141.80;13146.80; +operation stats (ms/op):;avg op:;2626.48;min op:;2618.76;max op:;2629.76; +operation info:;data length;128;total iterations;25;total invocations;25; + + +CIPHER - TYPE_RSA_PRIVATE LENGTH_RSA_2048 ALG_RSA_PKCS1_OAEP - variable data - BEGIN + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_2048 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f ff ff 00 05 08 00 00 07 00 80 ff ff 00 01 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_PRIVATE LENGTH_RSA_3072 ALG_RSA_ISO14888 - variable data - BEGIN + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_3072 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 ff ff 00 05 0c 00 00 07 00 c0 ff ff 00 01 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_PRIVATE LENGTH_RSA_3072 ALG_RSA_ISO9796 - variable data - BEGIN + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_3072 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b ff ff 00 05 0c 00 00 07 00 c0 ff ff 00 01 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_PRIVATE LENGTH_RSA_3072 ALG_RSA_NOPAD - variable data - BEGIN + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_3072 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c ff ff 00 05 0c 00 00 07 01 80 ff ff 00 01 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_PRIVATE LENGTH_RSA_3072 ALG_RSA_PKCS1 - variable data - BEGIN + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_3072 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a ff ff 00 05 0c 00 00 07 00 c0 ff ff 00 01 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_PRIVATE LENGTH_RSA_3072 ALG_RSA_PKCS1_OAEP - variable data - BEGIN + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_3072 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f ff ff 00 05 0c 00 00 07 00 c0 ff ff 00 01 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_PRIVATE LENGTH_RSA_4096 ALG_RSA_ISO14888 - variable data - BEGIN + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_4096 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 ff ff 00 05 10 00 00 07 01 00 ff ff 00 01 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_PRIVATE LENGTH_RSA_4096 ALG_RSA_ISO9796 - variable data - BEGIN + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_4096 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b ff ff 00 05 10 00 00 07 01 00 ff ff 00 01 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_PRIVATE LENGTH_RSA_4096 ALG_RSA_NOPAD - variable data - BEGIN + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_4096 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c ff ff 00 05 10 00 00 07 02 00 ff ff 00 01 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_PRIVATE LENGTH_RSA_4096 ALG_RSA_PKCS1 - variable data - BEGIN + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_4096 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a ff ff 00 05 10 00 00 07 01 00 ff ff 00 01 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_PRIVATE LENGTH_RSA_4096 ALG_RSA_PKCS1_OAEP - variable data - BEGIN + +method name:; TYPE_RSA_PRIVATE LENGTH_RSA_4096 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f ff ff 00 05 10 00 00 07 01 00 ff ff 00 01 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_PUBLIC LENGTH_RSA_512 ALG_RSA_ISO14888 - variable data - BEGIN + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_512 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 00 01 00 04 02 00 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_PUBLIC LENGTH_RSA_512 ALG_RSA_ISO9796 - variable data - BEGIN + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_512 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b 00 01 00 04 02 00 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_PUBLIC LENGTH_RSA_512 ALG_RSA_NOPAD - variable data - BEGIN + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_512 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c 00 01 00 04 02 00 00 07 00 40 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;94.00;95.00;95.00;95.00;95.00; +baseline stats (ms):;avg:;95.00;min:;94.00;max:;95.00; +operation raw measurements (ms):;8.00;10.00;9.00;9.00;10.00; +operation stats (ms/op):;avg op:;1.84;min op:;1.60;max op:;2.00;;CHECK +operation info:;data length;64;total iterations;25;total invocations;25; + + +CIPHER - TYPE_RSA_PUBLIC LENGTH_RSA_512 ALG_RSA_PKCS1 - variable data - BEGIN + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_512 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a 00 01 00 04 02 00 00 07 00 20 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;93.00;96.00;95.00;95.00;94.00; +baseline stats (ms):;avg:;94.60;min:;93.00;max:;96.00; +operation raw measurements (ms):;41.40;42.40;41.40;42.40;42.40; +operation stats (ms/op):;avg op:;8.40;min op:;8.28;max op:;8.48; +operation info:;data length;32;total iterations;25;total invocations;25; + + +CIPHER - TYPE_RSA_PUBLIC LENGTH_RSA_512 ALG_RSA_PKCS1_OAEP - variable data - BEGIN + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_512 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f 00 01 00 04 02 00 00 07 00 20 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_PUBLIC LENGTH_RSA_736 ALG_RSA_ISO14888 - variable data - BEGIN + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_736 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 00 01 00 04 02 e0 00 07 00 2e ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_PUBLIC LENGTH_RSA_736 ALG_RSA_ISO9796 - variable data - BEGIN + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_736 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b 00 01 00 04 02 e0 00 07 00 2e ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_PUBLIC LENGTH_RSA_736 ALG_RSA_NOPAD - variable data - BEGIN + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_736 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c 00 01 00 04 02 e0 00 07 00 5c ff ff 00 02 00 05 00 01 +baseline measurements (ms):;97.00;95.00;95.00;94.00;96.00; +baseline stats (ms):;avg:;95.40;min:;94.00;max:;97.00; +operation raw measurements (ms):;12.60;11.60;12.60;11.60;12.60; +operation stats (ms/op):;avg op:;2.44;min op:;2.32;max op:;2.52; +operation info:;data length;92;total iterations;25;total invocations;25; + + +CIPHER - TYPE_RSA_PUBLIC LENGTH_RSA_736 ALG_RSA_PKCS1 - variable data - BEGIN + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_736 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a 00 01 00 04 02 e0 00 07 00 2e ff ff 00 02 00 05 00 01 +baseline measurements (ms):;97.00;97.00;95.00;94.00;96.00; +baseline stats (ms):;avg:;95.80;min:;94.00;max:;97.00; +operation raw measurements (ms):;57.20;56.20;58.20;56.20;56.20; +operation stats (ms/op):;avg op:;11.36;min op:;11.24;max op:;11.64; +operation info:;data length;46;total iterations;25;total invocations;25; + + +CIPHER - TYPE_RSA_PUBLIC LENGTH_RSA_736 ALG_RSA_PKCS1_OAEP - variable data - BEGIN + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_736 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f 00 01 00 04 02 e0 00 07 00 2e ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_PUBLIC LENGTH_RSA_768 ALG_RSA_ISO14888 - variable data - BEGIN + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_768 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 00 01 00 04 03 00 00 07 00 30 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_PUBLIC LENGTH_RSA_768 ALG_RSA_ISO9796 - variable data - BEGIN + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_768 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b 00 01 00 04 03 00 00 07 00 30 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_PUBLIC LENGTH_RSA_768 ALG_RSA_NOPAD - variable data - BEGIN + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_768 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c 00 01 00 04 03 00 00 07 00 60 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;93.00;95.00;95.00;96.00;95.00; +baseline stats (ms):;avg:;95.25;min:;93.00;max:;96.00; +operation raw measurements (ms):;12.75;12.75;12.75;11.75;13.75; +operation stats (ms/op):;avg op:;2.55;min op:;2.35;max op:;2.75;;CHECK +operation info:;data length;96;total iterations;25;total invocations;25; + + +CIPHER - TYPE_RSA_PUBLIC LENGTH_RSA_768 ALG_RSA_PKCS1 - variable data - BEGIN + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_768 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a 00 01 00 04 03 00 00 07 00 30 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;94.00;95.00;95.00;95.00;94.00; +baseline stats (ms):;avg:;94.60;min:;94.00;max:;95.00; +operation raw measurements (ms):;59.40;58.40;58.40;58.40;58.40; +operation stats (ms/op):;avg op:;11.72;min op:;11.68;max op:;11.88; +operation info:;data length;48;total iterations;25;total invocations;25; + + +CIPHER - TYPE_RSA_PUBLIC LENGTH_RSA_768 ALG_RSA_PKCS1_OAEP - variable data - BEGIN + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_768 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f 00 01 00 04 03 00 00 07 00 30 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_PUBLIC LENGTH_RSA_896 ALG_RSA_ISO14888 - variable data - BEGIN + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_896 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 00 01 00 04 03 80 00 07 00 38 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_PUBLIC LENGTH_RSA_896 ALG_RSA_ISO9796 - variable data - BEGIN + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_896 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b 00 01 00 04 03 80 00 07 00 38 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_PUBLIC LENGTH_RSA_896 ALG_RSA_NOPAD - variable data - BEGIN + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_896 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c 00 01 00 04 03 80 00 07 00 70 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;97.00;95.00;95.00;96.00;95.00; +baseline stats (ms):;avg:;95.60;min:;95.00;max:;97.00; +operation raw measurements (ms):;10.40;13.40;13.40;14.40;15.40; +operation stats (ms/op):;avg op:;2.68;min op:;2.08;max op:;3.08;;CHECK +operation info:;data length;112;total iterations;25;total invocations;25; + + +CIPHER - TYPE_RSA_PUBLIC LENGTH_RSA_896 ALG_RSA_PKCS1 - variable data - BEGIN + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_896 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a 00 01 00 04 03 80 00 07 00 38 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;97.00;95.00;95.00;95.00;95.00; +baseline stats (ms):;avg:;95.40;min:;95.00;max:;97.00; +operation raw measurements (ms):;59.60;59.60;60.60;60.60;60.60; +operation stats (ms/op):;avg op:;12.04;min op:;11.92;max op:;12.12; +operation info:;data length;56;total iterations;25;total invocations;25; + + +CIPHER - TYPE_RSA_PUBLIC LENGTH_RSA_896 ALG_RSA_PKCS1_OAEP - variable data - BEGIN + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_896 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f 00 01 00 04 03 80 00 07 00 38 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_PUBLIC LENGTH_RSA_1024 ALG_RSA_ISO14888 - variable data - BEGIN + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1024 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 00 01 00 04 04 00 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_PUBLIC LENGTH_RSA_1024 ALG_RSA_ISO9796 - variable data - BEGIN + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1024 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b 00 01 00 04 04 00 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_PUBLIC LENGTH_RSA_1024 ALG_RSA_NOPAD - variable data - BEGIN + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1024 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c 00 01 00 04 04 00 00 07 00 80 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;91.00;93.00;93.00;94.00;96.00; +baseline stats (ms):;avg:;93.40;min:;91.00;max:;96.00; +operation raw measurements (ms):;16.60;18.60;20.60;16.60;19.60; +operation stats (ms/op):;avg op:;3.68;min op:;3.32;max op:;4.12;;CHECK +operation info:;data length;128;total iterations;25;total invocations;25; + + +CIPHER - TYPE_RSA_PUBLIC LENGTH_RSA_1024 ALG_RSA_PKCS1 - variable data - BEGIN + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1024 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a 00 01 00 04 04 00 00 07 00 40 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;95.00;95.00;93.00;95.00;95.00; +baseline stats (ms):;avg:;95.00;min:;93.00;max:;95.00; +operation raw measurements (ms):;63.00;64.00;64.00;63.00;63.00; +operation stats (ms/op):;avg op:;12.68;min op:;12.60;max op:;12.80; +operation info:;data length;64;total iterations;25;total invocations;25; + + +CIPHER - TYPE_RSA_PUBLIC LENGTH_RSA_1024 ALG_RSA_PKCS1_OAEP - variable data - BEGIN + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1024 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f 00 01 00 04 04 00 00 07 00 40 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_PUBLIC LENGTH_RSA_1280 ALG_RSA_ISO14888 - variable data - BEGIN + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1280 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 00 01 00 04 05 00 00 07 00 50 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_PUBLIC LENGTH_RSA_1280 ALG_RSA_ISO9796 - variable data - BEGIN + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1280 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b 00 01 00 04 05 00 00 07 00 50 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_PUBLIC LENGTH_RSA_1280 ALG_RSA_NOPAD - variable data - BEGIN + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1280 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c 00 01 00 04 05 00 00 07 00 a0 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;96.00;95.00;96.00;95.00;95.00; +baseline stats (ms):;avg:;95.40;min:;95.00;max:;96.00; +operation raw measurements (ms):;21.60;21.60;22.60;20.60;21.60; +operation stats (ms/op):;avg op:;4.32;min op:;4.12;max op:;4.52; +operation info:;data length;160;total iterations;25;total invocations;25; + + +CIPHER - TYPE_RSA_PUBLIC LENGTH_RSA_1280 ALG_RSA_PKCS1 - variable data - BEGIN + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1280 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a 00 01 00 04 05 00 00 07 00 50 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;97.00;95.00;95.00;95.00;96.00; +baseline stats (ms):;avg:;95.60;min:;95.00;max:;97.00; +operation raw measurements (ms):;80.40;78.40;78.40;78.40;78.40; +operation stats (ms/op):;avg op:;15.76;min op:;15.68;max op:;16.08; +operation info:;data length;80;total iterations;25;total invocations;25; + + +CIPHER - TYPE_RSA_PUBLIC LENGTH_RSA_1280 ALG_RSA_PKCS1_OAEP - variable data - BEGIN + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1280 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f 00 01 00 04 05 00 00 07 00 50 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_PUBLIC LENGTH_RSA_1536 ALG_RSA_ISO14888 - variable data - BEGIN + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1536 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 00 01 00 04 06 00 00 07 00 60 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_PUBLIC LENGTH_RSA_1536 ALG_RSA_ISO9796 - variable data - BEGIN + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1536 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b 00 01 00 04 06 00 00 07 00 60 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_PUBLIC LENGTH_RSA_1536 ALG_RSA_NOPAD - variable data - BEGIN + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1536 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c 00 01 00 04 06 00 00 07 00 c0 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;97.00;95.00;96.00;95.00;96.00; +baseline stats (ms):;avg:;95.80;min:;95.00;max:;97.00; +operation raw measurements (ms):;27.20;28.20;28.20;28.20;28.20; +operation stats (ms/op):;avg op:;5.60;min op:;5.44;max op:;5.64; +operation info:;data length;192;total iterations;25;total invocations;25; + + +CIPHER - TYPE_RSA_PUBLIC LENGTH_RSA_1536 ALG_RSA_PKCS1 - variable data - BEGIN + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1536 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a 00 01 00 04 06 00 00 07 00 60 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;93.00;94.00;97.00;96.00;95.00; +baseline stats (ms):;avg:;95.00;min:;93.00;max:;97.00; +operation raw measurements (ms):;85.00;87.00;85.00;87.00;86.00; +operation stats (ms/op):;avg op:;17.20;min op:;17.00;max op:;17.40; +operation info:;data length;96;total iterations;25;total invocations;25; + + +CIPHER - TYPE_RSA_PUBLIC LENGTH_RSA_1536 ALG_RSA_PKCS1_OAEP - variable data - BEGIN + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1536 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f 00 01 00 04 06 00 00 07 00 60 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_PUBLIC LENGTH_RSA_1984 ALG_RSA_ISO14888 - variable data - BEGIN + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1984 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 00 01 00 04 07 c0 00 07 00 7c ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_PUBLIC LENGTH_RSA_1984 ALG_RSA_ISO9796 - variable data - BEGIN + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1984 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b 00 01 00 04 07 c0 00 07 00 7c ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_PUBLIC LENGTH_RSA_1984 ALG_RSA_NOPAD - variable data - BEGIN + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1984 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c 00 01 00 04 07 c0 00 07 00 f8 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;96.00;94.00;95.00;94.00;94.00; +baseline stats (ms):;avg:;94.60;min:;94.00;max:;96.00; +operation raw measurements (ms):;41.40;42.40;40.40;41.40;42.40; +operation stats (ms/op):;avg op:;8.32;min op:;8.08;max op:;8.48; +operation info:;data length;248;total iterations;25;total invocations;25; + + +CIPHER - TYPE_RSA_PUBLIC LENGTH_RSA_1984 ALG_RSA_PKCS1 - variable data - BEGIN + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1984 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a 00 01 00 04 07 c0 00 07 00 7c ff ff 00 02 00 05 00 01 +baseline measurements (ms):;96.00;94.00;94.00;95.00;95.00; +baseline stats (ms):;avg:;94.80;min:;94.00;max:;96.00; +operation raw measurements (ms):;111.20;109.20;110.20;110.20;109.20; +operation stats (ms/op):;avg op:;22.00;min op:;21.84;max op:;22.24; +operation info:;data length;124;total iterations;25;total invocations;25; + + +CIPHER - TYPE_RSA_PUBLIC LENGTH_RSA_1984 ALG_RSA_PKCS1_OAEP - variable data - BEGIN + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_1984 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f 00 01 00 04 07 c0 00 07 00 7c ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_PUBLIC LENGTH_RSA_2048 ALG_RSA_ISO14888 - variable data - BEGIN + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_2048 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 00 01 00 04 08 00 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_PUBLIC LENGTH_RSA_2048 ALG_RSA_ISO9796 - variable data - BEGIN + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_2048 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b 00 01 00 04 08 00 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_PUBLIC LENGTH_RSA_2048 ALG_RSA_NOPAD - variable data - BEGIN + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_2048 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c 00 01 00 04 08 00 00 07 01 00 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;97.00;96.00;96.00;96.00;96.00; +baseline stats (ms):;avg:;96.20;min:;96.00;max:;97.00; +operation raw measurements (ms):;43.80;43.80;42.80;44.80;44.80; +operation stats (ms/op):;avg op:;8.80;min op:;8.56;max op:;8.96; +operation info:;data length;256;total iterations;25;total invocations;25; + + +CIPHER - TYPE_RSA_PUBLIC LENGTH_RSA_2048 ALG_RSA_PKCS1 - variable data - BEGIN + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_2048 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a 00 01 00 04 08 00 00 07 00 80 ff ff 00 02 00 05 00 01 +baseline measurements (ms):;95.00;98.00;96.00;97.00;96.00; +baseline stats (ms):;avg:;96.40;min:;95.00;max:;98.00; +operation raw measurements (ms):;111.60;112.60;112.60;112.60;111.60; +operation stats (ms/op):;avg op:;22.44;min op:;22.32;max op:;22.52; +operation info:;data length;128;total iterations;25;total invocations;25; + + +CIPHER - TYPE_RSA_PUBLIC LENGTH_RSA_2048 ALG_RSA_PKCS1_OAEP - variable data - BEGIN + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_2048 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f 00 01 00 04 08 00 00 07 00 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_PUBLIC LENGTH_RSA_3072 ALG_RSA_ISO14888 - variable data - BEGIN + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_3072 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 00 01 00 04 0c 00 00 07 00 c0 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_PUBLIC LENGTH_RSA_3072 ALG_RSA_ISO9796 - variable data - BEGIN + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_3072 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b 00 01 00 04 0c 00 00 07 00 c0 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_PUBLIC LENGTH_RSA_3072 ALG_RSA_NOPAD - variable data - BEGIN + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_3072 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c 00 01 00 04 0c 00 00 07 01 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_PUBLIC LENGTH_RSA_3072 ALG_RSA_PKCS1 - variable data - BEGIN + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_3072 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a 00 01 00 04 0c 00 00 07 00 c0 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_PUBLIC LENGTH_RSA_3072 ALG_RSA_PKCS1_OAEP - variable data - BEGIN + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_3072 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f 00 01 00 04 0c 00 00 07 00 c0 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_PUBLIC LENGTH_RSA_4096 ALG_RSA_ISO14888 - variable data - BEGIN + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_4096 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 00 01 00 04 10 00 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_PUBLIC LENGTH_RSA_4096 ALG_RSA_ISO9796 - variable data - BEGIN + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_4096 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b 00 01 00 04 10 00 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_PUBLIC LENGTH_RSA_4096 ALG_RSA_NOPAD - variable data - BEGIN + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_4096 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c 00 01 00 04 10 00 00 07 02 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_PUBLIC LENGTH_RSA_4096 ALG_RSA_PKCS1 - variable data - BEGIN + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_4096 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a 00 01 00 04 10 00 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_PUBLIC LENGTH_RSA_4096 ALG_RSA_PKCS1_OAEP - variable data - BEGIN + +method name:; TYPE_RSA_PUBLIC LENGTH_RSA_4096 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f 00 01 00 04 10 00 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_CRT_PRIVATE LENGTH_RSA_512 ALG_RSA_ISO14888 - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_512 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 ff ff 00 06 02 00 00 07 00 20 ff ff 00 01 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_CRT_PRIVATE LENGTH_RSA_512 ALG_RSA_ISO9796 - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_512 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b ff ff 00 06 02 00 00 07 00 20 ff ff 00 01 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_CRT_PRIVATE LENGTH_RSA_512 ALG_RSA_NOPAD - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_512 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c ff ff 00 06 02 00 00 07 00 40 ff ff 00 01 00 05 00 01 +baseline measurements (ms):;102.00;101.00;101.00;100.00;101.00; +baseline stats (ms):;avg:;101.25;min:;100.00;max:;102.00; +operation raw measurements (ms):;220.75;222.75;219.75;219.75;220.75; +operation stats (ms/op):;avg op:;44.15;min op:;43.95;max op:;44.55; +operation info:;data length;64;total iterations;25;total invocations;25; + + +CIPHER - TYPE_RSA_CRT_PRIVATE LENGTH_RSA_512 ALG_RSA_PKCS1 - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_512 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a ff ff 00 06 02 00 00 07 00 20 ff ff 00 01 00 05 00 01 +baseline measurements (ms):;105.00;103.00;103.00;107.00;108.00; +baseline stats (ms):;avg:;105.20;min:;103.00;max:;108.00; +operation raw measurements (ms):;223.80;221.80;219.80;222.80;223.80; +operation stats (ms/op):;avg op:;44.48;min op:;43.96;max op:;44.76; +operation info:;data length;32;total iterations;25;total invocations;25; + + +CIPHER - TYPE_RSA_CRT_PRIVATE LENGTH_RSA_512 ALG_RSA_PKCS1_OAEP - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_512 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f ff ff 00 06 02 00 00 07 00 20 ff ff 00 01 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_CRT_PRIVATE LENGTH_RSA_736 ALG_RSA_ISO14888 - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_736 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 ff ff 00 06 02 e0 00 07 00 2e ff ff 00 01 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_CRT_PRIVATE LENGTH_RSA_736 ALG_RSA_ISO9796 - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_736 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b ff ff 00 06 02 e0 00 07 00 2e ff ff 00 01 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_CRT_PRIVATE LENGTH_RSA_736 ALG_RSA_NOPAD - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_736 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c ff ff 00 06 02 e0 00 07 00 5c ff ff 00 01 00 05 00 01 +baseline measurements (ms):;102.00;101.00;102.00;101.00;100.00; +baseline stats (ms):;avg:;101.20;min:;100.00;max:;102.00; +operation raw measurements (ms):;335.80;336.80;334.80;338.80;334.80; +operation stats (ms/op):;avg op:;67.24;min op:;66.96;max op:;67.76; +operation info:;data length;92;total iterations;25;total invocations;25; + + +CIPHER - TYPE_RSA_CRT_PRIVATE LENGTH_RSA_736 ALG_RSA_PKCS1 - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_736 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a ff ff 00 06 02 e0 00 07 00 2e ff ff 00 01 00 05 00 01 +baseline measurements (ms):;111.00;110.00;109.00;110.00;111.00; +baseline stats (ms):;avg:;110.20;min:;109.00;max:;111.00; +operation raw measurements (ms):;336.80;334.80;333.80;333.80;335.80; +operation stats (ms/op):;avg op:;67.00;min op:;66.76;max op:;67.36; +operation info:;data length;46;total iterations;25;total invocations;25; + + +CIPHER - TYPE_RSA_CRT_PRIVATE LENGTH_RSA_736 ALG_RSA_PKCS1_OAEP - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_736 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f ff ff 00 06 02 e0 00 07 00 2e ff ff 00 01 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_CRT_PRIVATE LENGTH_RSA_768 ALG_RSA_ISO14888 - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_768 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 ff ff 00 06 03 00 00 07 00 30 ff ff 00 01 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_CRT_PRIVATE LENGTH_RSA_768 ALG_RSA_ISO9796 - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_768 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b ff ff 00 06 03 00 00 07 00 30 ff ff 00 01 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_CRT_PRIVATE LENGTH_RSA_768 ALG_RSA_NOPAD - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_768 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c ff ff 00 06 03 00 00 07 00 60 ff ff 00 01 00 05 00 01 +baseline measurements (ms):;103.00;102.00;102.00;102.00;101.00; +baseline stats (ms):;avg:;102.25;min:;101.00;max:;103.00; +operation raw measurements (ms):;337.75;339.75;340.75;338.75;341.75; +operation stats (ms/op):;avg op:;67.95;min op:;67.55;max op:;68.35; +operation info:;data length;96;total iterations;25;total invocations;25; + + +CIPHER - TYPE_RSA_CRT_PRIVATE LENGTH_RSA_768 ALG_RSA_PKCS1 - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_768 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a ff ff 00 06 03 00 00 07 00 30 ff ff 00 01 00 05 00 01 +baseline measurements (ms):;112.00;111.00;112.00;110.00;110.00; +baseline stats (ms):;avg:;111.00;min:;110.00;max:;112.00; +operation raw measurements (ms):;342.00;343.00;339.00;338.00;342.00; +operation stats (ms/op):;avg op:;68.16;min op:;67.60;max op:;68.60; +operation info:;data length;48;total iterations;25;total invocations;25; + + +CIPHER - TYPE_RSA_CRT_PRIVATE LENGTH_RSA_768 ALG_RSA_PKCS1_OAEP - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_768 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f ff ff 00 06 03 00 00 07 00 30 ff ff 00 01 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_CRT_PRIVATE LENGTH_RSA_896 ALG_RSA_ISO14888 - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_896 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 ff ff 00 06 03 80 00 07 00 38 ff ff 00 01 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_CRT_PRIVATE LENGTH_RSA_896 ALG_RSA_ISO9796 - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_896 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b ff ff 00 06 03 80 00 07 00 38 ff ff 00 01 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_CRT_PRIVATE LENGTH_RSA_896 ALG_RSA_NOPAD - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_896 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c ff ff 00 06 03 80 00 07 00 70 ff ff 00 01 00 05 00 01 +baseline measurements (ms):;103.00;100.00;102.00;101.00;101.00; +baseline stats (ms):;avg:;101.40;min:;100.00;max:;103.00; +operation raw measurements (ms):;425.60;426.60;425.60;428.60;428.60; +operation stats (ms/op):;avg op:;85.40;min op:;85.12;max op:;85.72; +operation info:;data length;112;total iterations;25;total invocations;25; + + +CIPHER - TYPE_RSA_CRT_PRIVATE LENGTH_RSA_896 ALG_RSA_PKCS1 - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_896 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a ff ff 00 06 03 80 00 07 00 38 ff ff 00 01 00 05 00 01 +baseline measurements (ms):;112.00;111.00;111.00;111.00;111.00; +baseline stats (ms):;avg:;111.20;min:;111.00;max:;112.00; +operation raw measurements (ms):;421.80;427.80;422.80;426.80;427.80; +operation stats (ms/op):;avg op:;85.08;min op:;84.36;max op:;85.56; +operation info:;data length;56;total iterations;25;total invocations;25; + + +CIPHER - TYPE_RSA_CRT_PRIVATE LENGTH_RSA_896 ALG_RSA_PKCS1_OAEP - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_896 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f ff ff 00 06 03 80 00 07 00 38 ff ff 00 01 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1024 ALG_RSA_ISO14888 - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1024 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 ff ff 00 06 04 00 00 07 00 40 ff ff 00 01 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1024 ALG_RSA_ISO9796 - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1024 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b ff ff 00 06 04 00 00 07 00 40 ff ff 00 01 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1024 ALG_RSA_NOPAD - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1024 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c ff ff 00 06 04 00 00 07 00 80 ff ff 00 01 00 05 00 01 +baseline measurements (ms):;103.00;101.00;102.00;102.00;101.00; +baseline stats (ms):;avg:;101.80;min:;101.00;max:;103.00; +operation raw measurements (ms):;526.20;528.20;526.20;525.20;526.20; +operation stats (ms/op):;avg op:;105.28;min op:;105.04;max op:;105.64; +operation info:;data length;128;total iterations;25;total invocations;25; + + +CIPHER - TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1024 ALG_RSA_PKCS1 - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1024 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a ff ff 00 06 04 00 00 07 00 40 ff ff 00 01 00 05 00 01 +baseline measurements (ms):;113.00;111.00;112.00;111.00;111.00; +baseline stats (ms):;avg:;111.60;min:;111.00;max:;113.00; +operation raw measurements (ms):;528.40;528.40;523.40;535.40;526.40; +operation stats (ms/op):;avg op:;105.68;min op:;104.68;max op:;107.08; +operation info:;data length;64;total iterations;25;total invocations;25; + + +CIPHER - TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1024 ALG_RSA_PKCS1_OAEP - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1024 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f ff ff 00 06 04 00 00 07 00 40 ff ff 00 01 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1280 ALG_RSA_ISO14888 - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1280 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 ff ff 00 06 05 00 00 07 00 50 ff ff 00 01 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1280 ALG_RSA_ISO9796 - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1280 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b ff ff 00 06 05 00 00 07 00 50 ff ff 00 01 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1280 ALG_RSA_NOPAD - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1280 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c ff ff 00 06 05 00 00 07 00 a0 ff ff 00 01 00 05 00 01 +baseline measurements (ms):;110.00;108.00;108.00;109.00;107.00; +baseline stats (ms):;avg:;108.40;min:;107.00;max:;110.00; +operation raw measurements (ms):;780.60;778.60;774.60;775.60;780.60; +operation stats (ms/op):;avg op:;155.60;min op:;154.92;max op:;156.12; +operation info:;data length;160;total iterations;25;total invocations;25; + + +CIPHER - TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1280 ALG_RSA_PKCS1 - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1280 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a ff ff 00 06 05 00 00 07 00 50 ff ff 00 01 00 05 00 01 +baseline measurements (ms):;119.00;122.00;120.00;119.00;119.00; +baseline stats (ms):;avg:;119.80;min:;119.00;max:;122.00; +operation raw measurements (ms):;776.20;780.20;776.20;782.20;781.20; +operation stats (ms/op):;avg op:;155.84;min op:;155.24;max op:;156.44; +operation info:;data length;80;total iterations;25;total invocations;25; + + +CIPHER - TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1280 ALG_RSA_PKCS1_OAEP - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1280 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f ff ff 00 06 05 00 00 07 00 50 ff ff 00 01 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1536 ALG_RSA_ISO14888 - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1536 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 ff ff 00 06 06 00 00 07 00 60 ff ff 00 01 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1536 ALG_RSA_ISO9796 - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1536 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b ff ff 00 06 06 00 00 07 00 60 ff ff 00 01 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1536 ALG_RSA_NOPAD - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1536 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c ff ff 00 06 06 00 00 07 00 c0 ff ff 00 01 00 05 00 01 +baseline measurements (ms):;105.00;106.00;106.00;106.00;106.00; +baseline stats (ms):;avg:;106.00;min:;105.00;max:;106.00; +operation raw measurements (ms):;1114.00;1114.00;1108.00;1115.00;1107.00; +operation stats (ms/op):;avg op:;222.32;min op:;221.40;max op:;223.00; +operation info:;data length;192;total iterations;25;total invocations;25; + + +CIPHER - TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1536 ALG_RSA_PKCS1 - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1536 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a ff ff 00 06 06 00 00 07 00 60 ff ff 00 01 00 05 00 01 +baseline measurements (ms):;118.00;117.00;116.00;117.00;118.00; +baseline stats (ms):;avg:;117.20;min:;116.00;max:;118.00; +operation raw measurements (ms):;1109.80;1114.80;1117.80;1109.80;1111.80; +operation stats (ms/op):;avg op:;222.56;min op:;221.96;max op:;223.56; +operation info:;data length;96;total iterations;25;total invocations;25; + + +CIPHER - TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1536 ALG_RSA_PKCS1_OAEP - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1536 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f ff ff 00 06 06 00 00 07 00 60 ff ff 00 01 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1984 ALG_RSA_ISO14888 - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1984 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 ff ff 00 06 07 c0 00 07 00 7c ff ff 00 01 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1984 ALG_RSA_ISO9796 - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1984 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b ff ff 00 06 07 c0 00 07 00 7c ff ff 00 01 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1984 ALG_RSA_NOPAD - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1984 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c ff ff 00 06 07 c0 00 07 00 f8 ff ff 00 01 00 05 00 01 +baseline measurements (ms):;110.00;108.00;105.00;111.00;108.00; +baseline stats (ms):;avg:;108.40;min:;105.00;max:;111.00; +operation raw measurements (ms):;1995.60;1991.60;1992.60;1993.60;1991.60; +operation stats (ms/op):;avg op:;398.60;min op:;398.32;max op:;399.12; +operation info:;data length;248;total iterations;25;total invocations;25; + + +CIPHER - TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1984 ALG_RSA_PKCS1 - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1984 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a ff ff 00 06 07 c0 00 07 00 7c ff ff 00 01 00 05 00 01 +baseline measurements (ms):;122.00;122.00;121.00;121.00;121.00; +baseline stats (ms):;avg:;121.40;min:;121.00;max:;122.00; +operation raw measurements (ms):;1988.60;1989.60;1991.60;1981.60;1998.60; +operation stats (ms/op):;avg op:;398.00;min op:;396.32;max op:;399.72; +operation info:;data length;124;total iterations;25;total invocations;25; + + +CIPHER - TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1984 ALG_RSA_PKCS1_OAEP - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_1984 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f ff ff 00 06 07 c0 00 07 00 7c ff ff 00 01 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_CRT_PRIVATE LENGTH_RSA_2048 ALG_RSA_ISO14888 - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_2048 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 ff ff 00 06 08 00 00 07 00 80 ff ff 00 01 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_CRT_PRIVATE LENGTH_RSA_2048 ALG_RSA_ISO9796 - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_2048 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b ff ff 00 06 08 00 00 07 00 80 ff ff 00 01 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_CRT_PRIVATE LENGTH_RSA_2048 ALG_RSA_NOPAD - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_2048 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c ff ff 00 06 08 00 00 07 01 00 ff ff 00 01 00 05 00 01 +baseline measurements (ms):;105.00;109.00;105.00;106.00;105.00; +baseline stats (ms):;avg:;106.00;min:;105.00;max:;109.00; +operation raw measurements (ms):;2192.00;2191.00;2198.00;2190.00;2200.00; +operation stats (ms/op):;avg op:;438.84;min op:;438.00;max op:;440.00; +operation info:;data length;256;total iterations;25;total invocations;25; + + +CIPHER - TYPE_RSA_CRT_PRIVATE LENGTH_RSA_2048 ALG_RSA_PKCS1 - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_2048 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a ff ff 00 06 08 00 00 07 00 80 ff ff 00 01 00 05 00 01 +baseline measurements (ms):;119.00;119.00;119.00;118.00;119.00; +baseline stats (ms):;avg:;119.00;min:;118.00;max:;119.00; +operation raw measurements (ms):;2195.00;2202.00;2194.00;2200.00;2215.00; +operation stats (ms/op):;avg op:;440.24;min op:;438.80;max op:;443.00; +operation info:;data length;128;total iterations;25;total invocations;25; + + +CIPHER - TYPE_RSA_CRT_PRIVATE LENGTH_RSA_2048 ALG_RSA_PKCS1_OAEP - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_2048 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f ff ff 00 06 08 00 00 07 00 80 ff ff 00 01 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_CRT_PRIVATE LENGTH_RSA_3072 ALG_RSA_ISO14888 - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_3072 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 ff ff 00 06 0c 00 00 07 00 c0 ff ff 00 01 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_CRT_PRIVATE LENGTH_RSA_3072 ALG_RSA_ISO9796 - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_3072 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b ff ff 00 06 0c 00 00 07 00 c0 ff ff 00 01 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_CRT_PRIVATE LENGTH_RSA_3072 ALG_RSA_NOPAD - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_3072 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c ff ff 00 06 0c 00 00 07 01 80 ff ff 00 01 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_CRT_PRIVATE LENGTH_RSA_3072 ALG_RSA_PKCS1 - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_3072 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a ff ff 00 06 0c 00 00 07 00 c0 ff ff 00 01 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_CRT_PRIVATE LENGTH_RSA_3072 ALG_RSA_PKCS1_OAEP - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_3072 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f ff ff 00 06 0c 00 00 07 00 c0 ff ff 00 01 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_CRT_PRIVATE LENGTH_RSA_4096 ALG_RSA_ISO14888 - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_4096 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 ff ff 00 06 10 00 00 07 01 00 ff ff 00 01 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_CRT_PRIVATE LENGTH_RSA_4096 ALG_RSA_ISO9796 - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_4096 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b ff ff 00 06 10 00 00 07 01 00 ff ff 00 01 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_CRT_PRIVATE LENGTH_RSA_4096 ALG_RSA_NOPAD - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_4096 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c ff ff 00 06 10 00 00 07 02 00 ff ff 00 01 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_CRT_PRIVATE LENGTH_RSA_4096 ALG_RSA_PKCS1 - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_4096 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a ff ff 00 06 10 00 00 07 01 00 ff ff 00 01 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_CRT_PRIVATE LENGTH_RSA_4096 ALG_RSA_PKCS1_OAEP - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PRIVATE LENGTH_RSA_4096 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f ff ff 00 06 10 00 00 07 01 00 ff ff 00 01 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_CRT_PUBLIC LENGTH_RSA_512 ALG_RSA_ISO14888 - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_512 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 00 02 00 04 02 00 00 07 00 20 ff ff 00 02 00 05 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + + +CIPHER - TYPE_RSA_CRT_PUBLIC LENGTH_RSA_512 ALG_RSA_ISO9796 - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_512 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b 00 02 00 04 02 00 00 07 00 20 ff ff 00 02 00 05 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + + +CIPHER - TYPE_RSA_CRT_PUBLIC LENGTH_RSA_512 ALG_RSA_NOPAD - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_512 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c 00 02 00 04 02 00 00 07 00 40 ff ff 00 02 00 05 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + + +CIPHER - TYPE_RSA_CRT_PUBLIC LENGTH_RSA_512 ALG_RSA_PKCS1 - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_512 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a 00 02 00 04 02 00 00 07 00 20 ff ff 00 02 00 05 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + + +CIPHER - TYPE_RSA_CRT_PUBLIC LENGTH_RSA_512 ALG_RSA_PKCS1_OAEP - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_512 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f 00 02 00 04 02 00 00 07 00 20 ff ff 00 02 00 05 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + + +CIPHER - TYPE_RSA_CRT_PUBLIC LENGTH_RSA_736 ALG_RSA_ISO14888 - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_736 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 00 02 00 04 02 e0 00 07 00 2e ff ff 00 02 00 05 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + + +CIPHER - TYPE_RSA_CRT_PUBLIC LENGTH_RSA_736 ALG_RSA_ISO9796 - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_736 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b 00 02 00 04 02 e0 00 07 00 2e ff ff 00 02 00 05 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + + +CIPHER - TYPE_RSA_CRT_PUBLIC LENGTH_RSA_736 ALG_RSA_NOPAD - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_736 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c 00 02 00 04 02 e0 00 07 00 5c ff ff 00 02 00 05 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + + +CIPHER - TYPE_RSA_CRT_PUBLIC LENGTH_RSA_736 ALG_RSA_PKCS1 - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_736 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a 00 02 00 04 02 e0 00 07 00 2e ff ff 00 02 00 05 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + + +CIPHER - TYPE_RSA_CRT_PUBLIC LENGTH_RSA_736 ALG_RSA_PKCS1_OAEP - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_736 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f 00 02 00 04 02 e0 00 07 00 2e ff ff 00 02 00 05 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + + +CIPHER - TYPE_RSA_CRT_PUBLIC LENGTH_RSA_768 ALG_RSA_ISO14888 - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_768 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 00 02 00 04 03 00 00 07 00 30 ff ff 00 02 00 05 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + + +CIPHER - TYPE_RSA_CRT_PUBLIC LENGTH_RSA_768 ALG_RSA_ISO9796 - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_768 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b 00 02 00 04 03 00 00 07 00 30 ff ff 00 02 00 05 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + + +CIPHER - TYPE_RSA_CRT_PUBLIC LENGTH_RSA_768 ALG_RSA_NOPAD - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_768 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c 00 02 00 04 03 00 00 07 00 60 ff ff 00 02 00 05 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + + +CIPHER - TYPE_RSA_CRT_PUBLIC LENGTH_RSA_768 ALG_RSA_PKCS1 - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_768 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a 00 02 00 04 03 00 00 07 00 30 ff ff 00 02 00 05 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + + +CIPHER - TYPE_RSA_CRT_PUBLIC LENGTH_RSA_768 ALG_RSA_PKCS1_OAEP - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_768 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f 00 02 00 04 03 00 00 07 00 30 ff ff 00 02 00 05 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + + +CIPHER - TYPE_RSA_CRT_PUBLIC LENGTH_RSA_896 ALG_RSA_ISO14888 - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_896 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 00 02 00 04 03 80 00 07 00 38 ff ff 00 02 00 05 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + + +CIPHER - TYPE_RSA_CRT_PUBLIC LENGTH_RSA_896 ALG_RSA_ISO9796 - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_896 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b 00 02 00 04 03 80 00 07 00 38 ff ff 00 02 00 05 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + + +CIPHER - TYPE_RSA_CRT_PUBLIC LENGTH_RSA_896 ALG_RSA_NOPAD - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_896 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c 00 02 00 04 03 80 00 07 00 70 ff ff 00 02 00 05 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + + +CIPHER - TYPE_RSA_CRT_PUBLIC LENGTH_RSA_896 ALG_RSA_PKCS1 - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_896 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a 00 02 00 04 03 80 00 07 00 38 ff ff 00 02 00 05 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + + +CIPHER - TYPE_RSA_CRT_PUBLIC LENGTH_RSA_896 ALG_RSA_PKCS1_OAEP - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_896 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f 00 02 00 04 03 80 00 07 00 38 ff ff 00 02 00 05 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + + +CIPHER - TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1024 ALG_RSA_ISO14888 - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1024 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 00 02 00 04 04 00 00 07 00 40 ff ff 00 02 00 05 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + + +CIPHER - TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1024 ALG_RSA_ISO9796 - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1024 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b 00 02 00 04 04 00 00 07 00 40 ff ff 00 02 00 05 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + + +CIPHER - TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1024 ALG_RSA_NOPAD - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1024 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c 00 02 00 04 04 00 00 07 00 80 ff ff 00 02 00 05 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + + +CIPHER - TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1024 ALG_RSA_PKCS1 - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1024 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a 00 02 00 04 04 00 00 07 00 40 ff ff 00 02 00 05 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + + +CIPHER - TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1024 ALG_RSA_PKCS1_OAEP - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1024 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f 00 02 00 04 04 00 00 07 00 40 ff ff 00 02 00 05 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + + +CIPHER - TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1280 ALG_RSA_ISO14888 - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1280 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 00 02 00 04 05 00 00 07 00 50 ff ff 00 02 00 05 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + + +CIPHER - TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1280 ALG_RSA_ISO9796 - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1280 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b 00 02 00 04 05 00 00 07 00 50 ff ff 00 02 00 05 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + + +CIPHER - TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1280 ALG_RSA_NOPAD - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1280 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c 00 02 00 04 05 00 00 07 00 a0 ff ff 00 02 00 05 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + + +CIPHER - TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1280 ALG_RSA_PKCS1 - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1280 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a 00 02 00 04 05 00 00 07 00 50 ff ff 00 02 00 05 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + + +CIPHER - TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1280 ALG_RSA_PKCS1_OAEP - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1280 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f 00 02 00 04 05 00 00 07 00 50 ff ff 00 02 00 05 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + + +CIPHER - TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1536 ALG_RSA_ISO14888 - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1536 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 00 02 00 04 06 00 00 07 00 60 ff ff 00 02 00 05 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + + +CIPHER - TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1536 ALG_RSA_ISO9796 - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1536 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b 00 02 00 04 06 00 00 07 00 60 ff ff 00 02 00 05 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + + +CIPHER - TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1536 ALG_RSA_NOPAD - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1536 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c 00 02 00 04 06 00 00 07 00 c0 ff ff 00 02 00 05 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + + +CIPHER - TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1536 ALG_RSA_PKCS1 - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1536 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a 00 02 00 04 06 00 00 07 00 60 ff ff 00 02 00 05 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + + +CIPHER - TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1536 ALG_RSA_PKCS1_OAEP - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1536 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f 00 02 00 04 06 00 00 07 00 60 ff ff 00 02 00 05 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + + +CIPHER - TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1984 ALG_RSA_ISO14888 - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1984 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 00 02 00 04 07 c0 00 07 00 7c ff ff 00 02 00 05 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + + +CIPHER - TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1984 ALG_RSA_ISO9796 - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1984 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b 00 02 00 04 07 c0 00 07 00 7c ff ff 00 02 00 05 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + + +CIPHER - TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1984 ALG_RSA_NOPAD - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1984 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c 00 02 00 04 07 c0 00 07 00 f8 ff ff 00 02 00 05 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + + +CIPHER - TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1984 ALG_RSA_PKCS1 - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1984 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a 00 02 00 04 07 c0 00 07 00 7c ff ff 00 02 00 05 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + + +CIPHER - TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1984 ALG_RSA_PKCS1_OAEP - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_1984 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f 00 02 00 04 07 c0 00 07 00 7c ff ff 00 02 00 05 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + + +CIPHER - TYPE_RSA_CRT_PUBLIC LENGTH_RSA_2048 ALG_RSA_ISO14888 - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_2048 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 00 02 00 04 08 00 00 07 00 80 ff ff 00 02 00 05 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + + +CIPHER - TYPE_RSA_CRT_PUBLIC LENGTH_RSA_2048 ALG_RSA_ISO9796 - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_2048 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b 00 02 00 04 08 00 00 07 00 80 ff ff 00 02 00 05 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + + +CIPHER - TYPE_RSA_CRT_PUBLIC LENGTH_RSA_2048 ALG_RSA_NOPAD - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_2048 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c 00 02 00 04 08 00 00 07 01 00 ff ff 00 02 00 05 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + + +CIPHER - TYPE_RSA_CRT_PUBLIC LENGTH_RSA_2048 ALG_RSA_PKCS1 - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_2048 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a 00 02 00 04 08 00 00 07 00 80 ff ff 00 02 00 05 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + + +CIPHER - TYPE_RSA_CRT_PUBLIC LENGTH_RSA_2048 ALG_RSA_PKCS1_OAEP - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_2048 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f 00 02 00 04 08 00 00 07 00 80 ff ff 00 02 00 05 00 01 +UNKONWN_ERROR-card_has_return_value_ff01 + + +CIPHER - TYPE_RSA_CRT_PUBLIC LENGTH_RSA_3072 ALG_RSA_ISO14888 - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_3072 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 00 02 00 04 0c 00 00 07 00 c0 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_CRT_PUBLIC LENGTH_RSA_3072 ALG_RSA_ISO9796 - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_3072 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b 00 02 00 04 0c 00 00 07 00 c0 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_CRT_PUBLIC LENGTH_RSA_3072 ALG_RSA_NOPAD - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_3072 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c 00 02 00 04 0c 00 00 07 01 80 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_CRT_PUBLIC LENGTH_RSA_3072 ALG_RSA_PKCS1 - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_3072 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a 00 02 00 04 0c 00 00 07 00 c0 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_CRT_PUBLIC LENGTH_RSA_3072 ALG_RSA_PKCS1_OAEP - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_3072 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f 00 02 00 04 0c 00 00 07 00 c0 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_CRT_PUBLIC LENGTH_RSA_4096 ALG_RSA_ISO14888 - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_4096 ALG_RSA_ISO14888 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 09 00 02 00 04 10 00 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_CRT_PUBLIC LENGTH_RSA_4096 ALG_RSA_ISO9796 - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_4096 ALG_RSA_ISO9796 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0b 00 02 00 04 10 00 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_CRT_PUBLIC LENGTH_RSA_4096 ALG_RSA_NOPAD - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_4096 ALG_RSA_NOPAD Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0c 00 02 00 04 10 00 00 07 02 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_CRT_PUBLIC LENGTH_RSA_4096 ALG_RSA_PKCS1 - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_4096 ALG_RSA_PKCS1 Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0a 00 02 00 04 10 00 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - TYPE_RSA_CRT_PUBLIC LENGTH_RSA_4096 ALG_RSA_PKCS1_OAEP - variable data - BEGIN + +method name:; TYPE_RSA_CRT_PUBLIC LENGTH_RSA_4096 ALG_RSA_PKCS1_OAEP Cipher_doFinal() +measurement config:;appletPrepareINS;31;appletMeasureINS;43;config;00 11 00 0f 00 02 00 04 10 00 00 07 01 00 ff ff 00 02 00 05 00 01 +NO_SUCH_ALGORITHM + + +CIPHER - END + + +SIGNATURE + + +SIGNATURE - TYPE_AES LENGTH_AES_128 ALG_AES_MAC_128_NOPAD - variable data - BEGIN + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_MAC_128_NOPAD Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 12 ff ff 00 0f 00 80 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;88.00;88.00;87.00;87.00;88.00; +baseline stats (ms):;avg:;87.60;min:;87.00;max:;88.00; +operation raw measurements (ms):;7.40;6.40;8.40;7.40;7.40; +operation stats (ms/op):;avg op:;1.48;min op:;1.28;max op:;1.68;;CHECK +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_MAC_128_NOPAD Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 12 ff ff 00 0f 00 80 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;89.00;85.00;131.00;89.00;88.00; +baseline stats (ms):;avg:;96.40;min:;85.00;max:;131.00;;;CHECK +operation raw measurements (ms):;1.60;1.60;2.60;1.60;2.60; +operation stats (ms/op):;avg op:;0.40;min op:;0.32;max op:;0.52;;CHECK +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_MAC_128_NOPAD Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 12 ff ff 00 0f 00 80 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;89.00;172.00;89.00;90.00;89.00; +baseline stats (ms):;avg:;105.80;min:;89.00;max:;172.00;;;CHECK +operation raw measurements (ms):;-0.80;-0.80;-1.80;-0.80;0.20; +operation stats (ms/op):;avg op:;-0.16;min op:;-0.36;max op:;0.04; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_MAC_128_NOPAD Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 12 ff ff 00 0f 00 80 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;89.00;92.00;91.00;91.00;91.00; +baseline stats (ms):;avg:;91.25;min:;89.00;max:;92.00; +operation raw measurements (ms):;26.75;25.75;26.75;27.75;26.75; +operation stats (ms/op):;avg op:;5.35;min op:;5.15;max op:;5.55; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_MAC_128_NOPAD Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 12 ff ff 00 0f 00 80 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;96.00;96.00;95.00;96.00;96.00; +baseline stats (ms):;avg:;96.00;min:;95.00;max:;96.00; +operation raw measurements (ms):;49.00;49.00;49.00;47.00;48.00; +operation stats (ms/op):;avg op:;9.68;min op:;9.40;max op:;9.80; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_MAC_128_NOPAD Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 12 ff ff 00 0f 00 80 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;104.00;105.00;104.00;103.00;104.00; +baseline stats (ms):;avg:;104.25;min:;103.00;max:;105.00; +operation raw measurements (ms):;91.75;91.75;91.75;91.75;91.75; +operation stats (ms/op):;avg op:;18.35;min op:;18.35;max op:;18.35; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_MAC_128_NOPAD Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 12 ff ff 00 0f 00 80 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;86.00;91.00;87.00;86.00;85.00; +baseline stats (ms):;avg:;87.00;min:;85.00;max:;91.00; +operation raw measurements (ms):;103.00;104.00;103.00;103.00;103.00; +operation stats (ms/op):;avg op:;20.64;min op:;20.60;max op:;20.80; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_MAC_128_NOPAD Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 12 ff ff 00 0f 00 80 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;85.00;86.00;86.00;86.00;87.00; +baseline stats (ms):;avg:;86.25;min:;85.00;max:;87.00; +operation raw measurements (ms):;106.75;106.75;106.75;105.75;106.75; +operation stats (ms/op):;avg op:;21.31;min op:;21.15;max op:;21.35; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_MAC_128_NOPAD Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 12 ff ff 00 0f 00 80 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;85.00;86.00;86.00;85.00;86.00; +baseline stats (ms):;avg:;85.60;min:;85.00;max:;86.00; +operation raw measurements (ms):;113.40;112.40;112.40;113.40;113.40; +operation stats (ms/op):;avg op:;22.60;min op:;22.48;max op:;22.68; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_MAC_128_NOPAD Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 12 ff ff 00 0f 00 80 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;381.00;86.00;86.00;85.00;87.00; +baseline stats (ms):;avg:;145.00;min:;85.00;max:;381.00;;;CHECK +operation raw measurements (ms):;65.00;64.00;64.00;63.00;63.00; +operation stats (ms/op):;avg op:;12.76;min op:;12.60;max op:;13.00; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_MAC_128_NOPAD Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 12 ff ff 00 0f 00 80 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;86.00;89.00;86.00;86.00;86.00; +baseline stats (ms):;avg:;86.60;min:;86.00;max:;89.00; +operation raw measurements (ms):;144.40;144.40;143.40;145.40;144.40; +operation stats (ms/op):;avg op:;28.88;min op:;28.68;max op:;29.08; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_128 ALG_AES_MAC_128_NOPAD Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 12 ff ff 00 0f 00 80 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;368.00;86.00;86.00;86.00;86.00; +baseline stats (ms):;avg:;142.40;min:;86.00;max:;368.00;;;CHECK +operation raw measurements (ms):;131.60;132.60;130.60;131.60;131.60; +operation stats (ms/op):;avg op:;26.32;min op:;26.12;max op:;26.52; +operation info:;data length;512;total iterations;25;total invocations;25; + + +SIGNATURE - TYPE_AES LENGTH_AES_128 ALG_AES_MAC_128_NOPAD - variable data - END + + +SIGNATURE - TYPE_AES LENGTH_AES_192 ALG_AES_MAC_128_NOPAD - variable data - BEGIN + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_MAC_128_NOPAD Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 12 ff ff 00 0f 00 c0 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;87.00;88.00;88.00;88.00;88.00; +baseline stats (ms):;avg:;88.00;min:;87.00;max:;88.00; +operation raw measurements (ms):;9.00;6.00;9.00;10.00;9.00; +operation stats (ms/op):;avg op:;1.72;min op:;1.20;max op:;2.00;;CHECK +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_MAC_128_NOPAD Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 12 ff ff 00 0f 00 c0 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;89.00;89.00;88.00;88.00;87.00; +baseline stats (ms):;avg:;88.20;min:;87.00;max:;89.00; +operation raw measurements (ms):;12.80;13.80;13.80;12.80;12.80; +operation stats (ms/op):;avg op:;2.64;min op:;2.56;max op:;2.76; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_MAC_128_NOPAD Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 12 ff ff 00 0f 00 c0 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;90.00;153.00;89.00;90.00;90.00; +baseline stats (ms):;avg:;102.40;min:;89.00;max:;153.00;;;CHECK +operation raw measurements (ms):;5.60;5.60;6.60;4.60;2.60; +operation stats (ms/op):;avg op:;1.00;min op:;0.52;max op:;1.32;;CHECK +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_MAC_128_NOPAD Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 12 ff ff 00 0f 00 c0 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;91.00;93.00;93.00;92.00;92.00; +baseline stats (ms):;avg:;92.20;min:;91.00;max:;93.00; +operation raw measurements (ms):;30.80;31.80;27.80;29.80;31.80; +operation stats (ms/op):;avg op:;6.08;min op:;5.56;max op:;6.36;;CHECK +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_MAC_128_NOPAD Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 12 ff ff 00 0f 00 c0 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;99.00;309.00;98.00;97.00;97.00; +baseline stats (ms):;avg:;140.00;min:;97.00;max:;309.00;;;CHECK +operation raw measurements (ms):;14.00;13.00;15.00;14.00;14.00; +operation stats (ms/op):;avg op:;2.80;min op:;2.60;max op:;3.00;;CHECK +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_MAC_128_NOPAD Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 12 ff ff 00 0f 00 c0 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;107.00;108.00;111.00;107.00;107.00; +baseline stats (ms):;avg:;108.00;min:;107.00;max:;111.00; +operation raw measurements (ms):;106.00;105.00;105.00;107.00;105.00; +operation stats (ms/op):;avg op:;21.12;min op:;21.00;max op:;21.40; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_MAC_128_NOPAD Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 12 ff ff 00 0f 00 c0 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;86.00;85.00;87.00;85.00;85.00; +baseline stats (ms):;avg:;85.60;min:;85.00;max:;87.00; +operation raw measurements (ms):;106.40;109.40;107.40;108.40;107.40; +operation stats (ms/op):;avg op:;21.56;min op:;21.28;max op:;21.88; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_MAC_128_NOPAD Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 12 ff ff 00 0f 00 c0 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;264.00;86.00;86.00;85.00;87.00; +baseline stats (ms):;avg:;121.60;min:;85.00;max:;264.00;;;CHECK +operation raw measurements (ms):;75.40;76.40;75.40;75.40;75.40; +operation stats (ms/op):;avg op:;15.12;min op:;15.08;max op:;15.28; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_MAC_128_NOPAD Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 12 ff ff 00 0f 00 c0 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;86.00;86.00;86.00;85.00;86.00; +baseline stats (ms):;avg:;86.00;min:;85.00;max:;86.00; +operation raw measurements (ms):;118.00;118.00;116.00;118.00;118.00; +operation stats (ms/op):;avg op:;23.52;min op:;23.20;max op:;23.60; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_MAC_128_NOPAD Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 12 ff ff 00 0f 00 c0 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;86.00;85.00;113.00;85.00;87.00; +baseline stats (ms):;avg:;91.20;min:;85.00;max:;113.00;;;CHECK +operation raw measurements (ms):;124.80;124.80;125.80;124.80;123.80; +operation stats (ms/op):;avg op:;24.96;min op:;24.76;max op:;25.16; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_MAC_128_NOPAD Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 12 ff ff 00 0f 00 c0 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;87.00;86.00;86.00;86.00;86.00; +baseline stats (ms):;avg:;86.20;min:;86.00;max:;87.00; +operation raw measurements (ms):;154.80;154.80;154.80;154.80;151.80; +operation stats (ms/op):;avg op:;30.84;min op:;30.36;max op:;30.96; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_192 ALG_AES_MAC_128_NOPAD Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 12 ff ff 00 0f 00 c0 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;82.00;83.00;97.00;85.00;86.00; +baseline stats (ms):;avg:;86.60;min:;82.00;max:;97.00;;;CHECK +operation raw measurements (ms):;202.40;204.40;203.40;201.40;204.40; +operation stats (ms/op):;avg op:;40.64;min op:;40.28;max op:;40.88; +operation info:;data length;512;total iterations;25;total invocations;25; + + +SIGNATURE - TYPE_AES LENGTH_AES_192 ALG_AES_MAC_128_NOPAD - variable data - END + + +SIGNATURE - TYPE_AES LENGTH_AES_256 ALG_AES_MAC_128_NOPAD - variable data - BEGIN + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_MAC_128_NOPAD Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 12 ff ff 00 0f 01 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;88.00;311.00;88.00;87.00;88.00; +baseline stats (ms):;avg:;132.40;min:;87.00;max:;311.00;;;CHECK +operation raw measurements (ms):;-33.40;-34.40;-34.40;-34.40;-36.40; +operation stats (ms/op):;avg op:;-6.92;min op:;-7.28;max op:;-6.68; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_MAC_128_NOPAD Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 12 ff ff 00 0f 01 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;101.00;88.00;90.00;88.00;87.00; +baseline stats (ms):;avg:;90.80;min:;87.00;max:;101.00;;;CHECK +operation raw measurements (ms):;10.20;11.20;10.20;10.20;11.20; +operation stats (ms/op):;avg op:;2.12;min op:;2.04;max op:;2.24;;CHECK +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_MAC_128_NOPAD Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 12 ff ff 00 0f 01 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;90.00;90.00;90.00;90.00;90.00; +baseline stats (ms):;avg:;90.00;min:;90.00;max:;90.00; +operation raw measurements (ms):;20.00;20.00;20.00;21.00;21.00; +operation stats (ms/op):;avg op:;4.08;min op:;4.00;max op:;4.20; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_MAC_128_NOPAD Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 12 ff ff 00 0f 01 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;92.00;92.00;93.00;93.00;94.00; +baseline stats (ms):;avg:;92.80;min:;92.00;max:;94.00; +operation raw measurements (ms):;37.20;35.20;35.20;35.20;35.20; +operation stats (ms/op):;avg op:;7.12;min op:;7.04;max op:;7.44; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_MAC_128_NOPAD Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 12 ff ff 00 0f 01 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;99.00;119.00;99.00;98.00;99.00; +baseline stats (ms):;avg:;102.80;min:;98.00;max:;119.00;;;CHECK +operation raw measurements (ms):;60.20;58.20;59.20;57.20;58.20; +operation stats (ms/op):;avg op:;11.72;min op:;11.44;max op:;12.04; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_MAC_128_NOPAD Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 12 ff ff 00 0f 01 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;109.00;110.00;112.00;109.00;110.00; +baseline stats (ms):;avg:;110.00;min:;109.00;max:;112.00; +operation raw measurements (ms):;118.00;119.00;119.00;120.00;119.00; +operation stats (ms/op):;avg op:;23.80;min op:;23.60;max op:;24.00; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_MAC_128_NOPAD Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 12 ff ff 00 0f 01 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;87.00;85.00;85.00;86.00;86.00; +baseline stats (ms):;avg:;85.80;min:;85.00;max:;87.00; +operation raw measurements (ms):;109.20;106.20;106.20;109.20;109.20; +operation stats (ms/op):;avg op:;21.60;min op:;21.24;max op:;21.84; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_MAC_128_NOPAD Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 12 ff ff 00 0f 01 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;382.00;87.00;86.00;86.00;86.00; +baseline stats (ms):;avg:;145.40;min:;86.00;max:;382.00;;;CHECK +operation raw measurements (ms):;51.60;52.60;51.60;52.60;53.60; +operation stats (ms/op):;avg op:;10.48;min op:;10.32;max op:;10.72; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_MAC_128_NOPAD Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 12 ff ff 00 0f 01 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;87.00;85.00;86.00;86.00;86.00; +baseline stats (ms):;avg:;86.25;min:;85.00;max:;87.00; +operation raw measurements (ms):;119.75;118.75;119.75;118.75;117.75; +operation stats (ms/op):;avg op:;23.79;min op:;23.55;max op:;23.95; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_MAC_128_NOPAD Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 12 ff ff 00 0f 01 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;86.00;85.00;155.00;87.00;87.00; +baseline stats (ms):;avg:;100.00;min:;85.00;max:;155.00;;;CHECK +operation raw measurements (ms):;119.00;119.00;118.00;118.00;119.00; +operation stats (ms/op):;avg op:;23.72;min op:;23.60;max op:;23.80; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_MAC_128_NOPAD Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 12 ff ff 00 0f 01 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;85.00;86.00;85.00;87.00;86.00; +baseline stats (ms):;avg:;85.80;min:;85.00;max:;87.00; +operation raw measurements (ms):;162.20;161.20;162.20;162.20;162.20; +operation stats (ms/op):;avg op:;32.40;min op:;32.24;max op:;32.44; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; TYPE_AES LENGTH_AES_256 ALG_AES_MAC_128_NOPAD Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 12 ff ff 00 0f 01 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;86.00;86.00;96.00;85.00;86.00; +baseline stats (ms):;avg:;87.80;min:;85.00;max:;96.00;;;CHECK +operation raw measurements (ms):;215.20;216.20;216.20;216.20;216.20; +operation stats (ms/op):;avg op:;43.20;min op:;43.04;max op:;43.24; +operation info:;data length;512;total iterations;25;total invocations;25; + + +SIGNATURE - TYPE_AES LENGTH_AES_256 ALG_AES_MAC_128_NOPAD - variable data - END + + +SIGNATURE - TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_ISO9797_1_M2_ALG3 - variable data - BEGIN + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_ISO9797_1_M2_ALG3 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 13 ff ff 00 03 00 80 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_ISO9797_1_M2_ALG3 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 13 ff ff 00 03 00 80 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_ISO9797_1_M2_ALG3 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 13 ff ff 00 03 00 80 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_ISO9797_1_M2_ALG3 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 13 ff ff 00 03 00 80 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_ISO9797_1_M2_ALG3 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 13 ff ff 00 03 00 80 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_ISO9797_1_M2_ALG3 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 13 ff ff 00 03 00 80 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_ISO9797_1_M2_ALG3 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 13 ff ff 00 03 00 80 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_ISO9797_1_M2_ALG3 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 13 ff ff 00 03 00 80 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_ISO9797_1_M2_ALG3 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 13 ff ff 00 03 00 80 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_ISO9797_1_M2_ALG3 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 13 ff ff 00 03 00 80 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_ISO9797_1_M2_ALG3 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 13 ff ff 00 03 00 80 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_ISO9797_1_M2_ALG3 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 13 ff ff 00 03 00 80 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_ISO9797_1_M2_ALG3 - variable data - END + + +SIGNATURE - TYPE_DES LENGTH_DES ALG_DES_MAC4_ISO9797_M1 - variable data - BEGIN + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC4_ISO9797_M1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 03 ff ff 00 03 00 40 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC4_ISO9797_M1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 03 ff ff 00 03 00 40 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC4_ISO9797_M1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 03 ff ff 00 03 00 40 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC4_ISO9797_M1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 03 ff ff 00 03 00 40 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC4_ISO9797_M1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 03 ff ff 00 03 00 40 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC4_ISO9797_M1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 03 ff ff 00 03 00 40 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC4_ISO9797_M1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 03 ff ff 00 03 00 40 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC4_ISO9797_M1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 03 ff ff 00 03 00 40 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC4_ISO9797_M1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 03 ff ff 00 03 00 40 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC4_ISO9797_M1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 03 ff ff 00 03 00 40 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC4_ISO9797_M1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 03 ff ff 00 03 00 40 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC4_ISO9797_M1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 03 ff ff 00 03 00 40 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - TYPE_DES LENGTH_DES ALG_DES_MAC4_ISO9797_M1 - variable data - END + + +SIGNATURE - TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_ISO9797_M1 - variable data - BEGIN + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_ISO9797_M1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 03 ff ff 00 03 00 80 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_ISO9797_M1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 03 ff ff 00 03 00 80 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_ISO9797_M1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 03 ff ff 00 03 00 80 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_ISO9797_M1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 03 ff ff 00 03 00 80 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_ISO9797_M1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 03 ff ff 00 03 00 80 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_ISO9797_M1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 03 ff ff 00 03 00 80 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_ISO9797_M1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 03 ff ff 00 03 00 80 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_ISO9797_M1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 03 ff ff 00 03 00 80 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_ISO9797_M1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 03 ff ff 00 03 00 80 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_ISO9797_M1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 03 ff ff 00 03 00 80 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_ISO9797_M1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 03 ff ff 00 03 00 80 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_ISO9797_M1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 03 ff ff 00 03 00 80 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_ISO9797_M1 - variable data - END + + +SIGNATURE - TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC4_ISO9797_M1 - variable data - BEGIN + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC4_ISO9797_M1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 03 ff ff 00 03 00 c0 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC4_ISO9797_M1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 03 ff ff 00 03 00 c0 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC4_ISO9797_M1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 03 ff ff 00 03 00 c0 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC4_ISO9797_M1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 03 ff ff 00 03 00 c0 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC4_ISO9797_M1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 03 ff ff 00 03 00 c0 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC4_ISO9797_M1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 03 ff ff 00 03 00 c0 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC4_ISO9797_M1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 03 ff ff 00 03 00 c0 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC4_ISO9797_M1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 03 ff ff 00 03 00 c0 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC4_ISO9797_M1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 03 ff ff 00 03 00 c0 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC4_ISO9797_M1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 03 ff ff 00 03 00 c0 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC4_ISO9797_M1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 03 ff ff 00 03 00 c0 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC4_ISO9797_M1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 03 ff ff 00 03 00 c0 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC4_ISO9797_M1 - variable data - END + + +SIGNATURE - TYPE_DES LENGTH_DES ALG_DES_MAC4_ISO9797_M2 - variable data - BEGIN + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC4_ISO9797_M2 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 05 ff ff 00 03 00 40 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC4_ISO9797_M2 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 05 ff ff 00 03 00 40 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC4_ISO9797_M2 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 05 ff ff 00 03 00 40 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC4_ISO9797_M2 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 05 ff ff 00 03 00 40 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC4_ISO9797_M2 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 05 ff ff 00 03 00 40 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC4_ISO9797_M2 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 05 ff ff 00 03 00 40 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC4_ISO9797_M2 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 05 ff ff 00 03 00 40 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC4_ISO9797_M2 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 05 ff ff 00 03 00 40 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC4_ISO9797_M2 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 05 ff ff 00 03 00 40 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC4_ISO9797_M2 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 05 ff ff 00 03 00 40 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC4_ISO9797_M2 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 05 ff ff 00 03 00 40 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC4_ISO9797_M2 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 05 ff ff 00 03 00 40 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - TYPE_DES LENGTH_DES ALG_DES_MAC4_ISO9797_M2 - variable data - END + + +SIGNATURE - TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_ISO9797_M2 - variable data - BEGIN + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_ISO9797_M2 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 05 ff ff 00 03 00 80 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_ISO9797_M2 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 05 ff ff 00 03 00 80 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_ISO9797_M2 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 05 ff ff 00 03 00 80 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_ISO9797_M2 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 05 ff ff 00 03 00 80 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_ISO9797_M2 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 05 ff ff 00 03 00 80 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_ISO9797_M2 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 05 ff ff 00 03 00 80 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_ISO9797_M2 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 05 ff ff 00 03 00 80 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_ISO9797_M2 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 05 ff ff 00 03 00 80 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_ISO9797_M2 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 05 ff ff 00 03 00 80 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_ISO9797_M2 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 05 ff ff 00 03 00 80 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_ISO9797_M2 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 05 ff ff 00 03 00 80 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_ISO9797_M2 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 05 ff ff 00 03 00 80 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_ISO9797_M2 - variable data - END + + +SIGNATURE - TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC4_ISO9797_M2 - variable data - BEGIN + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC4_ISO9797_M2 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 05 ff ff 00 03 00 c0 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC4_ISO9797_M2 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 05 ff ff 00 03 00 c0 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC4_ISO9797_M2 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 05 ff ff 00 03 00 c0 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC4_ISO9797_M2 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 05 ff ff 00 03 00 c0 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC4_ISO9797_M2 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 05 ff ff 00 03 00 c0 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC4_ISO9797_M2 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 05 ff ff 00 03 00 c0 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC4_ISO9797_M2 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 05 ff ff 00 03 00 c0 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC4_ISO9797_M2 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 05 ff ff 00 03 00 c0 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC4_ISO9797_M2 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 05 ff ff 00 03 00 c0 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC4_ISO9797_M2 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 05 ff ff 00 03 00 c0 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC4_ISO9797_M2 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 05 ff ff 00 03 00 c0 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC4_ISO9797_M2 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 05 ff ff 00 03 00 c0 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC4_ISO9797_M2 - variable data - END + + +SIGNATURE - TYPE_DES LENGTH_DES ALG_DES_MAC4_NOPAD - variable data - BEGIN + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC4_NOPAD Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 01 ff ff 00 03 00 40 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC4_NOPAD Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 01 ff ff 00 03 00 40 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC4_NOPAD Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 01 ff ff 00 03 00 40 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC4_NOPAD Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 01 ff ff 00 03 00 40 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC4_NOPAD Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 01 ff ff 00 03 00 40 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC4_NOPAD Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 01 ff ff 00 03 00 40 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC4_NOPAD Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 01 ff ff 00 03 00 40 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC4_NOPAD Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 01 ff ff 00 03 00 40 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC4_NOPAD Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 01 ff ff 00 03 00 40 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC4_NOPAD Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 01 ff ff 00 03 00 40 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC4_NOPAD Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 01 ff ff 00 03 00 40 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC4_NOPAD Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 01 ff ff 00 03 00 40 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - TYPE_DES LENGTH_DES ALG_DES_MAC4_NOPAD - variable data - END + + +SIGNATURE - TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_NOPAD - variable data - BEGIN + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_NOPAD Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 01 ff ff 00 03 00 80 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_NOPAD Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 01 ff ff 00 03 00 80 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_NOPAD Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 01 ff ff 00 03 00 80 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_NOPAD Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 01 ff ff 00 03 00 80 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_NOPAD Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 01 ff ff 00 03 00 80 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_NOPAD Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 01 ff ff 00 03 00 80 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_NOPAD Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 01 ff ff 00 03 00 80 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_NOPAD Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 01 ff ff 00 03 00 80 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_NOPAD Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 01 ff ff 00 03 00 80 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_NOPAD Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 01 ff ff 00 03 00 80 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_NOPAD Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 01 ff ff 00 03 00 80 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_NOPAD Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 01 ff ff 00 03 00 80 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_NOPAD - variable data - END + + +SIGNATURE - TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC4_NOPAD - variable data - BEGIN + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC4_NOPAD Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 01 ff ff 00 03 00 c0 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC4_NOPAD Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 01 ff ff 00 03 00 c0 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC4_NOPAD Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 01 ff ff 00 03 00 c0 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC4_NOPAD Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 01 ff ff 00 03 00 c0 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC4_NOPAD Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 01 ff ff 00 03 00 c0 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC4_NOPAD Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 01 ff ff 00 03 00 c0 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC4_NOPAD Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 01 ff ff 00 03 00 c0 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC4_NOPAD Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 01 ff ff 00 03 00 c0 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC4_NOPAD Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 01 ff ff 00 03 00 c0 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC4_NOPAD Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 01 ff ff 00 03 00 c0 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC4_NOPAD Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 01 ff ff 00 03 00 c0 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC4_NOPAD Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 01 ff ff 00 03 00 c0 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC4_NOPAD - variable data - END + + +SIGNATURE - TYPE_DES LENGTH_DES ALG_DES_MAC4_PKCS5 - variable data - BEGIN + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC4_PKCS5 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 07 ff ff 00 03 00 40 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC4_PKCS5 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 07 ff ff 00 03 00 40 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC4_PKCS5 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 07 ff ff 00 03 00 40 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC4_PKCS5 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 07 ff ff 00 03 00 40 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC4_PKCS5 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 07 ff ff 00 03 00 40 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC4_PKCS5 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 07 ff ff 00 03 00 40 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC4_PKCS5 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 07 ff ff 00 03 00 40 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC4_PKCS5 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 07 ff ff 00 03 00 40 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC4_PKCS5 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 07 ff ff 00 03 00 40 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC4_PKCS5 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 07 ff ff 00 03 00 40 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC4_PKCS5 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 07 ff ff 00 03 00 40 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC4_PKCS5 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 07 ff ff 00 03 00 40 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - TYPE_DES LENGTH_DES ALG_DES_MAC4_PKCS5 - variable data - END + + +SIGNATURE - TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_PKCS5 - variable data - BEGIN + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_PKCS5 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 07 ff ff 00 03 00 80 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_PKCS5 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 07 ff ff 00 03 00 80 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_PKCS5 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 07 ff ff 00 03 00 80 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_PKCS5 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 07 ff ff 00 03 00 80 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_PKCS5 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 07 ff ff 00 03 00 80 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_PKCS5 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 07 ff ff 00 03 00 80 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_PKCS5 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 07 ff ff 00 03 00 80 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_PKCS5 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 07 ff ff 00 03 00 80 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_PKCS5 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 07 ff ff 00 03 00 80 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_PKCS5 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 07 ff ff 00 03 00 80 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_PKCS5 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 07 ff ff 00 03 00 80 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_PKCS5 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 07 ff ff 00 03 00 80 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC4_PKCS5 - variable data - END + + +SIGNATURE - TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC4_PKCS5 - variable data - BEGIN + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC4_PKCS5 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 07 ff ff 00 03 00 c0 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC4_PKCS5 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 07 ff ff 00 03 00 c0 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC4_PKCS5 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 07 ff ff 00 03 00 c0 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC4_PKCS5 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 07 ff ff 00 03 00 c0 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC4_PKCS5 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 07 ff ff 00 03 00 c0 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC4_PKCS5 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 07 ff ff 00 03 00 c0 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC4_PKCS5 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 07 ff ff 00 03 00 c0 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC4_PKCS5 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 07 ff ff 00 03 00 c0 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC4_PKCS5 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 07 ff ff 00 03 00 c0 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC4_PKCS5 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 07 ff ff 00 03 00 c0 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC4_PKCS5 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 07 ff ff 00 03 00 c0 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC4_PKCS5 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 07 ff ff 00 03 00 c0 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC4_PKCS5 - variable data - END + + +SIGNATURE - TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_ISO9797_1_M2_ALG3 - variable data - BEGIN + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_ISO9797_1_M2_ALG3 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 14 ff ff 00 03 00 80 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;91.00;349.00;89.00;89.00;90.00; +baseline stats (ms):;avg:;141.60;min:;89.00;max:;349.00;;;CHECK +operation raw measurements (ms):;-35.60;-34.60;-34.60;-35.60;-35.60; +operation stats (ms/op):;avg op:;-7.04;min op:;-7.12;max op:;-6.92; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_ISO9797_1_M2_ALG3 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 14 ff ff 00 03 00 80 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;98.00;91.00;91.00;91.00;91.00; +baseline stats (ms):;avg:;92.40;min:;91.00;max:;98.00;;;CHECK +operation raw measurements (ms):;23.60;23.60;23.60;23.60;23.60; +operation stats (ms/op):;avg op:;4.72;min op:;4.72;max op:;4.72; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_ISO9797_1_M2_ALG3 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 14 ff ff 00 03 00 80 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;94.00;94.00;95.00;94.00;93.00; +baseline stats (ms):;avg:;94.25;min:;93.00;max:;95.00; +operation raw measurements (ms):;41.75;42.75;41.75;40.75;41.75; +operation stats (ms/op):;avg op:;8.35;min op:;8.15;max op:;8.55; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_ISO9797_1_M2_ALG3 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 14 ff ff 00 03 00 80 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;188.00;101.00;100.00;102.00;100.00; +baseline stats (ms):;avg:;118.20;min:;100.00;max:;188.00;;;CHECK +operation raw measurements (ms):;55.80;55.80;56.80;55.80;55.80; +operation stats (ms/op):;avg op:;11.20;min op:;11.16;max op:;11.36; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_ISO9797_1_M2_ALG3 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 14 ff ff 00 03 00 80 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;113.00;114.00;113.00;115.00;114.00; +baseline stats (ms):;avg:;113.80;min:;113.00;max:;115.00; +operation raw measurements (ms):;138.20;138.20;137.20;137.20;137.20; +operation stats (ms/op):;avg op:;27.52;min op:;27.44;max op:;27.64; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_ISO9797_1_M2_ALG3 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 14 ff ff 00 03 00 80 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;250.00;139.00;139.00;139.00;139.00; +baseline stats (ms):;avg:;161.20;min:;139.00;max:;250.00;;;CHECK +operation raw measurements (ms):;245.80;244.80;244.80;245.80;245.80; +operation stats (ms/op):;avg op:;49.08;min op:;48.96;max op:;49.16; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_ISO9797_1_M2_ALG3 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 14 ff ff 00 03 00 80 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;87.00;103.00;85.00;86.00;87.00; +baseline stats (ms):;avg:;89.60;min:;85.00;max:;103.00;;;CHECK +operation raw measurements (ms):;110.40;110.40;109.40;110.40;107.40; +operation stats (ms/op):;avg op:;21.92;min op:;21.48;max op:;22.08; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_ISO9797_1_M2_ALG3 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 14 ff ff 00 03 00 80 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;428.00;86.00;86.00;86.00;86.00; +baseline stats (ms):;avg:;154.40;min:;86.00;max:;428.00;;;CHECK +operation raw measurements (ms):;53.60;51.60;52.60;52.60;52.60; +operation stats (ms/op):;avg op:;10.52;min op:;10.32;max op:;10.72; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_ISO9797_1_M2_ALG3 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 14 ff ff 00 03 00 80 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;87.00;87.00;86.00;86.00;85.00; +baseline stats (ms):;avg:;86.20;min:;85.00;max:;87.00; +operation raw measurements (ms):;138.80;136.80;136.80;136.80;136.80; +operation stats (ms/op):;avg op:;27.44;min op:;27.36;max op:;27.76; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_ISO9797_1_M2_ALG3 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 14 ff ff 00 03 00 80 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;146.00;85.00;86.00;86.00;86.00; +baseline stats (ms):;avg:;97.80;min:;85.00;max:;146.00;;;CHECK +operation raw measurements (ms):;157.20;157.20;156.20;153.20;154.20; +operation stats (ms/op):;avg op:;31.12;min op:;30.64;max op:;31.44; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_ISO9797_1_M2_ALG3 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 14 ff ff 00 03 00 80 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;86.00;89.00;86.00;83.00;85.00; +baseline stats (ms):;avg:;85.80;min:;83.00;max:;89.00; +operation raw measurements (ms):;234.20;233.20;234.20;233.20;233.20; +operation stats (ms/op):;avg op:;46.72;min op:;46.64;max op:;46.84; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_ISO9797_1_M2_ALG3 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 14 ff ff 00 03 00 80 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;86.00;86.00;86.00;86.00;86.00; +baseline stats (ms):;avg:;86.00;min:;86.00;max:;86.00; +operation raw measurements (ms):;363.00;362.00;363.00;363.00;362.00; +operation stats (ms/op):;avg op:;72.52;min op:;72.40;max op:;72.60; +operation info:;data length;512;total iterations;25;total invocations;25; + + +SIGNATURE - TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_ISO9797_1_M2_ALG3 - variable data - END + + +SIGNATURE - TYPE_DES LENGTH_DES ALG_DES_MAC8_ISO9797_M1 - variable data - BEGIN + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC8_ISO9797_M1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 04 ff ff 00 03 00 40 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;88.00;334.00;88.00;90.00;89.00; +baseline stats (ms):;avg:;137.80;min:;88.00;max:;334.00;;;CHECK +operation raw measurements (ms):;-36.80;-38.80;-36.80;-36.80;-36.80; +operation stats (ms/op):;avg op:;-7.44;min op:;-7.76;max op:;-7.36; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC8_ISO9797_M1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 04 ff ff 00 03 00 40 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;100.00;91.00;90.00;90.00;90.00; +baseline stats (ms):;avg:;92.20;min:;90.00;max:;100.00;;;CHECK +operation raw measurements (ms):;17.80;17.80;17.80;17.80;18.80; +operation stats (ms/op):;avg op:;3.60;min op:;3.56;max op:;3.76; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC8_ISO9797_M1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 04 ff ff 00 03 00 40 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;93.00;331.00;94.00;93.00;93.00; +baseline stats (ms):;avg:;140.80;min:;93.00;max:;331.00;;;CHECK +operation raw measurements (ms):;-10.80;-10.80;-11.80;-10.80;-11.80; +operation stats (ms/op):;avg op:;-2.24;min op:;-2.36;max op:;-2.16; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC8_ISO9797_M1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 04 ff ff 00 03 00 40 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;99.00;99.00;99.00;99.00;100.00; +baseline stats (ms):;avg:;99.20;min:;99.00;max:;100.00; +operation raw measurements (ms):;68.80;68.80;69.80;68.80;67.80; +operation stats (ms/op):;avg op:;13.76;min op:;13.56;max op:;13.96; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC8_ISO9797_M1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 04 ff ff 00 03 00 40 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;112.00;114.00;113.00;112.00;112.00; +baseline stats (ms):;avg:;112.60;min:;112.00;max:;114.00; +operation raw measurements (ms):;132.40;130.40;131.40;131.40;131.40; +operation stats (ms/op):;avg op:;26.28;min op:;26.08;max op:;26.48; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC8_ISO9797_M1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 04 ff ff 00 03 00 40 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;281.00;138.00;137.00;138.00;139.00; +baseline stats (ms):;avg:;166.60;min:;137.00;max:;281.00;;;CHECK +operation raw measurements (ms):;229.40;229.40;230.40;229.40;229.40; +operation stats (ms/op):;avg op:;45.92;min op:;45.88;max op:;46.08; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC8_ISO9797_M1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 04 ff ff 00 03 00 40 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;86.00;135.00;86.00;86.00;86.00; +baseline stats (ms):;avg:;95.80;min:;86.00;max:;135.00;;;CHECK +operation raw measurements (ms):;99.20;98.20;97.20;99.20;97.20; +operation stats (ms/op):;avg op:;19.64;min op:;19.44;max op:;19.84; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC8_ISO9797_M1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 04 ff ff 00 03 00 40 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;399.00;87.00;87.00;87.00;87.00; +baseline stats (ms):;avg:;149.40;min:;87.00;max:;399.00;;;CHECK +operation raw measurements (ms):;53.60;53.60;52.60;51.60;51.60; +operation stats (ms/op):;avg op:;10.52;min op:;10.32;max op:;10.72; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC8_ISO9797_M1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 04 ff ff 00 03 00 40 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;86.00;89.00;86.00;86.00;86.00; +baseline stats (ms):;avg:;86.60;min:;86.00;max:;89.00; +operation raw measurements (ms):;133.40;131.40;131.40;131.40;130.40; +operation stats (ms/op):;avg op:;26.32;min op:;26.08;max op:;26.68; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC8_ISO9797_M1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 04 ff ff 00 03 00 40 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;86.00;86.00;443.00;85.00;86.00; +baseline stats (ms):;avg:;157.20;min:;85.00;max:;443.00;;;CHECK +operation raw measurements (ms):;94.80;90.80;91.80;91.80;92.80; +operation stats (ms/op):;avg op:;18.48;min op:;18.16;max op:;18.96; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC8_ISO9797_M1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 04 ff ff 00 03 00 40 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;86.00;446.00;86.00;86.00;85.00; +baseline stats (ms):;avg:;157.80;min:;85.00;max:;446.00;;;CHECK +operation raw measurements (ms):;156.20;154.20;154.20;155.20;155.20; +operation stats (ms/op):;avg op:;31.00;min op:;30.84;max op:;31.24; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC8_ISO9797_M1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 04 ff ff 00 03 00 40 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;87.00;86.00;86.00;86.00;87.00; +baseline stats (ms):;avg:;86.40;min:;86.00;max:;87.00; +operation raw measurements (ms):;353.60;353.60;353.60;353.60;353.60; +operation stats (ms/op):;avg op:;70.72;min op:;70.72;max op:;70.72; +operation info:;data length;512;total iterations;25;total invocations;25; + + +SIGNATURE - TYPE_DES LENGTH_DES ALG_DES_MAC8_ISO9797_M1 - variable data - END + + +SIGNATURE - TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_ISO9797_M1 - variable data - BEGIN + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_ISO9797_M1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 04 ff ff 00 03 00 80 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;89.00;99.00;87.00;89.00;88.00; +baseline stats (ms):;avg:;90.40;min:;87.00;max:;99.00;;;CHECK +operation raw measurements (ms):;7.60;11.60;10.60;11.60;10.60; +operation stats (ms/op):;avg op:;2.08;min op:;1.52;max op:;2.32;;CHECK +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_ISO9797_M1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 04 ff ff 00 03 00 80 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;94.00;91.00;90.00;91.00;89.00; +baseline stats (ms):;avg:;91.00;min:;89.00;max:;94.00; +operation raw measurements (ms):;21.00;19.00;20.00;20.00;20.00; +operation stats (ms/op):;avg op:;4.00;min op:;3.80;max op:;4.20; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_ISO9797_M1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 04 ff ff 00 03 00 80 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;94.00;323.00;93.00;94.00;95.00; +baseline stats (ms):;avg:;139.80;min:;93.00;max:;323.00;;;CHECK +operation raw measurements (ms):;-8.80;-8.80;-9.80;-9.80;-8.80; +operation stats (ms/op):;avg op:;-1.84;min op:;-1.96;max op:;-1.76; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_ISO9797_M1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 04 ff ff 00 03 00 80 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;98.00;100.00;99.00;101.00;100.00; +baseline stats (ms):;avg:;99.60;min:;98.00;max:;101.00; +operation raw measurements (ms):;70.40;69.40;69.40;70.40;69.40; +operation stats (ms/op):;avg op:;13.96;min op:;13.88;max op:;14.08; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_ISO9797_M1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 04 ff ff 00 03 00 80 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;113.00;110.00;109.00;111.00;113.00; +baseline stats (ms):;avg:;111.20;min:;109.00;max:;113.00; +operation raw measurements (ms):;135.80;134.80;134.80;131.80;134.80; +operation stats (ms/op):;avg op:;26.88;min op:;26.36;max op:;27.16; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_ISO9797_M1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 04 ff ff 00 03 00 80 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;139.00;140.00;138.00;139.00;139.00; +baseline stats (ms):;avg:;139.25;min:;138.00;max:;140.00; +operation raw measurements (ms):;264.75;264.75;263.75;264.75;264.75; +operation stats (ms/op):;avg op:;52.91;min op:;52.75;max op:;52.95; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_ISO9797_M1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 04 ff ff 00 03 00 80 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;87.00;100.00;86.00;304.00;86.00; +baseline stats (ms):;avg:;132.60;min:;86.00;max:;304.00;;;CHECK +operation raw measurements (ms):;56.40;60.40;61.40;62.40;62.40; +operation stats (ms/op):;avg op:;12.12;min op:;11.28;max op:;12.48;;CHECK +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_ISO9797_M1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 04 ff ff 00 03 00 80 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;88.00;86.00;146.00;87.00;86.00; +baseline stats (ms):;avg:;98.60;min:;86.00;max:;146.00;;;CHECK +operation raw measurements (ms):;105.40;104.40;103.40;103.40;105.40; +operation stats (ms/op):;avg op:;20.88;min op:;20.68;max op:;21.08; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_ISO9797_M1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 04 ff ff 00 03 00 80 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;86.00;290.00;86.00;87.00;87.00; +baseline stats (ms):;avg:;127.20;min:;86.00;max:;290.00;;;CHECK +operation raw measurements (ms):;85.80;84.80;90.80;91.80;90.80; +operation stats (ms/op):;avg op:;17.76;min op:;16.96;max op:;18.36; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_ISO9797_M1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 04 ff ff 00 03 00 80 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;393.00;86.00;87.00;87.00;85.00; +baseline stats (ms):;avg:;147.60;min:;85.00;max:;393.00;;;CHECK +operation raw measurements (ms):;103.40;103.40;104.40;104.40;104.40; +operation stats (ms/op):;avg op:;20.80;min op:;20.68;max op:;20.88; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_ISO9797_M1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 04 ff ff 00 03 00 80 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;86.00;88.00;86.00;86.00;86.00; +baseline stats (ms):;avg:;86.40;min:;86.00;max:;88.00; +operation raw measurements (ms):;228.60;228.60;228.60;229.60;229.60; +operation stats (ms/op):;avg op:;45.80;min op:;45.72;max op:;45.92; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_ISO9797_M1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 04 ff ff 00 03 00 80 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;87.00;86.00;126.00;86.00;86.00; +baseline stats (ms):;avg:;94.20;min:;86.00;max:;126.00;;;CHECK +operation raw measurements (ms):;352.80;351.80;352.80;352.80;350.80; +operation stats (ms/op):;avg op:;70.44;min op:;70.16;max op:;70.56; +operation info:;data length;512;total iterations;25;total invocations;25; + + +SIGNATURE - TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_ISO9797_M1 - variable data - END + + +SIGNATURE - TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC8_ISO9797_M1 - variable data - BEGIN + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC8_ISO9797_M1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 04 ff ff 00 03 00 c0 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;93.00;92.00;92.00;91.00;93.00; +baseline stats (ms):;avg:;92.20;min:;91.00;max:;93.00; +operation raw measurements (ms):;26.80;26.80;26.80;27.80;27.80; +operation stats (ms/op):;avg op:;5.44;min op:;5.36;max op:;5.56; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC8_ISO9797_M1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 04 ff ff 00 03 00 c0 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;233.00;96.00;96.00;96.00;96.00; +baseline stats (ms):;avg:;123.40;min:;96.00;max:;233.00;;;CHECK +operation raw measurements (ms):;23.60;22.60;23.60;22.60;23.60; +operation stats (ms/op):;avg op:;4.64;min op:;4.52;max op:;4.72; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC8_ISO9797_M1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 04 ff ff 00 03 00 c0 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;101.00;104.00;104.00;105.00;104.00; +baseline stats (ms):;avg:;104.25;min:;101.00;max:;105.00; +operation raw measurements (ms):;94.75;94.75;93.75;93.75;94.75; +operation stats (ms/op):;avg op:;18.87;min op:;18.75;max op:;18.95; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC8_ISO9797_M1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 04 ff ff 00 03 00 c0 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;124.00;122.00;122.00;121.00;122.00; +baseline stats (ms):;avg:;122.20;min:;121.00;max:;124.00; +operation raw measurements (ms):;181.80;180.80;181.80;181.80;181.80; +operation stats (ms/op):;avg op:;36.32;min op:;36.16;max op:;36.36; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC8_ISO9797_M1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 04 ff ff 00 03 00 c0 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;157.00;159.00;156.00;157.00;157.00; +baseline stats (ms):;avg:;157.20;min:;156.00;max:;159.00; +operation raw measurements (ms):;356.80;356.80;356.80;356.80;356.80; +operation stats (ms/op):;avg op:;71.36;min op:;71.36;max op:;71.36; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC8_ISO9797_M1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 04 ff ff 00 03 00 c0 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;316.00;228.00;227.00;228.00;227.00; +baseline stats (ms):;avg:;245.20;min:;227.00;max:;316.00;;;CHECK +operation raw measurements (ms):;690.80;690.80;692.80;691.80;692.80; +operation stats (ms/op):;avg op:;138.36;min op:;138.16;max op:;138.56; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC8_ISO9797_M1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 04 ff ff 00 03 00 c0 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;86.00;445.00;85.00;87.00;86.00; +baseline stats (ms):;avg:;157.80;min:;85.00;max:;445.00;;;CHECK +operation raw measurements (ms):;58.20;57.20;57.20;57.20;58.20; +operation stats (ms/op):;avg op:;11.52;min op:;11.44;max op:;11.64; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC8_ISO9797_M1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 04 ff ff 00 03 00 c0 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;86.00;87.00;121.00;87.00;86.00; +baseline stats (ms):;avg:;93.40;min:;86.00;max:;121.00;;;CHECK +operation raw measurements (ms):;142.60;144.60;144.60;145.60;144.60; +operation stats (ms/op):;avg op:;28.88;min op:;28.52;max op:;29.12; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC8_ISO9797_M1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 04 ff ff 00 03 00 c0 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;87.00;461.00;86.00;86.00;86.00; +baseline stats (ms):;avg:;161.20;min:;86.00;max:;461.00;;;CHECK +operation raw measurements (ms):;121.80;119.80;119.80;119.80;120.80; +operation stats (ms/op):;avg op:;24.08;min op:;23.96;max op:;24.36; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC8_ISO9797_M1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 04 ff ff 00 03 00 c0 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;383.00;87.00;86.00;86.00;86.00; +baseline stats (ms):;avg:;145.60;min:;86.00;max:;383.00;;;CHECK +operation raw measurements (ms):;222.40;223.40;223.40;223.40;223.40; +operation stats (ms/op):;avg op:;44.64;min op:;44.48;max op:;44.68; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC8_ISO9797_M1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 04 ff ff 00 03 00 c0 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;86.00;87.00;88.00;83.00;85.00; +baseline stats (ms):;avg:;85.80;min:;83.00;max:;88.00; +operation raw measurements (ms):;456.20;456.20;458.20;458.20;458.20; +operation stats (ms/op):;avg op:;91.48;min op:;91.24;max op:;91.64; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC8_ISO9797_M1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 04 ff ff 00 03 00 c0 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;116.00;87.00;85.00;86.00;86.00; +baseline stats (ms):;avg:;92.00;min:;85.00;max:;116.00;;;CHECK +operation raw measurements (ms):;804.00;804.00;804.00;805.00;805.00; +operation stats (ms/op):;avg op:;160.88;min op:;160.80;max op:;161.00; +operation info:;data length;512;total iterations;25;total invocations;25; + + +SIGNATURE - TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC8_ISO9797_M1 - variable data - END + + +SIGNATURE - TYPE_DES LENGTH_DES ALG_DES_MAC8_ISO9797_M2 - variable data - BEGIN + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC8_ISO9797_M2 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 06 ff ff 00 03 00 40 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;89.00;89.00;90.00;88.00;89.00; +baseline stats (ms):;avg:;89.25;min:;88.00;max:;90.00; +operation raw measurements (ms):;13.75;16.75;16.75;16.75;17.75; +operation stats (ms/op):;avg op:;3.27;min op:;2.75;max op:;3.55;;CHECK +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC8_ISO9797_M2 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 06 ff ff 00 03 00 40 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;398.00;91.00;90.00;91.00;88.00; +baseline stats (ms):;avg:;151.60;min:;88.00;max:;398.00;;;CHECK +operation raw measurements (ms):;-36.60;-36.60;-35.60;-35.60;-35.60; +operation stats (ms/op):;avg op:;-7.20;min op:;-7.32;max op:;-7.12; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC8_ISO9797_M2 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 06 ff ff 00 03 00 40 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;94.00;95.00;94.00;93.00;94.00; +baseline stats (ms):;avg:;94.25;min:;93.00;max:;95.00; +operation raw measurements (ms):;39.75;39.75;39.75;39.75;39.75; +operation stats (ms/op):;avg op:;7.95;min op:;7.95;max op:;7.95; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC8_ISO9797_M2 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 06 ff ff 00 03 00 40 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;175.00;100.00;100.00;100.00;101.00; +baseline stats (ms):;avg:;115.20;min:;100.00;max:;175.00;;;CHECK +operation raw measurements (ms):;57.80;56.80;56.80;56.80;57.80; +operation stats (ms/op):;avg op:;11.44;min op:;11.36;max op:;11.56; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC8_ISO9797_M2 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 06 ff ff 00 03 00 40 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;113.00;113.00;114.00;113.00;113.00; +baseline stats (ms):;avg:;113.20;min:;113.00;max:;114.00; +operation raw measurements (ms):;134.80;135.80;135.80;134.80;135.80; +operation stats (ms/op):;avg op:;27.08;min op:;26.96;max op:;27.16; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC8_ISO9797_M2 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 06 ff ff 00 03 00 40 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;259.00;138.00;140.00;139.00;139.00; +baseline stats (ms):;avg:;163.00;min:;138.00;max:;259.00;;;CHECK +operation raw measurements (ms):;237.00;237.00;238.00;237.00;238.00; +operation stats (ms/op):;avg op:;47.48;min op:;47.40;max op:;47.60; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC8_ISO9797_M2 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 06 ff ff 00 03 00 40 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;86.00;87.00;87.00;86.00;86.00; +baseline stats (ms):;avg:;86.40;min:;86.00;max:;87.00; +operation raw measurements (ms):;112.60;111.60;111.60;112.60;110.60; +operation stats (ms/op):;avg op:;22.36;min op:;22.12;max op:;22.52; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC8_ISO9797_M2 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 06 ff ff 00 03 00 40 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;153.00;86.00;87.00;86.00;87.00; +baseline stats (ms):;avg:;99.80;min:;86.00;max:;153.00;;;CHECK +operation raw measurements (ms):;107.20;107.20;106.20;106.20;107.20; +operation stats (ms/op):;avg op:;21.36;min op:;21.24;max op:;21.44; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC8_ISO9797_M2 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 06 ff ff 00 03 00 40 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;86.00;89.00;87.00;86.00;87.00; +baseline stats (ms):;avg:;87.00;min:;86.00;max:;89.00; +operation raw measurements (ms):;136.00;135.00;134.00;135.00;134.00; +operation stats (ms/op):;avg op:;26.96;min op:;26.80;max op:;27.20; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC8_ISO9797_M2 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 06 ff ff 00 03 00 40 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;110.00;85.00;86.00;87.00;87.00; +baseline stats (ms):;avg:;91.00;min:;85.00;max:;110.00;;;CHECK +operation raw measurements (ms):;164.00;162.00;163.00;162.00;162.00; +operation stats (ms/op):;avg op:;32.52;min op:;32.40;max op:;32.80; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC8_ISO9797_M2 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 06 ff ff 00 03 00 40 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;86.00;87.00;86.00;86.00;86.00; +baseline stats (ms):;avg:;86.20;min:;86.00;max:;87.00; +operation raw measurements (ms):;231.80;230.80;230.80;229.80;229.80; +operation stats (ms/op):;avg op:;46.12;min op:;45.96;max op:;46.36; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC8_ISO9797_M2 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 06 ff ff 00 03 00 40 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;86.00;86.00;89.00;87.00;86.00; +baseline stats (ms):;avg:;86.80;min:;86.00;max:;89.00; +operation raw measurements (ms):;358.20;356.20;356.20;354.20;356.20; +operation stats (ms/op):;avg op:;71.24;min op:;70.84;max op:;71.64; +operation info:;data length;512;total iterations;25;total invocations;25; + + +SIGNATURE - TYPE_DES LENGTH_DES ALG_DES_MAC8_ISO9797_M2 - variable data - END + + +SIGNATURE - TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_ISO9797_M2 - variable data - BEGIN + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_ISO9797_M2 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 06 ff ff 00 03 00 80 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;90.00;89.00;89.00;90.00;90.00; +baseline stats (ms):;avg:;89.60;min:;89.00;max:;90.00; +operation raw measurements (ms):;16.40;16.40;17.40;16.40;16.40; +operation stats (ms/op):;avg op:;3.32;min op:;3.28;max op:;3.48; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_ISO9797_M2 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 06 ff ff 00 03 00 80 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;91.00;90.00;143.00;92.00;91.00; +baseline stats (ms):;avg:;101.40;min:;90.00;max:;143.00;;;CHECK +operation raw measurements (ms):;13.60;13.60;13.60;14.60;15.60; +operation stats (ms/op):;avg op:;2.84;min op:;2.72;max op:;3.12;;CHECK +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_ISO9797_M2 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 06 ff ff 00 03 00 80 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;94.00;95.00;94.00;94.00;94.00; +baseline stats (ms):;avg:;94.20;min:;94.00;max:;95.00; +operation raw measurements (ms):;40.80;41.80;40.80;40.80;39.80; +operation stats (ms/op):;avg op:;8.16;min op:;7.96;max op:;8.36; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_ISO9797_M2 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 06 ff ff 00 03 00 80 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;172.00;101.00;100.00;100.00;101.00; +baseline stats (ms):;avg:;114.80;min:;100.00;max:;172.00;;;CHECK +operation raw measurements (ms):;66.20;59.20;60.20;60.20;59.20; +operation stats (ms/op):;avg op:;12.20;min op:;11.84;max op:;13.24;;CHECK +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_ISO9797_M2 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 06 ff ff 00 03 00 80 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;114.00;115.00;113.00;114.00;114.00; +baseline stats (ms):;avg:;114.25;min:;113.00;max:;115.00; +operation raw measurements (ms):;138.75;137.75;137.75;137.75;137.75; +operation stats (ms/op):;avg op:;27.59;min op:;27.55;max op:;27.75; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_ISO9797_M2 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 06 ff ff 00 03 00 80 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;137.00;142.00;140.00;139.00;141.00; +baseline stats (ms):;avg:;139.80;min:;137.00;max:;142.00; +operation raw measurements (ms):;266.20;266.20;269.20;268.20;268.20; +operation stats (ms/op):;avg op:;53.52;min op:;53.24;max op:;53.84; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_ISO9797_M2 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 06 ff ff 00 03 00 80 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;86.00;85.00;87.00;87.00;86.00; +baseline stats (ms):;avg:;86.20;min:;85.00;max:;87.00; +operation raw measurements (ms):;113.80;112.80;111.80;111.80;111.80; +operation stats (ms/op):;avg op:;22.48;min op:;22.36;max op:;22.76; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_ISO9797_M2 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 06 ff ff 00 03 00 80 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;87.00;86.00;155.00;86.00;86.00; +baseline stats (ms):;avg:;100.00;min:;86.00;max:;155.00;;;CHECK +operation raw measurements (ms):;108.00;103.00;107.00;107.00;106.00; +operation stats (ms/op):;avg op:;21.24;min op:;20.60;max op:;21.60; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_ISO9797_M2 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 06 ff ff 00 03 00 80 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;85.00;86.00;87.00;86.00;86.00; +baseline stats (ms):;avg:;86.25;min:;85.00;max:;87.00; +operation raw measurements (ms):;138.75;136.75;135.75;136.75;136.75; +operation stats (ms/op):;avg op:;27.39;min op:;27.15;max op:;27.75; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_ISO9797_M2 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 06 ff ff 00 03 00 80 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;158.00;85.00;86.00;87.00;87.00; +baseline stats (ms):;avg:;100.60;min:;85.00;max:;158.00;;;CHECK +operation raw measurements (ms):;155.40;154.40;154.40;155.40;154.40; +operation stats (ms/op):;avg op:;30.96;min op:;30.88;max op:;31.08; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_ISO9797_M2 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 06 ff ff 00 03 00 80 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;87.00;328.00;86.00;87.00;86.00; +baseline stats (ms):;avg:;134.80;min:;86.00;max:;328.00;;;CHECK +operation raw measurements (ms):;187.20;185.20;185.20;185.20;185.20; +operation stats (ms/op):;avg op:;37.12;min op:;37.04;max op:;37.44; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_ISO9797_M2 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 06 ff ff 00 03 00 80 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;86.00;87.00;440.00;86.00;86.00; +baseline stats (ms):;avg:;157.00;min:;86.00;max:;440.00;;;CHECK +operation raw measurements (ms):;295.00;294.00;292.00;293.00;293.00; +operation stats (ms/op):;avg op:;58.68;min op:;58.40;max op:;59.00; +operation info:;data length;512;total iterations;25;total invocations;25; + + +SIGNATURE - TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_ISO9797_M2 - variable data - END + + +SIGNATURE - TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC8_ISO9797_M2 - variable data - BEGIN + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC8_ISO9797_M2 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 06 ff ff 00 03 00 c0 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;94.00;103.00;93.00;277.00;94.00; +baseline stats (ms):;avg:;132.20;min:;93.00;max:;277.00;;;CHECK +operation raw measurements (ms):;0.80;-0.20;0.80;0.80;0.80; +operation stats (ms/op):;avg op:;0.12;min op:;-0.04;max op:;0.16;;CHECK +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC8_ISO9797_M2 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 06 ff ff 00 03 00 c0 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;98.00;99.00;98.00;99.00;98.00; +baseline stats (ms):;avg:;98.40;min:;98.00;max:;99.00; +operation raw measurements (ms):;61.60;61.60;61.60;60.60;59.60; +operation stats (ms/op):;avg op:;12.20;min op:;11.92;max op:;12.32; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC8_ISO9797_M2 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 06 ff ff 00 03 00 c0 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;106.00;461.00;106.00;106.00;107.00; +baseline stats (ms):;avg:;177.20;min:;106.00;max:;461.00;;;CHECK +operation raw measurements (ms):;33.80;34.80;34.80;33.80;34.80; +operation stats (ms/op):;avg op:;6.88;min op:;6.76;max op:;6.96; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC8_ISO9797_M2 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 06 ff ff 00 03 00 c0 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;162.00;125.00;125.00;124.00;125.00; +baseline stats (ms):;avg:;132.20;min:;124.00;max:;162.00;;;CHECK +operation raw measurements (ms):;182.80;184.80;184.80;183.80;183.80; +operation stats (ms/op):;avg op:;36.80;min op:;36.56;max op:;36.96; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC8_ISO9797_M2 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 06 ff ff 00 03 00 c0 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;160.00;159.00;160.00;159.00;160.00; +baseline stats (ms):;avg:;159.60;min:;159.00;max:;160.00; +operation raw measurements (ms):;366.40;367.40;368.40;369.40;368.40; +operation stats (ms/op):;avg op:;73.60;min op:;73.28;max op:;73.88; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC8_ISO9797_M2 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 06 ff ff 00 03 00 c0 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;393.00;230.00;230.00;230.00;230.00; +baseline stats (ms):;avg:;262.60;min:;230.00;max:;393.00;;;CHECK +operation raw measurements (ms):;685.40;686.40;684.40;686.40;687.40; +operation stats (ms/op):;avg op:;137.20;min op:;136.88;max op:;137.48; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC8_ISO9797_M2 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 06 ff ff 00 03 00 c0 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;86.00;329.00;86.00;86.00;86.00; +baseline stats (ms):;avg:;134.60;min:;86.00;max:;329.00;;;CHECK +operation raw measurements (ms):;92.40;92.40;92.40;92.40;92.40; +operation stats (ms/op):;avg op:;18.48;min op:;18.48;max op:;18.48; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC8_ISO9797_M2 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 06 ff ff 00 03 00 c0 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;86.00;85.00;128.00;86.00;86.00; +baseline stats (ms):;avg:;94.20;min:;85.00;max:;128.00;;;CHECK +operation raw measurements (ms):;154.80;154.80;153.80;153.80;154.80; +operation stats (ms/op):;avg op:;30.88;min op:;30.76;max op:;30.96; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC8_ISO9797_M2 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 06 ff ff 00 03 00 c0 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;86.00;461.00;86.00;87.00;85.00; +baseline stats (ms):;avg:;161.00;min:;85.00;max:;461.00;;;CHECK +operation raw measurements (ms):;131.00;131.00;132.00;131.00;133.00; +operation stats (ms/op):;avg op:;26.32;min op:;26.20;max op:;26.60; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC8_ISO9797_M2 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 06 ff ff 00 03 00 c0 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;87.00;86.00;96.00;87.00;286.00; +baseline stats (ms):;avg:;128.40;min:;86.00;max:;286.00;;;CHECK +operation raw measurements (ms):;251.60;252.60;251.60;251.60;249.60; +operation stats (ms/op):;avg op:;50.28;min op:;49.92;max op:;50.52; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC8_ISO9797_M2 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 06 ff ff 00 03 00 c0 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;83.00;228.00;83.00;86.00;85.00; +baseline stats (ms):;avg:;113.00;min:;83.00;max:;228.00;;;CHECK +operation raw measurements (ms):;441.00;442.00;442.00;442.00;442.00; +operation stats (ms/op):;avg op:;88.36;min op:;88.20;max op:;88.40; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC8_ISO9797_M2 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 06 ff ff 00 03 00 c0 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;86.00;85.00;85.00;87.00;86.00; +baseline stats (ms):;avg:;85.80;min:;85.00;max:;87.00; +operation raw measurements (ms):;821.20;821.20;821.20;822.20;822.20; +operation stats (ms/op):;avg op:;164.32;min op:;164.24;max op:;164.44; +operation info:;data length;512;total iterations;25;total invocations;25; + + +SIGNATURE - TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC8_ISO9797_M2 - variable data - END + + +SIGNATURE - TYPE_DES LENGTH_DES ALG_DES_MAC8_NOPAD - variable data - BEGIN + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC8_NOPAD Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 02 ff ff 00 03 00 40 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;88.00;88.00;89.00;89.00;88.00; +baseline stats (ms):;avg:;88.40;min:;88.00;max:;89.00; +operation raw measurements (ms):;11.60;13.60;13.60;13.60;12.60; +operation stats (ms/op):;avg op:;2.60;min op:;2.32;max op:;2.72;;CHECK +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC8_NOPAD Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 02 ff ff 00 03 00 40 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;91.00;91.00;148.00;89.00;90.00; +baseline stats (ms):;avg:;101.80;min:;89.00;max:;148.00;;;CHECK +operation raw measurements (ms):;9.20;8.20;10.20;8.20;8.20; +operation stats (ms/op):;avg op:;1.76;min op:;1.64;max op:;2.04;;CHECK +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC8_NOPAD Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 02 ff ff 00 03 00 40 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;91.00;142.00;93.00;92.00;93.00; +baseline stats (ms):;avg:;102.20;min:;91.00;max:;142.00;;;CHECK +operation raw measurements (ms):;27.80;27.80;27.80;27.80;28.80; +operation stats (ms/op):;avg op:;5.60;min op:;5.56;max op:;5.76; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC8_NOPAD Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 02 ff ff 00 03 00 40 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;205.00;99.00;99.00;101.00;100.00; +baseline stats (ms):;avg:;120.80;min:;99.00;max:;205.00;;;CHECK +operation raw measurements (ms):;46.20;46.20;47.20;48.20;48.20; +operation stats (ms/op):;avg op:;9.44;min op:;9.24;max op:;9.64; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC8_NOPAD Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 02 ff ff 00 03 00 40 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;112.00;111.00;112.00;112.00;112.00; +baseline stats (ms):;avg:;112.00;min:;111.00;max:;112.00; +operation raw measurements (ms):;132.00;132.00;132.00;133.00;133.00; +operation stats (ms/op):;avg op:;26.48;min op:;26.40;max op:;26.60; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC8_NOPAD Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 02 ff ff 00 03 00 40 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;138.00;139.00;138.00;137.00;136.00; +baseline stats (ms):;avg:;137.60;min:;136.00;max:;139.00; +operation raw measurements (ms):;257.40;258.40;258.40;259.40;258.40; +operation stats (ms/op):;avg op:;51.68;min op:;51.48;max op:;51.88; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC8_NOPAD Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 02 ff ff 00 03 00 40 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;85.00;90.00;86.00;86.00;86.00; +baseline stats (ms):;avg:;86.60;min:;85.00;max:;90.00; +operation raw measurements (ms):;109.40;106.40;109.40;108.40;107.40; +operation stats (ms/op):;avg op:;21.64;min op:;21.28;max op:;21.88; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC8_NOPAD Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 02 ff ff 00 03 00 40 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;157.00;86.00;87.00;86.00;86.00; +baseline stats (ms):;avg:;100.40;min:;86.00;max:;157.00;;;CHECK +operation raw measurements (ms):;101.60;101.60;100.60;102.60;101.60; +operation stats (ms/op):;avg op:;20.32;min op:;20.12;max op:;20.52; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC8_NOPAD Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 02 ff ff 00 03 00 40 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;86.00;85.00;86.00;86.00;87.00; +baseline stats (ms):;avg:;86.25;min:;85.00;max:;87.00; +operation raw measurements (ms):;131.75;130.75;131.75;131.75;130.75; +operation stats (ms/op):;avg op:;26.27;min op:;26.15;max op:;26.35; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC8_NOPAD Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 02 ff ff 00 03 00 40 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;87.00;86.00;110.00;86.00;87.00; +baseline stats (ms):;avg:;91.20;min:;86.00;max:;110.00;;;CHECK +operation raw measurements (ms):;159.80;157.80;158.80;158.80;156.80; +operation stats (ms/op):;avg op:;31.68;min op:;31.36;max op:;31.96; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC8_NOPAD Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 02 ff ff 00 03 00 40 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;86.00;445.00;86.00;86.00;86.00; +baseline stats (ms):;avg:;157.80;min:;86.00;max:;445.00;;;CHECK +operation raw measurements (ms):;156.20;156.20;156.20;155.20;159.20; +operation stats (ms/op):;avg op:;31.32;min op:;31.04;max op:;31.84; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC8_NOPAD Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 02 ff ff 00 03 00 40 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;86.00;86.00;86.00;87.00;85.00; +baseline stats (ms):;avg:;86.25;min:;85.00;max:;87.00; +operation raw measurements (ms):;354.75;354.75;353.75;354.75;354.75; +operation stats (ms/op):;avg op:;70.91;min op:;70.75;max op:;70.95; +operation info:;data length;512;total iterations;25;total invocations;25; + + +SIGNATURE - TYPE_DES LENGTH_DES ALG_DES_MAC8_NOPAD - variable data - END + + +SIGNATURE - TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_NOPAD - variable data - BEGIN + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_NOPAD Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 02 ff ff 00 03 00 80 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;89.00;272.00;88.00;89.00;88.00; +baseline stats (ms):;avg:;125.20;min:;88.00;max:;272.00;;;CHECK +operation raw measurements (ms):;-24.20;-23.20;-23.20;-24.20;-23.20; +operation stats (ms/op):;avg op:;-4.72;min op:;-4.84;max op:;-4.64; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_NOPAD Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 02 ff ff 00 03 00 80 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;98.00;90.00;91.00;90.00;90.00; +baseline stats (ms):;avg:;91.80;min:;90.00;max:;98.00;;;CHECK +operation raw measurements (ms):;19.20;19.20;19.20;19.20;19.20; +operation stats (ms/op):;avg op:;3.84;min op:;3.84;max op:;3.84; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_NOPAD Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 02 ff ff 00 03 00 80 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;93.00;331.00;93.00;93.00;94.00; +baseline stats (ms):;avg:;140.80;min:;93.00;max:;331.00;;;CHECK +operation raw measurements (ms):;-10.80;-6.80;-10.80;-10.80;-9.80; +operation stats (ms/op):;avg op:;-1.96;min op:;-2.16;max op:;-1.36; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_NOPAD Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 02 ff ff 00 03 00 80 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;204.00;99.00;100.00;101.00;100.00; +baseline stats (ms):;avg:;120.80;min:;99.00;max:;204.00;;;CHECK +operation raw measurements (ms):;48.20;50.20;49.20;48.20;48.20; +operation stats (ms/op):;avg op:;9.76;min op:;9.64;max op:;10.04; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_NOPAD Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 02 ff ff 00 03 00 80 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;112.00;116.00;112.00;111.00;113.00; +baseline stats (ms):;avg:;112.80;min:;111.00;max:;116.00; +operation raw measurements (ms):;134.20;135.20;136.20;135.20;135.20; +operation stats (ms/op):;avg op:;27.04;min op:;26.84;max op:;27.24; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_NOPAD Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 02 ff ff 00 03 00 80 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;140.00;140.00;140.00;140.00;138.00; +baseline stats (ms):;avg:;140.00;min:;138.00;max:;140.00; +operation raw measurements (ms):;263.00;264.00;264.00;263.00;264.00; +operation stats (ms/op):;avg op:;52.72;min op:;52.60;max op:;52.80; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_NOPAD Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 02 ff ff 00 03 00 80 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;87.00;107.00;86.00;85.00;86.00; +baseline stats (ms):;avg:;90.20;min:;85.00;max:;107.00;;;CHECK +operation raw measurements (ms):;105.80;104.80;103.80;104.80;105.80; +operation stats (ms/op):;avg op:;21.00;min op:;20.76;max op:;21.16; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_NOPAD Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 02 ff ff 00 03 00 80 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;86.00;86.00;87.00;86.00;87.00; +baseline stats (ms):;avg:;86.40;min:;86.00;max:;87.00; +operation raw measurements (ms):;117.60;115.60;116.60;115.60;115.60; +operation stats (ms/op):;avg op:;23.24;min op:;23.12;max op:;23.52; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_NOPAD Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 02 ff ff 00 03 00 80 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;86.00;86.00;87.00;86.00;86.00; +baseline stats (ms):;avg:;86.20;min:;86.00;max:;87.00; +operation raw measurements (ms):;134.80;131.80;132.80;133.80;132.80; +operation stats (ms/op):;avg op:;26.64;min op:;26.36;max op:;26.96; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_NOPAD Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 02 ff ff 00 03 00 80 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;175.00;85.00;86.00;86.00;85.00; +baseline stats (ms):;avg:;103.40;min:;85.00;max:;175.00;;;CHECK +operation raw measurements (ms):;149.60;148.60;147.60;147.60;148.60; +operation stats (ms/op):;avg op:;29.68;min op:;29.52;max op:;29.92; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_NOPAD Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 02 ff ff 00 03 00 80 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;86.00;85.00;86.00;86.00;87.00; +baseline stats (ms):;avg:;86.25;min:;85.00;max:;87.00; +operation raw measurements (ms):;230.75;229.75;228.75;229.75;228.75; +operation stats (ms/op):;avg op:;45.91;min op:;45.75;max op:;46.15; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_NOPAD Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 02 ff ff 00 03 00 80 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;87.00;87.00;85.00;85.00;86.00; +baseline stats (ms):;avg:;86.00;min:;85.00;max:;87.00; +operation raw measurements (ms):;362.00;360.00;361.00;361.00;359.00; +operation stats (ms/op):;avg op:;72.12;min op:;71.80;max op:;72.40; +operation info:;data length;512;total iterations;25;total invocations;25; + + +SIGNATURE - TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_NOPAD - variable data - END + + +SIGNATURE - TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC8_NOPAD - variable data - BEGIN + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC8_NOPAD Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 02 ff ff 00 03 00 c0 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;92.00;92.00;91.00;92.00;92.00; +baseline stats (ms):;avg:;92.00;min:;91.00;max:;92.00; +operation raw measurements (ms):;27.00;29.00;28.00;29.00;28.00; +operation stats (ms/op):;avg op:;5.64;min op:;5.40;max op:;5.80; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC8_NOPAD Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 02 ff ff 00 03 00 c0 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;96.00;96.00;93.00;96.00;96.00; +baseline stats (ms):;avg:;96.00;min:;93.00;max:;96.00; +operation raw measurements (ms):;47.00;46.00;49.00;51.00;49.00; +operation stats (ms/op):;avg op:;9.68;min op:;9.20;max op:;10.20;;CHECK +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC8_NOPAD Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 02 ff ff 00 03 00 c0 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;105.00;103.00;104.00;105.00;103.00; +baseline stats (ms):;avg:;104.00;min:;103.00;max:;105.00; +operation raw measurements (ms):;95.00;95.00;95.00;96.00;94.00; +operation stats (ms/op):;avg op:;19.00;min op:;18.80;max op:;19.20; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC8_NOPAD Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 02 ff ff 00 03 00 c0 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;173.00;121.00;122.00;122.00;122.00; +baseline stats (ms):;avg:;132.00;min:;121.00;max:;173.00;;;CHECK +operation raw measurements (ms):;172.00;171.00;171.00;171.00;171.00; +operation stats (ms/op):;avg op:;34.24;min op:;34.20;max op:;34.40; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC8_NOPAD Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 02 ff ff 00 03 00 c0 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;158.00;218.00;157.00;157.00;154.00; +baseline stats (ms):;avg:;168.80;min:;154.00;max:;218.00;;;CHECK +operation raw measurements (ms):;345.20;345.20;346.20;345.20;345.20; +operation stats (ms/op):;avg op:;69.08;min op:;69.04;max op:;69.24; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC8_NOPAD Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 02 ff ff 00 03 00 c0 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;228.00;228.00;227.00;229.00;228.00; +baseline stats (ms):;avg:;228.25;min:;227.00;max:;229.00; +operation raw measurements (ms):;708.75;707.75;708.75;709.75;707.75; +operation stats (ms/op):;avg op:;141.71;min op:;141.55;max op:;141.95; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC8_NOPAD Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 02 ff ff 00 03 00 c0 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;86.00;341.00;87.00;86.00;87.00; +baseline stats (ms):;avg:;137.40;min:;86.00;max:;341.00;;;CHECK +operation raw measurements (ms):;78.60;78.60;78.60;78.60;77.60; +operation stats (ms/op):;avg op:;15.68;min op:;15.52;max op:;15.72; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC8_NOPAD Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 02 ff ff 00 03 00 c0 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;393.00;87.00;87.00;86.00;85.00; +baseline stats (ms):;avg:;147.60;min:;85.00;max:;393.00;;;CHECK +operation raw measurements (ms):;90.40;90.40;90.40;90.40;89.40; +operation stats (ms/op):;avg op:;18.04;min op:;17.88;max op:;18.08; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC8_NOPAD Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 02 ff ff 00 03 00 c0 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;86.00;88.00;85.00;87.00;86.00; +baseline stats (ms):;avg:;86.40;min:;85.00;max:;88.00; +operation raw measurements (ms):;194.60;194.60;194.60;195.60;195.60; +operation stats (ms/op):;avg op:;39.00;min op:;38.92;max op:;39.12; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC8_NOPAD Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 02 ff ff 00 03 00 c0 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;85.00;87.00;447.00;87.00;85.00; +baseline stats (ms):;avg:;158.20;min:;85.00;max:;447.00;;;CHECK +operation raw measurements (ms):;210.80;209.80;211.80;210.80;209.80; +operation stats (ms/op):;avg op:;42.12;min op:;41.96;max op:;42.36; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC8_NOPAD Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 02 ff ff 00 03 00 c0 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;86.00;460.00;85.00;86.00;85.00; +baseline stats (ms):;avg:;160.40;min:;85.00;max:;460.00;;;CHECK +operation raw measurements (ms):;382.60;379.60;382.60;383.60;383.60; +operation stats (ms/op):;avg op:;76.48;min op:;75.92;max op:;76.72; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC8_NOPAD Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 02 ff ff 00 03 00 c0 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;82.00;87.00;86.00;86.00;86.00; +baseline stats (ms):;avg:;86.25;min:;82.00;max:;87.00; +operation raw measurements (ms):;808.75;809.75;809.75;810.75;811.75; +operation stats (ms/op):;avg op:;162.03;min op:;161.75;max op:;162.35; +operation info:;data length;512;total iterations;25;total invocations;25; + + +SIGNATURE - TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC8_NOPAD - variable data - END + + +SIGNATURE - TYPE_DES LENGTH_DES ALG_DES_MAC8_PKCS5 - variable data - BEGIN + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC8_PKCS5 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 08 ff ff 00 03 00 40 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC8_PKCS5 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 08 ff ff 00 03 00 40 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC8_PKCS5 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 08 ff ff 00 03 00 40 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC8_PKCS5 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 08 ff ff 00 03 00 40 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC8_PKCS5 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 08 ff ff 00 03 00 40 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC8_PKCS5 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 08 ff ff 00 03 00 40 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC8_PKCS5 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 08 ff ff 00 03 00 40 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC8_PKCS5 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 08 ff ff 00 03 00 40 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC8_PKCS5 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 08 ff ff 00 03 00 40 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC8_PKCS5 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 08 ff ff 00 03 00 40 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC8_PKCS5 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 08 ff ff 00 03 00 40 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES ALG_DES_MAC8_PKCS5 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 08 ff ff 00 03 00 40 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - TYPE_DES LENGTH_DES ALG_DES_MAC8_PKCS5 - variable data - END + + +SIGNATURE - TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_PKCS5 - variable data - BEGIN + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_PKCS5 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 08 ff ff 00 03 00 80 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_PKCS5 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 08 ff ff 00 03 00 80 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_PKCS5 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 08 ff ff 00 03 00 80 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_PKCS5 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 08 ff ff 00 03 00 80 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_PKCS5 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 08 ff ff 00 03 00 80 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_PKCS5 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 08 ff ff 00 03 00 80 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_PKCS5 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 08 ff ff 00 03 00 80 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_PKCS5 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 08 ff ff 00 03 00 80 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_PKCS5 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 08 ff ff 00 03 00 80 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_PKCS5 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 08 ff ff 00 03 00 80 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_PKCS5 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 08 ff ff 00 03 00 80 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_PKCS5 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 08 ff ff 00 03 00 80 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - TYPE_DES LENGTH_DES3_2KEY ALG_DES_MAC8_PKCS5 - variable data - END + + +SIGNATURE - TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC8_PKCS5 - variable data - BEGIN + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC8_PKCS5 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 08 ff ff 00 03 00 c0 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC8_PKCS5 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 08 ff ff 00 03 00 c0 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC8_PKCS5 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 08 ff ff 00 03 00 c0 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC8_PKCS5 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 08 ff ff 00 03 00 c0 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC8_PKCS5 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 08 ff ff 00 03 00 c0 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC8_PKCS5 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 08 ff ff 00 03 00 c0 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC8_PKCS5 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 08 ff ff 00 03 00 c0 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC8_PKCS5 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 08 ff ff 00 03 00 c0 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC8_PKCS5 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 08 ff ff 00 03 00 c0 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC8_PKCS5 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 08 ff ff 00 03 00 c0 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC8_PKCS5 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 08 ff ff 00 03 00 c0 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC8_PKCS5 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 08 ff ff 00 03 00 c0 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - TYPE_DES LENGTH_DES3_3KEY ALG_DES_MAC8_PKCS5 - variable data - END + + +SIGNATURE - KeyPair_ALG_EC_F2M KeyBuilder_LENGTH_EC_F2M_113 Signature_ALG_ECDSA_SHA - variable data - BEGIN + +method name:; KeyPair_ALG_EC_F2M KeyBuilder_LENGTH_EC_F2M_113 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 04 00 0a 00 71 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_F2M KeyBuilder_LENGTH_EC_F2M_113 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 04 00 0a 00 71 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_F2M KeyBuilder_LENGTH_EC_F2M_113 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 04 00 0a 00 71 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_F2M KeyBuilder_LENGTH_EC_F2M_113 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 04 00 0a 00 71 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_F2M KeyBuilder_LENGTH_EC_F2M_113 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 04 00 0a 00 71 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_F2M KeyBuilder_LENGTH_EC_F2M_113 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 04 00 0a 00 71 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_F2M KeyBuilder_LENGTH_EC_F2M_113 Signature_ALG_ECDSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 11 00 04 00 0a 00 71 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_F2M KeyBuilder_LENGTH_EC_F2M_113 Signature_ALG_ECDSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 11 00 04 00 0a 00 71 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_F2M KeyBuilder_LENGTH_EC_F2M_113 Signature_ALG_ECDSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 11 00 04 00 0a 00 71 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_F2M KeyBuilder_LENGTH_EC_F2M_113 Signature_ALG_ECDSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 11 00 04 00 0a 00 71 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_F2M KeyBuilder_LENGTH_EC_F2M_113 Signature_ALG_ECDSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 11 00 04 00 0a 00 71 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_F2M KeyBuilder_LENGTH_EC_F2M_113 Signature_ALG_ECDSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 11 00 04 00 0a 00 71 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - KeyPair_ALG_EC_F2M KeyBuilder_LENGTH_EC_F2M_113 Signature_ALG_ECDSA_SHA - variable data - END + + +SIGNATURE - KeyPair_ALG_EC_F2M KeyBuilder_LENGTH_EC_F2M_131 Signature_ALG_ECDSA_SHA - variable data - BEGIN + +method name:; KeyPair_ALG_EC_F2M KeyBuilder_LENGTH_EC_F2M_131 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 04 00 0a 00 83 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_F2M KeyBuilder_LENGTH_EC_F2M_131 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 04 00 0a 00 83 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_F2M KeyBuilder_LENGTH_EC_F2M_131 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 04 00 0a 00 83 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_F2M KeyBuilder_LENGTH_EC_F2M_131 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 04 00 0a 00 83 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_F2M KeyBuilder_LENGTH_EC_F2M_131 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 04 00 0a 00 83 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_F2M KeyBuilder_LENGTH_EC_F2M_131 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 04 00 0a 00 83 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_F2M KeyBuilder_LENGTH_EC_F2M_131 Signature_ALG_ECDSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 11 00 04 00 0a 00 83 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_F2M KeyBuilder_LENGTH_EC_F2M_131 Signature_ALG_ECDSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 11 00 04 00 0a 00 83 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_F2M KeyBuilder_LENGTH_EC_F2M_131 Signature_ALG_ECDSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 11 00 04 00 0a 00 83 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_F2M KeyBuilder_LENGTH_EC_F2M_131 Signature_ALG_ECDSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 11 00 04 00 0a 00 83 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_F2M KeyBuilder_LENGTH_EC_F2M_131 Signature_ALG_ECDSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 11 00 04 00 0a 00 83 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_F2M KeyBuilder_LENGTH_EC_F2M_131 Signature_ALG_ECDSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 11 00 04 00 0a 00 83 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - KeyPair_ALG_EC_F2M KeyBuilder_LENGTH_EC_F2M_131 Signature_ALG_ECDSA_SHA - variable data - END + + +SIGNATURE - KeyPair_ALG_EC_F2M KeyBuilder_LENGTH_EC_F2M_163 Signature_ALG_ECDSA_SHA - variable data - BEGIN + +method name:; KeyPair_ALG_EC_F2M KeyBuilder_LENGTH_EC_F2M_163 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 04 00 0a 00 a3 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_F2M KeyBuilder_LENGTH_EC_F2M_163 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 04 00 0a 00 a3 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_F2M KeyBuilder_LENGTH_EC_F2M_163 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 04 00 0a 00 a3 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_F2M KeyBuilder_LENGTH_EC_F2M_163 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 04 00 0a 00 a3 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_F2M KeyBuilder_LENGTH_EC_F2M_163 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 04 00 0a 00 a3 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_F2M KeyBuilder_LENGTH_EC_F2M_163 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 04 00 0a 00 a3 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_F2M KeyBuilder_LENGTH_EC_F2M_163 Signature_ALG_ECDSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 11 00 04 00 0a 00 a3 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_F2M KeyBuilder_LENGTH_EC_F2M_163 Signature_ALG_ECDSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 11 00 04 00 0a 00 a3 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_F2M KeyBuilder_LENGTH_EC_F2M_163 Signature_ALG_ECDSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 11 00 04 00 0a 00 a3 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_F2M KeyBuilder_LENGTH_EC_F2M_163 Signature_ALG_ECDSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 11 00 04 00 0a 00 a3 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_F2M KeyBuilder_LENGTH_EC_F2M_163 Signature_ALG_ECDSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 11 00 04 00 0a 00 a3 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_F2M KeyBuilder_LENGTH_EC_F2M_163 Signature_ALG_ECDSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 11 00 04 00 0a 00 a3 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - KeyPair_ALG_EC_F2M KeyBuilder_LENGTH_EC_F2M_163 Signature_ALG_ECDSA_SHA - variable data - END + + +SIGNATURE - KeyPair_ALG_EC_F2M KeyBuilder_LENGTH_EC_F2M_193 Signature_ALG_ECDSA_SHA - variable data - BEGIN + +method name:; KeyPair_ALG_EC_F2M KeyBuilder_LENGTH_EC_F2M_193 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 04 00 0a 00 c1 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_F2M KeyBuilder_LENGTH_EC_F2M_193 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 04 00 0a 00 c1 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_F2M KeyBuilder_LENGTH_EC_F2M_193 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 04 00 0a 00 c1 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_F2M KeyBuilder_LENGTH_EC_F2M_193 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 04 00 0a 00 c1 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_F2M KeyBuilder_LENGTH_EC_F2M_193 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 04 00 0a 00 c1 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_F2M KeyBuilder_LENGTH_EC_F2M_193 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 04 00 0a 00 c1 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_F2M KeyBuilder_LENGTH_EC_F2M_193 Signature_ALG_ECDSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 11 00 04 00 0a 00 c1 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_F2M KeyBuilder_LENGTH_EC_F2M_193 Signature_ALG_ECDSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 11 00 04 00 0a 00 c1 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_F2M KeyBuilder_LENGTH_EC_F2M_193 Signature_ALG_ECDSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 11 00 04 00 0a 00 c1 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_F2M KeyBuilder_LENGTH_EC_F2M_193 Signature_ALG_ECDSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 11 00 04 00 0a 00 c1 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_F2M KeyBuilder_LENGTH_EC_F2M_193 Signature_ALG_ECDSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 11 00 04 00 0a 00 c1 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_F2M KeyBuilder_LENGTH_EC_F2M_193 Signature_ALG_ECDSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 11 00 04 00 0a 00 c1 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - KeyPair_ALG_EC_F2M KeyBuilder_LENGTH_EC_F2M_193 Signature_ALG_ECDSA_SHA - variable data - END + + +SIGNATURE - KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_112 Signature_ALG_ECDSA_SHA - variable data - BEGIN + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_112 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 05 00 0c 00 70 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_112 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 05 00 0c 00 70 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_112 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 05 00 0c 00 70 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_112 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 05 00 0c 00 70 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_112 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 05 00 0c 00 70 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_112 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 05 00 0c 00 70 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_112 Signature_ALG_ECDSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 11 00 05 00 0c 00 70 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_112 Signature_ALG_ECDSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 11 00 05 00 0c 00 70 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_112 Signature_ALG_ECDSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 11 00 05 00 0c 00 70 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_112 Signature_ALG_ECDSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 11 00 05 00 0c 00 70 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_112 Signature_ALG_ECDSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 11 00 05 00 0c 00 70 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_112 Signature_ALG_ECDSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 11 00 05 00 0c 00 70 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_112 Signature_ALG_ECDSA_SHA - variable data - END + + +SIGNATURE - KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_128 Signature_ALG_ECDSA_SHA - variable data - BEGIN + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_128 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 05 00 0c 00 80 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_128 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 05 00 0c 00 80 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_128 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 05 00 0c 00 80 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_128 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 05 00 0c 00 80 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_128 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 05 00 0c 00 80 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_128 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 05 00 0c 00 80 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_128 Signature_ALG_ECDSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 11 00 05 00 0c 00 80 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_128 Signature_ALG_ECDSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 11 00 05 00 0c 00 80 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_128 Signature_ALG_ECDSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 11 00 05 00 0c 00 80 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_128 Signature_ALG_ECDSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 11 00 05 00 0c 00 80 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_128 Signature_ALG_ECDSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 11 00 05 00 0c 00 80 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_128 Signature_ALG_ECDSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 11 00 05 00 0c 00 80 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_128 Signature_ALG_ECDSA_SHA - variable data - END + + +SIGNATURE - KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_160 Signature_ALG_ECDSA_SHA - variable data - BEGIN + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_160 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 05 00 0c 00 a0 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;163.00;164.00;162.00;162.00;163.00; +baseline stats (ms):;avg:;162.80;min:;162.00;max:;164.00; +operation raw measurements (ms):;333.20;332.20;331.20;333.20;333.20; +operation stats (ms/op):;avg op:;66.52;min op:;66.24;max op:;66.64; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_160 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 05 00 0c 00 a0 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;163.00;172.00;163.00;163.00;160.00; +baseline stats (ms):;avg:;164.20;min:;160.00;max:;172.00; +operation raw measurements (ms):;328.80;329.80;330.80;331.80;331.80; +operation stats (ms/op):;avg op:;66.12;min op:;65.76;max op:;66.36; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_160 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 05 00 0c 00 a0 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;164.00;161.00;362.00;163.00;163.00; +baseline stats (ms):;avg:;202.60;min:;161.00;max:;362.00;;;CHECK +operation raw measurements (ms):;294.40;300.40;298.40;296.40;297.40; +operation stats (ms/op):;avg op:;59.48;min op:;58.88;max op:;60.08; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_160 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 05 00 0c 00 a0 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;166.00;174.00;164.00;164.00;164.00; +baseline stats (ms):;avg:;166.40;min:;164.00;max:;174.00; +operation raw measurements (ms):;346.60;346.60;344.60;346.60;344.60; +operation stats (ms/op):;avg op:;69.16;min op:;68.92;max op:;69.32; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_160 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 05 00 0c 00 a0 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;167.00;166.00;167.00;166.00;167.00; +baseline stats (ms):;avg:;166.60;min:;166.00;max:;167.00; +operation raw measurements (ms):;357.40;357.40;356.40;357.40;359.40; +operation stats (ms/op):;avg op:;71.52;min op:;71.28;max op:;71.88; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_160 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 05 00 0c 00 a0 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;173.00;181.00;172.00;171.00;169.00; +baseline stats (ms):;avg:;173.20;min:;169.00;max:;181.00; +operation raw measurements (ms):;380.80;376.80;378.80;381.80;380.80; +operation stats (ms/op):;avg op:;75.96;min op:;75.36;max op:;76.36; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_160 Signature_ALG_ECDSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 11 00 05 00 0c 00 a0 00 0a 00 10 ff ff ff ff 00 05 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_160 Signature_ALG_ECDSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 11 00 05 00 0c 00 a0 00 0a 00 20 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_160 Signature_ALG_ECDSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 11 00 05 00 0c 00 a0 00 0a 00 40 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_160 Signature_ALG_ECDSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 11 00 05 00 0c 00 a0 00 0a 00 80 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_160 Signature_ALG_ECDSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 11 00 05 00 0c 00 a0 00 0a 01 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_160 Signature_ALG_ECDSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 11 00 05 00 0c 00 a0 00 0a 02 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + + +SIGNATURE - KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_160 Signature_ALG_ECDSA_SHA - variable data - END + + +SIGNATURE - KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_192 Signature_ALG_ECDSA_SHA - variable data - BEGIN + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_192 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 05 00 0c 00 c0 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;175.00;176.00;177.00;175.00;176.00; +baseline stats (ms):;avg:;175.80;min:;175.00;max:;177.00; +operation raw measurements (ms):;405.20;405.20;407.20;405.20;407.20; +operation stats (ms/op):;avg op:;81.20;min op:;81.04;max op:;81.44; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_192 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 05 00 0c 00 c0 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;178.00;176.00;176.00;177.00;177.00; +baseline stats (ms):;avg:;176.80;min:;176.00;max:;178.00; +operation raw measurements (ms):;401.20;405.20;407.20;406.20;408.20; +operation stats (ms/op):;avg op:;81.12;min op:;80.24;max op:;81.64; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_192 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 05 00 0c 00 c0 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;179.00;177.00;178.00;179.00;176.00; +baseline stats (ms):;avg:;177.80;min:;176.00;max:;179.00; +operation raw measurements (ms):;407.20;407.20;408.20;407.20;408.20; +operation stats (ms/op):;avg op:;81.52;min op:;81.44;max op:;81.64; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_192 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 05 00 0c 00 c0 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;177.00;178.00;177.00;179.00;178.00; +baseline stats (ms):;avg:;177.80;min:;177.00;max:;179.00; +operation raw measurements (ms):;416.20;413.20;416.20;417.20;414.20; +operation stats (ms/op):;avg op:;83.08;min op:;82.64;max op:;83.44; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_192 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 05 00 0c 00 c0 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;183.00;182.00;185.00;180.00;182.00; +baseline stats (ms):;avg:;182.40;min:;180.00;max:;185.00; +operation raw measurements (ms):;425.60;423.60;424.60;427.60;427.60; +operation stats (ms/op):;avg op:;85.16;min op:;84.72;max op:;85.52; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_192 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 05 00 0c 00 c0 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;186.00;186.00;186.00;186.00;185.00; +baseline stats (ms):;avg:;186.00;min:;185.00;max:;186.00; +operation raw measurements (ms):;450.00;453.00;452.00;449.00;454.00; +operation stats (ms/op):;avg op:;90.32;min op:;89.80;max op:;90.80; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_192 Signature_ALG_ECDSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 11 00 05 00 0c 00 c0 00 0a 00 10 ff ff ff ff 00 05 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_192 Signature_ALG_ECDSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 11 00 05 00 0c 00 c0 00 0a 00 20 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_192 Signature_ALG_ECDSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 11 00 05 00 0c 00 c0 00 0a 00 40 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_192 Signature_ALG_ECDSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 11 00 05 00 0c 00 c0 00 0a 00 80 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_192 Signature_ALG_ECDSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 11 00 05 00 0c 00 c0 00 0a 01 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_192 Signature_ALG_ECDSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 11 00 05 00 0c 00 c0 00 0a 02 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + + +SIGNATURE - KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_192 Signature_ALG_ECDSA_SHA - variable data - END + + +SIGNATURE - KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_224 Signature_ALG_ECDSA_SHA - variable data - BEGIN + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_224 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 05 00 0c 00 e0 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;191.00;189.00;191.00;190.00;189.00; +baseline stats (ms):;avg:;190.00;min:;189.00;max:;191.00; +operation raw measurements (ms):;469.00;469.00;468.00;468.00;469.00; +operation stats (ms/op):;avg op:;93.72;min op:;93.60;max op:;93.80; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_224 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 05 00 0c 00 e0 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;189.00;190.00;189.00;190.00;191.00; +baseline stats (ms):;avg:;189.80;min:;189.00;max:;191.00; +operation raw measurements (ms):;471.20;471.20;468.20;471.20;472.20; +operation stats (ms/op):;avg op:;94.16;min op:;93.64;max op:;94.44; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_224 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 05 00 0c 00 e0 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;189.00;190.00;191.00;190.00;190.00; +baseline stats (ms):;avg:;190.25;min:;189.00;max:;191.00; +operation raw measurements (ms):;468.75;469.75;470.75;473.75;469.75; +operation stats (ms/op):;avg op:;94.11;min op:;93.75;max op:;94.75; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_224 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 05 00 0c 00 e0 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;191.00;192.00;191.00;192.00;192.00; +baseline stats (ms):;avg:;191.60;min:;191.00;max:;192.00; +operation raw measurements (ms):;476.40;478.40;479.40;477.40;479.40; +operation stats (ms/op):;avg op:;95.64;min op:;95.28;max op:;95.88; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_224 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 05 00 0c 00 e0 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;195.00;194.00;195.00;195.00;194.00; +baseline stats (ms):;avg:;194.60;min:;194.00;max:;195.00; +operation raw measurements (ms):;493.40;488.40;493.40;491.40;489.40; +operation stats (ms/op):;avg op:;98.24;min op:;97.68;max op:;98.68; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_224 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 05 00 0c 00 e0 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;201.00;202.00;199.00;199.00;198.00; +baseline stats (ms):;avg:;199.80;min:;198.00;max:;202.00; +operation raw measurements (ms):;516.20;515.20;515.20;518.20;517.20; +operation stats (ms/op):;avg op:;103.28;min op:;103.04;max op:;103.64; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_224 Signature_ALG_ECDSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 11 00 05 00 0c 00 e0 00 0a 00 10 ff ff ff ff 00 05 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_224 Signature_ALG_ECDSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 11 00 05 00 0c 00 e0 00 0a 00 20 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_224 Signature_ALG_ECDSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 11 00 05 00 0c 00 e0 00 0a 00 40 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_224 Signature_ALG_ECDSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 11 00 05 00 0c 00 e0 00 0a 00 80 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_224 Signature_ALG_ECDSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 11 00 05 00 0c 00 e0 00 0a 01 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_224 Signature_ALG_ECDSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 11 00 05 00 0c 00 e0 00 0a 02 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + + +SIGNATURE - KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_224 Signature_ALG_ECDSA_SHA - variable data - END + + +SIGNATURE - KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_256 Signature_ALG_ECDSA_SHA - variable data - BEGIN + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_256 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 05 00 0c 01 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;207.00;209.00;208.00;208.00;210.00; +baseline stats (ms):;avg:;208.40;min:;207.00;max:;210.00; +operation raw measurements (ms):;565.60;564.60;570.60;567.60;567.60; +operation stats (ms/op):;avg op:;113.44;min op:;112.92;max op:;114.12; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_256 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 05 00 0c 01 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;208.00;208.00;209.00;207.00;210.00; +baseline stats (ms):;avg:;208.40;min:;207.00;max:;210.00; +operation raw measurements (ms):;569.60;568.60;571.60;569.60;566.60; +operation stats (ms/op):;avg op:;113.84;min op:;113.32;max op:;114.32; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_256 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 05 00 0c 01 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;210.00;210.00;209.00;209.00;210.00; +baseline stats (ms):;avg:;209.60;min:;209.00;max:;210.00; +operation raw measurements (ms):;572.40;574.40;569.40;574.40;571.40; +operation stats (ms/op):;avg op:;114.48;min op:;113.88;max op:;114.88; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_256 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 05 00 0c 01 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;211.00;209.00;210.00;211.00;212.00; +baseline stats (ms):;avg:;210.60;min:;209.00;max:;212.00; +operation raw measurements (ms):;580.40;578.40;578.40;582.40;582.40; +operation stats (ms/op):;avg op:;116.08;min op:;115.68;max op:;116.48; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_256 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 05 00 0c 01 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;215.00;213.00;223.00;210.00;212.00; +baseline stats (ms):;avg:;214.60;min:;210.00;max:;223.00; +operation raw measurements (ms):;591.40;590.40;589.40;588.40;589.40; +operation stats (ms/op):;avg op:;117.96;min op:;117.68;max op:;118.28; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_256 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 05 00 0c 01 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;218.00;218.00;216.00;218.00;218.00; +baseline stats (ms):;avg:;218.00;min:;216.00;max:;218.00; +operation raw measurements (ms):;613.00;612.00;616.00;614.00;617.00; +operation stats (ms/op):;avg op:;122.88;min op:;122.40;max op:;123.40; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_256 Signature_ALG_ECDSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 11 00 05 00 0c 01 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_256 Signature_ALG_ECDSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 11 00 05 00 0c 01 00 00 0a 00 20 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_256 Signature_ALG_ECDSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 11 00 05 00 0c 01 00 00 0a 00 40 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_256 Signature_ALG_ECDSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 11 00 05 00 0c 01 00 00 0a 00 80 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_256 Signature_ALG_ECDSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 11 00 05 00 0c 01 00 00 0a 01 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_256 Signature_ALG_ECDSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 11 00 05 00 0c 01 00 00 0a 02 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + + +SIGNATURE - KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_256 Signature_ALG_ECDSA_SHA - variable data - END + + +SIGNATURE - KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_384 Signature_ALG_ECDSA_SHA - variable data - BEGIN + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_384 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 05 00 0c 01 80 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;332.00;328.00;324.00;329.00;331.00; +baseline stats (ms):;avg:;328.80;min:;324.00;max:;332.00; +operation raw measurements (ms):;1177.20;1173.20;1179.20;1173.20;1174.20; +operation stats (ms/op):;avg op:;235.08;min op:;234.64;max op:;235.84; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_384 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 05 00 0c 01 80 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;327.00;387.00;328.00;330.00;330.00; +baseline stats (ms):;avg:;340.40;min:;327.00;max:;387.00;;;CHECK +operation raw measurements (ms):;1164.60;1164.60;1166.60;1163.60;1165.60; +operation stats (ms/op):;avg op:;233.00;min op:;232.72;max op:;233.32; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_384 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 05 00 0c 01 80 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;332.00;332.00;332.00;332.00;330.00; +baseline stats (ms):;avg:;332.00;min:;330.00;max:;332.00; +operation raw measurements (ms):;1178.00;1178.00;1173.00;1180.00;1178.00; +operation stats (ms/op):;avg op:;235.48;min op:;234.60;max op:;236.00; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_384 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 05 00 0c 01 80 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;332.00;383.00;333.00;333.00;331.00; +baseline stats (ms):;avg:;342.40;min:;331.00;max:;383.00;;;CHECK +operation raw measurements (ms):;1174.60;1178.60;1174.60;1178.60;1177.60; +operation stats (ms/op):;avg op:;235.36;min op:;234.92;max op:;235.72; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_384 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 05 00 0c 01 80 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;334.00;336.00;338.00;335.00;334.00; +baseline stats (ms):;avg:;335.40;min:;334.00;max:;338.00; +operation raw measurements (ms):;1200.60;1189.60;1195.60;1198.60;1196.60; +operation stats (ms/op):;avg op:;239.24;min op:;237.92;max op:;240.12; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_384 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 05 00 0c 01 80 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;338.00;366.00;340.00;338.00;337.00; +baseline stats (ms):;avg:;343.80;min:;337.00;max:;366.00;;;CHECK +operation raw measurements (ms):;1217.20;1217.20;1217.20;1219.20;1216.20; +operation stats (ms/op):;avg op:;243.48;min op:;243.24;max op:;243.84; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_384 Signature_ALG_ECDSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 11 00 05 00 0c 01 80 00 0a 00 10 ff ff ff ff 00 05 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_384 Signature_ALG_ECDSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 11 00 05 00 0c 01 80 00 0a 00 20 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_384 Signature_ALG_ECDSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 11 00 05 00 0c 01 80 00 0a 00 40 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_384 Signature_ALG_ECDSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 11 00 05 00 0c 01 80 00 0a 00 80 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_384 Signature_ALG_ECDSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 11 00 05 00 0c 01 80 00 0a 01 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_384 Signature_ALG_ECDSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 11 00 05 00 0c 01 80 00 0a 02 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + + +SIGNATURE - KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_384 Signature_ALG_ECDSA_SHA - variable data - END + + +SIGNATURE - KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_521 Signature_ALG_ECDSA_SHA - variable data - BEGIN + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_521 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 05 00 0c 02 09 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;570.00;570.00;569.00;570.00;570.00; +baseline stats (ms):;avg:;570.00;min:;569.00;max:;570.00; +operation raw measurements (ms):;2380.00;2383.00;2382.00;2382.00;2382.00; +operation stats (ms/op):;avg op:;476.36;min op:;476.00;max op:;476.60; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_521 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 05 00 0c 02 09 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;568.00;570.00;569.00;570.00;568.00; +baseline stats (ms):;avg:;569.00;min:;568.00;max:;570.00; +operation raw measurements (ms):;2379.00;2378.00;2382.00;2383.00;2382.00; +operation stats (ms/op):;avg op:;476.16;min op:;475.60;max op:;476.60; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_521 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 05 00 0c 02 09 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;572.00;571.00;582.00;572.00;571.00; +baseline stats (ms):;avg:;573.60;min:;571.00;max:;582.00; +operation raw measurements (ms):;2386.40;2383.40;2385.40;2385.40;2389.40; +operation stats (ms/op):;avg op:;477.20;min op:;476.68;max op:;477.88; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_521 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 05 00 0c 02 09 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;745.00;575.00;571.00;573.00;572.00; +baseline stats (ms):;avg:;607.20;min:;571.00;max:;745.00;;;CHECK +operation raw measurements (ms):;2361.80;2361.80;2359.80;2363.80;2361.80; +operation stats (ms/op):;avg op:;472.36;min op:;471.96;max op:;472.76; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_521 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 05 00 0c 02 09 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;577.00;575.00;574.00;576.00;575.00; +baseline stats (ms):;avg:;575.40;min:;574.00;max:;577.00; +operation raw measurements (ms):;2406.60;2405.60;2405.60;2406.60;2409.60; +operation stats (ms/op):;avg op:;481.36;min op:;481.12;max op:;481.92; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_521 Signature_ALG_ECDSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 11 00 05 00 0c 02 09 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;579.00;580.00;590.00;581.00;581.00; +baseline stats (ms):;avg:;582.20;min:;579.00;max:;590.00; +operation raw measurements (ms):;2428.80;2424.80;2429.80;2430.80;2427.80; +operation stats (ms/op):;avg op:;485.68;min op:;484.96;max op:;486.16; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_521 Signature_ALG_ECDSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 11 00 05 00 0c 02 09 00 0a 00 10 ff ff ff ff 00 05 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_521 Signature_ALG_ECDSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 11 00 05 00 0c 02 09 00 0a 00 20 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_521 Signature_ALG_ECDSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 11 00 05 00 0c 02 09 00 0a 00 40 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_521 Signature_ALG_ECDSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 11 00 05 00 0c 02 09 00 0a 00 80 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_521 Signature_ALG_ECDSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 11 00 05 00 0c 02 09 00 0a 01 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_521 Signature_ALG_ECDSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 11 00 05 00 0c 02 09 00 0a 02 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + + +SIGNATURE - KeyPair_ALG_EC_FP KeyBuilder_LENGTH_EC_FP_521 Signature_ALG_ECDSA_SHA - variable data - END + + +SIGNATURE - ALG_DSA LENGTH_DSA_512 ALG_DSA_SHA - variable data - BEGIN + +method name:; ALG_DSA LENGTH_DSA_512 ALG_DSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0e 00 03 00 08 02 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_DSA LENGTH_DSA_512 ALG_DSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0e 00 03 00 08 02 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_DSA LENGTH_DSA_512 ALG_DSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0e 00 03 00 08 02 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_DSA LENGTH_DSA_512 ALG_DSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0e 00 03 00 08 02 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_DSA LENGTH_DSA_512 ALG_DSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0e 00 03 00 08 02 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_DSA LENGTH_DSA_512 ALG_DSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0e 00 03 00 08 02 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_DSA LENGTH_DSA_512 ALG_DSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0e 00 03 00 08 02 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_DSA LENGTH_DSA_512 ALG_DSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0e 00 03 00 08 02 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_DSA LENGTH_DSA_512 ALG_DSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0e 00 03 00 08 02 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_DSA LENGTH_DSA_512 ALG_DSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0e 00 03 00 08 02 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_DSA LENGTH_DSA_512 ALG_DSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0e 00 03 00 08 02 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_DSA LENGTH_DSA_512 ALG_DSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0e 00 03 00 08 02 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_DSA LENGTH_DSA_512 ALG_DSA_SHA - variable data - END + + +SIGNATURE - ALG_DSA LENGTH_DSA_768 ALG_DSA_SHA - variable data - BEGIN + +method name:; ALG_DSA LENGTH_DSA_768 ALG_DSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0e 00 03 00 08 03 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_DSA LENGTH_DSA_768 ALG_DSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0e 00 03 00 08 03 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_DSA LENGTH_DSA_768 ALG_DSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0e 00 03 00 08 03 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_DSA LENGTH_DSA_768 ALG_DSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0e 00 03 00 08 03 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_DSA LENGTH_DSA_768 ALG_DSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0e 00 03 00 08 03 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_DSA LENGTH_DSA_768 ALG_DSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0e 00 03 00 08 03 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_DSA LENGTH_DSA_768 ALG_DSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0e 00 03 00 08 03 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_DSA LENGTH_DSA_768 ALG_DSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0e 00 03 00 08 03 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_DSA LENGTH_DSA_768 ALG_DSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0e 00 03 00 08 03 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_DSA LENGTH_DSA_768 ALG_DSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0e 00 03 00 08 03 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_DSA LENGTH_DSA_768 ALG_DSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0e 00 03 00 08 03 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_DSA LENGTH_DSA_768 ALG_DSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0e 00 03 00 08 03 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_DSA LENGTH_DSA_768 ALG_DSA_SHA - variable data - END + + +SIGNATURE - ALG_DSA LENGTH_DSA_1024 ALG_DSA_SHA - variable data - BEGIN + +method name:; ALG_DSA LENGTH_DSA_1024 ALG_DSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0e 00 03 00 08 04 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_DSA LENGTH_DSA_1024 ALG_DSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0e 00 03 00 08 04 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_DSA LENGTH_DSA_1024 ALG_DSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0e 00 03 00 08 04 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_DSA LENGTH_DSA_1024 ALG_DSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0e 00 03 00 08 04 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_DSA LENGTH_DSA_1024 ALG_DSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0e 00 03 00 08 04 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_DSA LENGTH_DSA_1024 ALG_DSA_SHA Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0e 00 03 00 08 04 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_DSA LENGTH_DSA_1024 ALG_DSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0e 00 03 00 08 04 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_DSA LENGTH_DSA_1024 ALG_DSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0e 00 03 00 08 04 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_DSA LENGTH_DSA_1024 ALG_DSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0e 00 03 00 08 04 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_DSA LENGTH_DSA_1024 ALG_DSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0e 00 03 00 08 04 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_DSA LENGTH_DSA_1024 ALG_DSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0e 00 03 00 08 04 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_DSA LENGTH_DSA_1024 ALG_DSA_SHA Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0e 00 03 00 08 04 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_DSA LENGTH_DSA_1024 ALG_DSA_SHA - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_512 ALG_RSA_MD5_PKCS1 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 02 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 02 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 02 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 02 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 02 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 02 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 01 00 05 02 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 01 00 05 02 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 01 00 05 02 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 01 00 05 02 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 01 00 05 02 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 01 00 05 02 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_512 ALG_RSA_MD5_PKCS1 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_736 ALG_RSA_MD5_PKCS1 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 02 e0 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 02 e0 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 02 e0 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 02 e0 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 02 e0 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 02 e0 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 01 00 05 02 e0 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 01 00 05 02 e0 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 01 00 05 02 e0 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 01 00 05 02 e0 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 01 00 05 02 e0 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 01 00 05 02 e0 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_736 ALG_RSA_MD5_PKCS1 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_768 ALG_RSA_MD5_PKCS1 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 03 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 03 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 03 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 03 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 03 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 03 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 01 00 05 03 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 01 00 05 03 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 01 00 05 03 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 01 00 05 03 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 01 00 05 03 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 01 00 05 03 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_768 ALG_RSA_MD5_PKCS1 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_896 ALG_RSA_MD5_PKCS1 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 03 80 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 03 80 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 03 80 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 03 80 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 03 80 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 03 80 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 01 00 05 03 80 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 01 00 05 03 80 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 01 00 05 03 80 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 01 00 05 03 80 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 01 00 05 03 80 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 01 00 05 03 80 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_896 ALG_RSA_MD5_PKCS1 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_1024 ALG_RSA_MD5_PKCS1 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 04 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 04 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 04 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 04 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 04 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 04 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 01 00 05 04 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 01 00 05 04 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 01 00 05 04 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 01 00 05 04 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 01 00 05 04 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 01 00 05 04 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_1024 ALG_RSA_MD5_PKCS1 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_1280 ALG_RSA_MD5_PKCS1 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 05 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 05 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 05 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 05 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 05 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 05 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 01 00 05 05 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 01 00 05 05 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 01 00 05 05 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 01 00 05 05 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 01 00 05 05 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 01 00 05 05 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_1280 ALG_RSA_MD5_PKCS1 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_1536 ALG_RSA_MD5_PKCS1 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 06 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 06 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 06 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 06 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 06 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 06 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 01 00 05 06 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 01 00 05 06 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 01 00 05 06 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 01 00 05 06 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 01 00 05 06 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 01 00 05 06 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_1536 ALG_RSA_MD5_PKCS1 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_1984 ALG_RSA_MD5_PKCS1 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 07 c0 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 07 c0 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 07 c0 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 07 c0 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 07 c0 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 07 c0 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 01 00 05 07 c0 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 01 00 05 07 c0 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 01 00 05 07 c0 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 01 00 05 07 c0 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 01 00 05 07 c0 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 01 00 05 07 c0 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_1984 ALG_RSA_MD5_PKCS1 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_2048 ALG_RSA_MD5_PKCS1 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 08 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 08 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 08 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 08 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 08 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 08 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 01 00 05 08 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 01 00 05 08 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 01 00 05 08 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 01 00 05 08 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 01 00 05 08 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 01 00 05 08 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_2048 ALG_RSA_MD5_PKCS1 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_3072 ALG_RSA_MD5_PKCS1 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 0c 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 0c 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 0c 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 0c 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 0c 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 0c 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 01 00 05 0c 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 01 00 05 0c 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 01 00 05 0c 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 01 00 05 0c 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 01 00 05 0c 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 01 00 05 0c 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_3072 ALG_RSA_MD5_PKCS1 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_4096 ALG_RSA_MD5_PKCS1 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 10 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 10 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 10 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 10 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 10 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 01 00 05 10 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 01 00 05 10 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 01 00 05 10 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 01 00 05 10 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 01 00 05 10 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 01 00 05 10 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 01 00 05 10 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_4096 ALG_RSA_MD5_PKCS1 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_512 ALG_RSA_MD5_PKCS1_PSS - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 02 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 02 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 02 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 02 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 02 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 02 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 01 00 05 02 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 01 00 05 02 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 01 00 05 02 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 01 00 05 02 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 01 00 05 02 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 01 00 05 02 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_512 ALG_RSA_MD5_PKCS1_PSS - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_736 ALG_RSA_MD5_PKCS1_PSS - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 02 e0 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 02 e0 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 02 e0 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 02 e0 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 02 e0 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 02 e0 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 01 00 05 02 e0 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 01 00 05 02 e0 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 01 00 05 02 e0 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 01 00 05 02 e0 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 01 00 05 02 e0 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 01 00 05 02 e0 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_736 ALG_RSA_MD5_PKCS1_PSS - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_768 ALG_RSA_MD5_PKCS1_PSS - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 03 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 03 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 03 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 03 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 03 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 03 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 01 00 05 03 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 01 00 05 03 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 01 00 05 03 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 01 00 05 03 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 01 00 05 03 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 01 00 05 03 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_768 ALG_RSA_MD5_PKCS1_PSS - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_896 ALG_RSA_MD5_PKCS1_PSS - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 03 80 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 03 80 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 03 80 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 03 80 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 03 80 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 03 80 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 01 00 05 03 80 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 01 00 05 03 80 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 01 00 05 03 80 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 01 00 05 03 80 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 01 00 05 03 80 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 01 00 05 03 80 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_896 ALG_RSA_MD5_PKCS1_PSS - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_1024 ALG_RSA_MD5_PKCS1_PSS - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 04 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 04 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 04 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 04 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 04 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 04 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 01 00 05 04 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 01 00 05 04 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 01 00 05 04 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 01 00 05 04 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 01 00 05 04 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 01 00 05 04 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_1024 ALG_RSA_MD5_PKCS1_PSS - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_1280 ALG_RSA_MD5_PKCS1_PSS - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 05 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 05 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 05 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 05 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 05 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 05 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 01 00 05 05 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 01 00 05 05 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 01 00 05 05 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 01 00 05 05 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 01 00 05 05 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 01 00 05 05 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_1280 ALG_RSA_MD5_PKCS1_PSS - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_1536 ALG_RSA_MD5_PKCS1_PSS - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 06 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 06 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 06 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 06 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 06 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 06 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 01 00 05 06 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 01 00 05 06 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 01 00 05 06 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 01 00 05 06 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 01 00 05 06 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 01 00 05 06 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_1536 ALG_RSA_MD5_PKCS1_PSS - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_1984 ALG_RSA_MD5_PKCS1_PSS - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 07 c0 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 07 c0 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 07 c0 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 07 c0 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 07 c0 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 07 c0 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 01 00 05 07 c0 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 01 00 05 07 c0 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 01 00 05 07 c0 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 01 00 05 07 c0 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 01 00 05 07 c0 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 01 00 05 07 c0 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_1984 ALG_RSA_MD5_PKCS1_PSS - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_2048 ALG_RSA_MD5_PKCS1_PSS - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 08 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 08 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 08 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 08 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 08 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 08 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 01 00 05 08 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 01 00 05 08 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 01 00 05 08 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 01 00 05 08 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 01 00 05 08 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 01 00 05 08 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_2048 ALG_RSA_MD5_PKCS1_PSS - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_3072 ALG_RSA_MD5_PKCS1_PSS - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 0c 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 0c 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 0c 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 0c 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 0c 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 0c 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 01 00 05 0c 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 01 00 05 0c 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 01 00 05 0c 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 01 00 05 0c 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 01 00 05 0c 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 01 00 05 0c 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_3072 ALG_RSA_MD5_PKCS1_PSS - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_4096 ALG_RSA_MD5_PKCS1_PSS - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 10 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 10 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 10 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 10 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 10 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 01 00 05 10 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 01 00 05 10 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 01 00 05 10 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 01 00 05 10 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 01 00 05 10 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 01 00 05 10 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 01 00 05 10 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_4096 ALG_RSA_MD5_PKCS1_PSS - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_512 ALG_RSA_MD5_RFC2409 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 02 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 02 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 02 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 02 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 02 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 02 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 01 00 05 02 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 01 00 05 02 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 01 00 05 02 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 01 00 05 02 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 01 00 05 02 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 01 00 05 02 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_512 ALG_RSA_MD5_RFC2409 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_736 ALG_RSA_MD5_RFC2409 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 02 e0 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 02 e0 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 02 e0 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 02 e0 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 02 e0 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 02 e0 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 01 00 05 02 e0 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 01 00 05 02 e0 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 01 00 05 02 e0 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 01 00 05 02 e0 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 01 00 05 02 e0 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 01 00 05 02 e0 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_736 ALG_RSA_MD5_RFC2409 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_768 ALG_RSA_MD5_RFC2409 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 03 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 03 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 03 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 03 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 03 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 03 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 01 00 05 03 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 01 00 05 03 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 01 00 05 03 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 01 00 05 03 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 01 00 05 03 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 01 00 05 03 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_768 ALG_RSA_MD5_RFC2409 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_896 ALG_RSA_MD5_RFC2409 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 03 80 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 03 80 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 03 80 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 03 80 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 03 80 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 03 80 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 01 00 05 03 80 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 01 00 05 03 80 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 01 00 05 03 80 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 01 00 05 03 80 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 01 00 05 03 80 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 01 00 05 03 80 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_896 ALG_RSA_MD5_RFC2409 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_1024 ALG_RSA_MD5_RFC2409 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 04 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 04 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 04 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 04 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 04 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 04 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 01 00 05 04 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 01 00 05 04 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 01 00 05 04 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 01 00 05 04 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 01 00 05 04 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 01 00 05 04 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_1024 ALG_RSA_MD5_RFC2409 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_1280 ALG_RSA_MD5_RFC2409 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 05 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 05 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 05 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 05 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 05 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 05 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 01 00 05 05 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 01 00 05 05 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 01 00 05 05 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 01 00 05 05 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 01 00 05 05 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 01 00 05 05 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_1280 ALG_RSA_MD5_RFC2409 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_1536 ALG_RSA_MD5_RFC2409 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 06 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 06 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 06 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 06 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 06 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 06 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 01 00 05 06 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 01 00 05 06 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 01 00 05 06 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 01 00 05 06 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 01 00 05 06 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 01 00 05 06 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_1536 ALG_RSA_MD5_RFC2409 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_1984 ALG_RSA_MD5_RFC2409 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 07 c0 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 07 c0 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 07 c0 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 07 c0 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 07 c0 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 07 c0 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 01 00 05 07 c0 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 01 00 05 07 c0 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 01 00 05 07 c0 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 01 00 05 07 c0 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 01 00 05 07 c0 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 01 00 05 07 c0 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_1984 ALG_RSA_MD5_RFC2409 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_2048 ALG_RSA_MD5_RFC2409 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 08 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 08 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 08 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 08 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 08 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 08 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 01 00 05 08 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 01 00 05 08 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 01 00 05 08 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 01 00 05 08 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 01 00 05 08 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 01 00 05 08 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_2048 ALG_RSA_MD5_RFC2409 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_3072 ALG_RSA_MD5_RFC2409 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 0c 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 0c 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 0c 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 0c 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 0c 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 0c 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 01 00 05 0c 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 01 00 05 0c 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 01 00 05 0c 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 01 00 05 0c 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 01 00 05 0c 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 01 00 05 0c 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_3072 ALG_RSA_MD5_RFC2409 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_4096 ALG_RSA_MD5_RFC2409 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 10 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 10 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 10 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 10 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 10 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 01 00 05 10 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 01 00 05 10 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 01 00 05 10 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 01 00 05 10 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 01 00 05 10 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 01 00 05 10 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 01 00 05 10 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_4096 ALG_RSA_MD5_RFC2409 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_512 ALG_RSA_RIPEMD160_ISO9796 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 02 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 02 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 02 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 02 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 02 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 02 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 01 00 05 02 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 01 00 05 02 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 01 00 05 02 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 01 00 05 02 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 01 00 05 02 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 01 00 05 02 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_512 ALG_RSA_RIPEMD160_ISO9796 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_736 ALG_RSA_RIPEMD160_ISO9796 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 02 e0 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 02 e0 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 02 e0 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 02 e0 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 02 e0 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 02 e0 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 01 00 05 02 e0 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 01 00 05 02 e0 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 01 00 05 02 e0 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 01 00 05 02 e0 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 01 00 05 02 e0 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 01 00 05 02 e0 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_736 ALG_RSA_RIPEMD160_ISO9796 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_768 ALG_RSA_RIPEMD160_ISO9796 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 03 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 03 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 03 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 03 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 03 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 03 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 01 00 05 03 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 01 00 05 03 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 01 00 05 03 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 01 00 05 03 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 01 00 05 03 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 01 00 05 03 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_768 ALG_RSA_RIPEMD160_ISO9796 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_896 ALG_RSA_RIPEMD160_ISO9796 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 03 80 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 03 80 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 03 80 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 03 80 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 03 80 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 03 80 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 01 00 05 03 80 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 01 00 05 03 80 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 01 00 05 03 80 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 01 00 05 03 80 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 01 00 05 03 80 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 01 00 05 03 80 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_896 ALG_RSA_RIPEMD160_ISO9796 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_1024 ALG_RSA_RIPEMD160_ISO9796 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 04 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 04 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 04 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 04 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 04 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 04 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 01 00 05 04 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 01 00 05 04 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 01 00 05 04 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 01 00 05 04 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 01 00 05 04 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 01 00 05 04 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_1024 ALG_RSA_RIPEMD160_ISO9796 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_1280 ALG_RSA_RIPEMD160_ISO9796 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 05 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 05 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 05 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 05 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 05 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 05 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 01 00 05 05 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 01 00 05 05 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 01 00 05 05 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 01 00 05 05 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 01 00 05 05 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 01 00 05 05 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_1280 ALG_RSA_RIPEMD160_ISO9796 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_1536 ALG_RSA_RIPEMD160_ISO9796 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 06 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 06 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 06 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 06 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 06 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 06 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 01 00 05 06 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 01 00 05 06 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 01 00 05 06 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 01 00 05 06 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 01 00 05 06 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 01 00 05 06 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_1536 ALG_RSA_RIPEMD160_ISO9796 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_1984 ALG_RSA_RIPEMD160_ISO9796 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 07 c0 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 07 c0 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 07 c0 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 07 c0 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 07 c0 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 07 c0 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 01 00 05 07 c0 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 01 00 05 07 c0 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 01 00 05 07 c0 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 01 00 05 07 c0 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 01 00 05 07 c0 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 01 00 05 07 c0 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_1984 ALG_RSA_RIPEMD160_ISO9796 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_2048 ALG_RSA_RIPEMD160_ISO9796 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 08 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 08 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 08 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 08 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 08 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 08 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 01 00 05 08 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 01 00 05 08 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 01 00 05 08 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 01 00 05 08 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 01 00 05 08 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 01 00 05 08 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_2048 ALG_RSA_RIPEMD160_ISO9796 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_3072 ALG_RSA_RIPEMD160_ISO9796 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 0c 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 0c 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 0c 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 0c 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 0c 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 0c 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 01 00 05 0c 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 01 00 05 0c 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 01 00 05 0c 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 01 00 05 0c 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 01 00 05 0c 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 01 00 05 0c 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_3072 ALG_RSA_RIPEMD160_ISO9796 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_4096 ALG_RSA_RIPEMD160_ISO9796 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 10 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 10 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 10 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 10 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 10 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 01 00 05 10 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 01 00 05 10 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 01 00 05 10 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 01 00 05 10 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 01 00 05 10 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 01 00 05 10 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 01 00 05 10 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_4096 ALG_RSA_RIPEMD160_ISO9796 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_512 ALG_RSA_RIPEMD160_PKCS1 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 02 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 02 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 02 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 02 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 02 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 02 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 01 00 05 02 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 01 00 05 02 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 01 00 05 02 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 01 00 05 02 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 01 00 05 02 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 01 00 05 02 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_512 ALG_RSA_RIPEMD160_PKCS1 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_736 ALG_RSA_RIPEMD160_PKCS1 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 02 e0 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 02 e0 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 02 e0 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 02 e0 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 02 e0 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 02 e0 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 01 00 05 02 e0 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 01 00 05 02 e0 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 01 00 05 02 e0 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 01 00 05 02 e0 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 01 00 05 02 e0 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 01 00 05 02 e0 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_736 ALG_RSA_RIPEMD160_PKCS1 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_768 ALG_RSA_RIPEMD160_PKCS1 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 03 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 03 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 03 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 03 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 03 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 03 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 01 00 05 03 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 01 00 05 03 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 01 00 05 03 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 01 00 05 03 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 01 00 05 03 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 01 00 05 03 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_768 ALG_RSA_RIPEMD160_PKCS1 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_896 ALG_RSA_RIPEMD160_PKCS1 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 03 80 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 03 80 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 03 80 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 03 80 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 03 80 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 03 80 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 01 00 05 03 80 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 01 00 05 03 80 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 01 00 05 03 80 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 01 00 05 03 80 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 01 00 05 03 80 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 01 00 05 03 80 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_896 ALG_RSA_RIPEMD160_PKCS1 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_1024 ALG_RSA_RIPEMD160_PKCS1 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 04 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 04 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 04 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 04 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 04 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 04 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 01 00 05 04 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 01 00 05 04 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 01 00 05 04 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 01 00 05 04 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 01 00 05 04 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 01 00 05 04 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_1024 ALG_RSA_RIPEMD160_PKCS1 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_1280 ALG_RSA_RIPEMD160_PKCS1 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 05 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 05 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 05 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 05 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 05 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 05 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 01 00 05 05 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 01 00 05 05 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 01 00 05 05 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 01 00 05 05 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 01 00 05 05 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 01 00 05 05 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_1280 ALG_RSA_RIPEMD160_PKCS1 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_1536 ALG_RSA_RIPEMD160_PKCS1 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 06 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 06 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 06 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 06 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 06 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 06 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 01 00 05 06 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 01 00 05 06 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 01 00 05 06 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 01 00 05 06 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 01 00 05 06 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 01 00 05 06 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_1536 ALG_RSA_RIPEMD160_PKCS1 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_1984 ALG_RSA_RIPEMD160_PKCS1 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 07 c0 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 07 c0 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 07 c0 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 07 c0 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 07 c0 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 07 c0 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 01 00 05 07 c0 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 01 00 05 07 c0 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 01 00 05 07 c0 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 01 00 05 07 c0 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 01 00 05 07 c0 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 01 00 05 07 c0 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_1984 ALG_RSA_RIPEMD160_PKCS1 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_2048 ALG_RSA_RIPEMD160_PKCS1 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 08 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 08 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 08 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 08 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 08 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 08 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 01 00 05 08 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 01 00 05 08 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 01 00 05 08 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 01 00 05 08 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 01 00 05 08 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 01 00 05 08 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_2048 ALG_RSA_RIPEMD160_PKCS1 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_3072 ALG_RSA_RIPEMD160_PKCS1 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 0c 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 0c 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 0c 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 0c 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 0c 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 0c 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 01 00 05 0c 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 01 00 05 0c 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 01 00 05 0c 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 01 00 05 0c 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 01 00 05 0c 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 01 00 05 0c 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_3072 ALG_RSA_RIPEMD160_PKCS1 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_4096 ALG_RSA_RIPEMD160_PKCS1 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 10 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 10 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 10 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 10 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 10 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 01 00 05 10 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 01 00 05 10 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 01 00 05 10 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 01 00 05 10 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 01 00 05 10 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 01 00 05 10 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 01 00 05 10 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_4096 ALG_RSA_RIPEMD160_PKCS1 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_512 ALG_RSA_RIPEMD160_PKCS1_PSS - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 02 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 02 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 02 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 02 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 02 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 02 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 01 00 05 02 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 01 00 05 02 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 01 00 05 02 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 01 00 05 02 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 01 00 05 02 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 01 00 05 02 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_512 ALG_RSA_RIPEMD160_PKCS1_PSS - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_736 ALG_RSA_RIPEMD160_PKCS1_PSS - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 02 e0 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 02 e0 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 02 e0 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 02 e0 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 02 e0 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 02 e0 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 01 00 05 02 e0 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 01 00 05 02 e0 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 01 00 05 02 e0 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 01 00 05 02 e0 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 01 00 05 02 e0 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 01 00 05 02 e0 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_736 ALG_RSA_RIPEMD160_PKCS1_PSS - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_768 ALG_RSA_RIPEMD160_PKCS1_PSS - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 03 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 03 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 03 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 03 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 03 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 03 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 01 00 05 03 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 01 00 05 03 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 01 00 05 03 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 01 00 05 03 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 01 00 05 03 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 01 00 05 03 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_768 ALG_RSA_RIPEMD160_PKCS1_PSS - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_896 ALG_RSA_RIPEMD160_PKCS1_PSS - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 03 80 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 03 80 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 03 80 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 03 80 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 03 80 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 03 80 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 01 00 05 03 80 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 01 00 05 03 80 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 01 00 05 03 80 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 01 00 05 03 80 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 01 00 05 03 80 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 01 00 05 03 80 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_896 ALG_RSA_RIPEMD160_PKCS1_PSS - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_1024 ALG_RSA_RIPEMD160_PKCS1_PSS - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 04 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 04 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 04 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 04 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 04 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 04 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 01 00 05 04 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 01 00 05 04 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 01 00 05 04 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 01 00 05 04 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 01 00 05 04 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 01 00 05 04 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_1024 ALG_RSA_RIPEMD160_PKCS1_PSS - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_1280 ALG_RSA_RIPEMD160_PKCS1_PSS - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 05 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 05 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 05 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 05 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 05 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 05 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 01 00 05 05 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 01 00 05 05 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 01 00 05 05 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 01 00 05 05 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 01 00 05 05 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 01 00 05 05 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_1280 ALG_RSA_RIPEMD160_PKCS1_PSS - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_1536 ALG_RSA_RIPEMD160_PKCS1_PSS - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 06 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 06 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 06 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 06 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 06 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 06 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 01 00 05 06 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 01 00 05 06 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 01 00 05 06 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 01 00 05 06 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 01 00 05 06 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 01 00 05 06 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_1536 ALG_RSA_RIPEMD160_PKCS1_PSS - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_1984 ALG_RSA_RIPEMD160_PKCS1_PSS - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 07 c0 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 07 c0 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 07 c0 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 07 c0 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 07 c0 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 07 c0 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 01 00 05 07 c0 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 01 00 05 07 c0 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 01 00 05 07 c0 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 01 00 05 07 c0 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 01 00 05 07 c0 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 01 00 05 07 c0 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_1984 ALG_RSA_RIPEMD160_PKCS1_PSS - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_2048 ALG_RSA_RIPEMD160_PKCS1_PSS - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 08 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 08 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 08 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 08 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 08 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 08 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 01 00 05 08 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 01 00 05 08 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 01 00 05 08 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 01 00 05 08 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 01 00 05 08 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 01 00 05 08 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_2048 ALG_RSA_RIPEMD160_PKCS1_PSS - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_3072 ALG_RSA_RIPEMD160_PKCS1_PSS - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 0c 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 0c 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 0c 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 0c 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 0c 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 0c 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 01 00 05 0c 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 01 00 05 0c 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 01 00 05 0c 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 01 00 05 0c 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 01 00 05 0c 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 01 00 05 0c 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_3072 ALG_RSA_RIPEMD160_PKCS1_PSS - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_4096 ALG_RSA_RIPEMD160_PKCS1_PSS - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 10 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 10 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 10 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 10 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 10 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 01 00 05 10 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 01 00 05 10 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 01 00 05 10 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 01 00 05 10 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 01 00 05 10 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 01 00 05 10 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 01 00 05 10 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_4096 ALG_RSA_RIPEMD160_PKCS1_PSS - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_512 ALG_RSA_SHA_ISO9796 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 02 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;194.00;189.00;190.00;189.00;188.00; +baseline stats (ms):;avg:;190.00;min:;188.00;max:;194.00; +operation raw measurements (ms):;477.00;471.00;470.00;478.00;470.00; +operation stats (ms/op):;avg op:;94.64;min op:;94.00;max op:;95.60; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 02 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;189.00;189.00;190.00;189.00;191.00; +baseline stats (ms):;avg:;189.60;min:;189.00;max:;191.00; +operation raw measurements (ms):;472.40;472.40;474.40;470.40;467.40; +operation stats (ms/op):;avg op:;94.28;min op:;93.48;max op:;94.88; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 02 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;190.00;189.00;192.00;189.00;188.00; +baseline stats (ms):;avg:;189.60;min:;188.00;max:;192.00; +operation raw measurements (ms):;474.40;478.40;475.40;474.40;477.40; +operation stats (ms/op):;avg op:;95.20;min op:;94.88;max op:;95.68; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 02 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;193.00;191.00;194.00;189.00;191.00; +baseline stats (ms):;avg:;191.60;min:;189.00;max:;194.00; +operation raw measurements (ms):;483.40;482.40;484.40;481.40;484.40; +operation stats (ms/op):;avg op:;96.64;min op:;96.28;max op:;96.88; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 02 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;195.00;193.00;193.00;193.00;193.00; +baseline stats (ms):;avg:;193.40;min:;193.00;max:;195.00; +operation raw measurements (ms):;498.60;494.60;493.60;493.60;492.60; +operation stats (ms/op):;avg op:;98.92;min op:;98.52;max op:;99.72; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 02 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;201.00;198.00;200.00;199.00;197.00; +baseline stats (ms):;avg:;199.00;min:;197.00;max:;201.00; +operation raw measurements (ms):;517.00;512.00;517.00;525.00;519.00; +operation stats (ms/op):;avg op:;103.60;min op:;102.40;max op:;105.00; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 01 00 05 02 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 01 00 05 02 00 00 0a 00 20 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 01 00 05 02 00 00 0a 00 40 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 01 00 05 02 00 00 0a 00 80 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 01 00 05 02 00 00 0a 01 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 01 00 05 02 00 00 0a 02 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + + +SIGNATURE - ALG_RSA LENGTH_RSA_512 ALG_RSA_SHA_ISO9796 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_736 ALG_RSA_SHA_ISO9796 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 02 e0 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;281.00;276.00;277.00;277.00;280.00; +baseline stats (ms):;avg:;278.20;min:;276.00;max:;281.00; +operation raw measurements (ms):;915.80;914.80;917.80;914.80;917.80; +operation stats (ms/op):;avg op:;183.24;min op:;182.96;max op:;183.56; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 02 e0 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;281.00;276.00;353.00;279.00;281.00; +baseline stats (ms):;avg:;294.00;min:;276.00;max:;353.00;;;CHECK +operation raw measurements (ms):;895.00;898.00;905.00;909.00;905.00; +operation stats (ms/op):;avg op:;180.48;min op:;179.00;max op:;181.80; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 02 e0 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;280.00;703.00;279.00;281.00;280.00; +baseline stats (ms):;avg:;364.60;min:;279.00;max:;703.00;;;CHECK +operation raw measurements (ms):;827.40;833.40;840.40;840.40;835.40; +operation stats (ms/op):;avg op:;167.08;min op:;165.48;max op:;168.08; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 02 e0 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;280.00;277.00;349.00;281.00;279.00; +baseline stats (ms):;avg:;293.20;min:;277.00;max:;349.00;;;CHECK +operation raw measurements (ms):;916.80;919.80;919.80;921.80;920.80; +operation stats (ms/op):;avg op:;183.96;min op:;183.36;max op:;184.36; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 02 e0 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;286.00;294.00;282.00;282.00;288.00; +baseline stats (ms):;avg:;286.40;min:;282.00;max:;294.00; +operation raw measurements (ms):;941.60;944.60;937.60;939.60;941.60; +operation stats (ms/op):;avg op:;188.20;min op:;187.52;max op:;188.92; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 02 e0 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;290.00;290.00;339.00;288.00;289.00; +baseline stats (ms):;avg:;299.20;min:;288.00;max:;339.00;;;CHECK +operation raw measurements (ms):;952.80;958.80;956.80;955.80;958.80; +operation stats (ms/op):;avg op:;191.32;min op:;190.56;max op:;191.76; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 01 00 05 02 e0 00 0a 00 10 ff ff ff ff 00 05 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 01 00 05 02 e0 00 0a 00 20 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 01 00 05 02 e0 00 0a 00 40 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 01 00 05 02 e0 00 0a 00 80 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 01 00 05 02 e0 00 0a 01 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 01 00 05 02 e0 00 0a 02 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + + +SIGNATURE - ALG_RSA LENGTH_RSA_736 ALG_RSA_SHA_ISO9796 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_768 ALG_RSA_SHA_ISO9796 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 03 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;298.00;299.00;305.00;299.00;297.00; +baseline stats (ms):;avg:;299.60;min:;297.00;max:;305.00; +operation raw measurements (ms):;1026.40;1020.40;1023.40;1023.40;1023.40; +operation stats (ms/op):;avg op:;204.68;min op:;204.08;max op:;205.28; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 03 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;299.00;311.00;302.00;301.00;298.00; +baseline stats (ms):;avg:;302.20;min:;298.00;max:;311.00; +operation raw measurements (ms):;1021.80;1024.80;1015.80;1018.80;1018.80; +operation stats (ms/op):;avg op:;204.00;min op:;203.16;max op:;204.96; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 03 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;302.00;299.00;306.00;299.00;299.00; +baseline stats (ms):;avg:;301.00;min:;299.00;max:;306.00; +operation raw measurements (ms):;1042.00;1031.00;1026.00;1031.00;1030.00; +operation stats (ms/op):;avg op:;206.40;min op:;205.20;max op:;208.40; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 03 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;304.00;306.00;301.00;301.00;302.00; +baseline stats (ms):;avg:;302.80;min:;301.00;max:;306.00; +operation raw measurements (ms):;1038.20;1030.20;1041.20;1030.20;1035.20; +operation stats (ms/op):;avg op:;207.00;min op:;206.04;max op:;208.24; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 03 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;304.00;302.00;304.00;306.00;305.00; +baseline stats (ms):;avg:;304.20;min:;302.00;max:;306.00; +operation raw measurements (ms):;1053.80;1053.80;1047.80;1048.80;1054.80; +operation stats (ms/op):;avg op:;210.36;min op:;209.56;max op:;210.96; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 03 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;311.00;319.00;308.00;309.00;311.00; +baseline stats (ms):;avg:;311.60;min:;308.00;max:;319.00; +operation raw measurements (ms):;1071.40;1075.40;1063.40;1067.40;1071.40; +operation stats (ms/op):;avg op:;213.96;min op:;212.68;max op:;215.08; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 01 00 05 03 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 01 00 05 03 00 00 0a 00 20 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 01 00 05 03 00 00 0a 00 40 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 01 00 05 03 00 00 0a 00 80 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 01 00 05 03 00 00 0a 01 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 01 00 05 03 00 00 0a 02 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + + +SIGNATURE - ALG_RSA LENGTH_RSA_768 ALG_RSA_SHA_ISO9796 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_896 ALG_RSA_SHA_ISO9796 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 03 80 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;391.00;392.00;389.00;390.00;392.00; +baseline stats (ms):;avg:;390.80;min:;389.00;max:;392.00; +operation raw measurements (ms):;1481.20;1482.20;1478.20;1485.20;1483.20; +operation stats (ms/op):;avg op:;296.40;min op:;295.64;max op:;297.04; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 03 80 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;392.00;395.00;390.00;394.00;392.00; +baseline stats (ms):;avg:;392.60;min:;390.00;max:;395.00; +operation raw measurements (ms):;1477.40;1481.40;1478.40;1483.40;1480.40; +operation stats (ms/op):;avg op:;296.04;min op:;295.48;max op:;296.68; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 03 80 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;394.00;391.00;392.00;390.00;394.00; +baseline stats (ms):;avg:;392.20;min:;390.00;max:;394.00; +operation raw measurements (ms):;1487.80;1495.80;1489.80;1494.80;1484.80; +operation stats (ms/op):;avg op:;298.12;min op:;296.96;max op:;299.16; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 03 80 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;395.00;406.00;393.00;397.00;392.00; +baseline stats (ms):;avg:;396.60;min:;392.00;max:;406.00; +operation raw measurements (ms):;1489.40;1482.40;1494.40;1485.40;1481.40; +operation stats (ms/op):;avg op:;297.32;min op:;296.28;max op:;298.88; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 03 80 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;398.00;393.00;393.00;395.00;396.00; +baseline stats (ms):;avg:;395.00;min:;393.00;max:;398.00; +operation raw measurements (ms):;1517.00;1502.00;1490.00;1506.00;1493.00; +operation stats (ms/op):;avg op:;300.32;min op:;298.00;max op:;303.40; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 03 80 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;403.00;445.00;395.00;401.00;404.00; +baseline stats (ms):;avg:;409.60;min:;395.00;max:;445.00;;;CHECK +operation raw measurements (ms):;1525.40;1530.40;1524.40;1523.40;1520.40; +operation stats (ms/op):;avg op:;304.96;min op:;304.08;max op:;306.08; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 01 00 05 03 80 00 0a 00 10 ff ff ff ff 00 05 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 01 00 05 03 80 00 0a 00 20 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 01 00 05 03 80 00 0a 00 40 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 01 00 05 03 80 00 0a 00 80 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 01 00 05 03 80 00 0a 01 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 01 00 05 03 80 00 0a 02 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + + +SIGNATURE - ALG_RSA LENGTH_RSA_896 ALG_RSA_SHA_ISO9796 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_1024 ALG_RSA_SHA_ISO9796 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 04 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;506.00;503.00;506.00;507.00;507.00; +baseline stats (ms):;avg:;506.50;min:;503.00;max:;507.00; +operation raw measurements (ms):;2063.50;2062.50;2064.50;2057.50;2069.50; +operation stats (ms/op):;avg op:;412.70;min op:;411.50;max op:;413.90; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 04 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;507.00;509.00;506.00;502.00;510.00; +baseline stats (ms):;avg:;506.80;min:;502.00;max:;510.00; +operation raw measurements (ms):;2059.20;2045.20;2073.20;2058.20;2075.20; +operation stats (ms/op):;avg op:;412.44;min op:;409.04;max op:;415.04; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 04 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;509.00;508.00;523.00;504.00;505.00; +baseline stats (ms):;avg:;509.80;min:;504.00;max:;523.00; +operation raw measurements (ms):;2057.20;2056.20;2073.20;2070.20;2069.20; +operation stats (ms/op):;avg op:;413.04;min op:;411.24;max op:;414.64; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 04 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;512.00;506.00;513.00;509.00;512.00; +baseline stats (ms):;avg:;511.50;min:;506.00;max:;513.00; +operation raw measurements (ms):;2074.50;2065.50;2075.50;2087.50;2066.50; +operation stats (ms/op):;avg op:;414.78;min op:;413.10;max op:;417.50; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 04 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;512.00;507.00;526.00;508.00;513.00; +baseline stats (ms):;avg:;513.20;min:;507.00;max:;526.00; +operation raw measurements (ms):;2077.80;2084.80;2088.80;2075.80;2076.80; +operation stats (ms/op):;avg op:;416.16;min op:;415.16;max op:;417.76; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 04 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;519.00;514.00;521.00;519.00;519.00; +baseline stats (ms):;avg:;519.50;min:;514.00;max:;521.00; +operation raw measurements (ms):;2116.50;2107.50;2111.50;2114.50;2112.50; +operation stats (ms/op):;avg op:;422.50;min op:;421.50;max op:;423.30; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 01 00 05 04 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 01 00 05 04 00 00 0a 00 20 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 01 00 05 04 00 00 0a 00 40 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 01 00 05 04 00 00 0a 00 80 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 01 00 05 04 00 00 0a 01 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 01 00 05 04 00 00 0a 02 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + + +SIGNATURE - ALG_RSA LENGTH_RSA_1024 ALG_RSA_SHA_ISO9796 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_1280 ALG_RSA_SHA_ISO9796 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 05 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;827.00;831.00;822.00;826.00;824.00; +baseline stats (ms):;avg:;826.00;min:;822.00;max:;831.00; +operation raw measurements (ms):;3663.00;3669.00;3647.00;3660.00;3650.00; +operation stats (ms/op):;avg op:;731.56;min op:;729.40;max op:;733.80; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 05 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;838.00;838.00;828.00;829.00;823.00; +baseline stats (ms):;avg:;831.20;min:;823.00;max:;838.00; +operation raw measurements (ms):;3655.80;3640.80;3647.80;3637.80;3632.80; +operation stats (ms/op):;avg op:;728.60;min op:;726.56;max op:;731.16; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 05 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;831.00;826.00;830.00;828.00;830.00; +baseline stats (ms):;avg:;829.75;min:;826.00;max:;831.00; +operation raw measurements (ms):;3663.25;3644.25;3672.25;3669.25;3649.25; +operation stats (ms/op):;avg op:;731.93;min op:;728.85;max op:;734.45; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 05 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;822.00;835.00;828.00;826.00;821.00; +baseline stats (ms):;avg:;826.40;min:;821.00;max:;835.00; +operation raw measurements (ms):;3678.60;3663.60;3676.60;3689.60;3680.60; +operation stats (ms/op):;avg op:;735.56;min op:;732.72;max op:;737.92; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 05 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;838.00;836.00;851.00;834.00;833.00; +baseline stats (ms):;avg:;838.40;min:;833.00;max:;851.00; +operation raw measurements (ms):;3665.60;3668.60;3684.60;3675.60;3685.60; +operation stats (ms/op):;avg op:;735.20;min op:;733.12;max op:;737.12; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 05 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;847.00;835.00;838.00;828.00;845.00; +baseline stats (ms):;avg:;838.60;min:;828.00;max:;847.00; +operation raw measurements (ms):;3704.40;3729.40;3729.40;3707.40;3695.40; +operation stats (ms/op):;avg op:;742.64;min op:;739.08;max op:;745.88; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 01 00 05 05 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 01 00 05 05 00 00 0a 00 20 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 01 00 05 05 00 00 0a 00 40 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 01 00 05 05 00 00 0a 00 80 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 01 00 05 05 00 00 0a 01 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 01 00 05 05 00 00 0a 02 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + + +SIGNATURE - ALG_RSA LENGTH_RSA_1280 ALG_RSA_SHA_ISO9796 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_1536 ALG_RSA_SHA_ISO9796 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 06 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;1290.00;1293.00;1289.00;1287.00;1279.00; +baseline stats (ms):;avg:;1289.75;min:;1279.00;max:;1293.00; +operation raw measurements (ms):;5917.25;5932.25;5940.25;5884.25;5915.25; +operation stats (ms/op):;avg op:;1183.57;min op:;1176.85;max op:;1188.05; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 06 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;1276.00;1279.00;1276.00;1289.00;1286.00; +baseline stats (ms):;avg:;1281.20;min:;1276.00;max:;1289.00; +operation raw measurements (ms):;5966.80;5925.80;5924.80;5925.80;5956.80; +operation stats (ms/op):;avg op:;1188.00;min op:;1184.96;max op:;1193.36; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 06 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;1281.00;1278.00;1290.00;1283.00;1257.00; +baseline stats (ms):;avg:;1283.00;min:;1257.00;max:;1290.00; +operation raw measurements (ms):;5944.00;5938.00;5953.00;5947.00;5924.00; +operation stats (ms/op):;avg op:;1188.24;min op:;1184.80;max op:;1190.60; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 06 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;1279.00;1294.00;1294.00;1279.00;1283.00; +baseline stats (ms):;avg:;1285.80;min:;1279.00;max:;1294.00; +operation raw measurements (ms):;5963.20;5939.20;5931.20;5946.20;5987.20; +operation stats (ms/op):;avg op:;1190.68;min op:;1186.24;max op:;1197.44; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 06 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;1293.00;1274.00;1302.00;1287.00;1291.00; +baseline stats (ms):;avg:;1293.25;min:;1274.00;max:;1302.00; +operation raw measurements (ms):;5932.75;5963.75;5935.75;5948.75;5973.75; +operation stats (ms/op):;avg op:;1190.19;min op:;1186.55;max op:;1194.75; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 06 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;1282.00;1304.00;1291.00;1304.00;1280.00; +baseline stats (ms):;avg:;1292.20;min:;1280.00;max:;1304.00; +operation raw measurements (ms):;5976.80;5995.80;5986.80;5971.80;5983.80; +operation stats (ms/op):;avg op:;1196.60;min op:;1194.36;max op:;1199.16; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 01 00 05 06 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 01 00 05 06 00 00 0a 00 20 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 01 00 05 06 00 00 0a 00 40 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 01 00 05 06 00 00 0a 00 80 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 01 00 05 06 00 00 0a 01 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 01 00 05 06 00 00 0a 02 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + + +SIGNATURE - ALG_RSA LENGTH_RSA_1536 ALG_RSA_SHA_ISO9796 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_1984 ALG_RSA_SHA_ISO9796 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 07 c0 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;2502.00;2470.00;2484.00;2475.00;2482.00; +baseline stats (ms):;avg:;2482.60;min:;2470.00;max:;2502.00; +operation raw measurements (ms):;11967.40;11968.40;11932.40;11927.40;11932.40; +operation stats (ms/op):;avg op:;2389.12;min op:;2385.48;max op:;2393.68; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 07 c0 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;2490.00;2493.00;2487.00;2498.00;2483.00; +baseline stats (ms):;avg:;2490.20;min:;2483.00;max:;2498.00; +operation raw measurements (ms):;11890.80;11886.80;11881.80;11933.80;11876.80; +operation stats (ms/op):;avg op:;2378.80;min op:;2375.36;max op:;2386.76; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 07 c0 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;2480.00;2488.00;2490.00;2478.00;2485.00; +baseline stats (ms):;avg:;2484.20;min:;2478.00;max:;2490.00; +operation raw measurements (ms):;11942.80;11972.80;11989.80;11949.80;11962.80; +operation stats (ms/op):;avg op:;2392.72;min op:;2388.56;max op:;2397.96; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 07 c0 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;2480.00;2488.00;2460.00;2463.00;2499.00; +baseline stats (ms):;avg:;2478.00;min:;2460.00;max:;2499.00; +operation raw measurements (ms):;11958.00;11971.00;11990.00;11982.00;11978.00; +operation stats (ms/op):;avg op:;2395.16;min op:;2391.60;max op:;2398.00; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 07 c0 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;2480.00;2476.00;2503.00;2489.00;2459.00; +baseline stats (ms):;avg:;2481.40;min:;2459.00;max:;2503.00; +operation raw measurements (ms):;12019.60;12028.60;11944.60;12041.60;12056.60; +operation stats (ms/op):;avg op:;2403.64;min op:;2388.92;max op:;2411.32; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 07 c0 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;2491.00;2487.00;2506.00;2499.00;2511.00; +baseline stats (ms):;avg:;2498.80;min:;2487.00;max:;2511.00; +operation raw measurements (ms):;12041.20;12010.20;12009.20;11972.20;12043.20; +operation stats (ms/op):;avg op:;2403.04;min op:;2394.44;max op:;2408.64; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 01 00 05 07 c0 00 0a 00 10 ff ff ff ff 00 05 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 01 00 05 07 c0 00 0a 00 20 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 01 00 05 07 c0 00 0a 00 40 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 01 00 05 07 c0 00 0a 00 80 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 01 00 05 07 c0 00 0a 01 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 01 00 05 07 c0 00 0a 02 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + + +SIGNATURE - ALG_RSA LENGTH_RSA_1984 ALG_RSA_SHA_ISO9796 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_2048 ALG_RSA_SHA_ISO9796 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 08 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;2697.00;2689.00;2709.00;2687.00;2728.00; +baseline stats (ms):;avg:;2702.00;min:;2687.00;max:;2728.00; +operation raw measurements (ms):;13012.00;13082.00;13065.00;13025.00;13114.00; +operation stats (ms/op):;avg op:;2611.92;min op:;2602.40;max op:;2622.80; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 08 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;2708.00;2720.00;2711.00;2701.00;2700.00; +baseline stats (ms):;avg:;2708.00;min:;2700.00;max:;2720.00; +operation raw measurements (ms):;13116.00;13104.00;13077.00;13096.00;13094.00; +operation stats (ms/op):;avg op:;2619.48;min op:;2615.40;max op:;2623.20; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 08 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;2679.00;2690.00;2714.00;2718.00;2718.00; +baseline stats (ms):;avg:;2703.80;min:;2679.00;max:;2718.00; +operation raw measurements (ms):;13071.20;13023.20;13063.20;13004.20;13033.20; +operation stats (ms/op):;avg op:;2607.80;min op:;2600.84;max op:;2614.24; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 08 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;2706.00;2705.00;2737.00;2693.00;2693.00; +baseline stats (ms):;avg:;2706.80;min:;2693.00;max:;2737.00; +operation raw measurements (ms):;13043.20;13055.20;13007.20;13068.20;13016.20; +operation stats (ms/op):;avg op:;2607.60;min op:;2601.44;max op:;2613.64; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 08 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;2716.00;2715.00;2725.00;2723.00;2720.00; +baseline stats (ms):;avg:;2719.80;min:;2715.00;max:;2725.00; +operation raw measurements (ms):;13053.20;13073.20;13048.20;13042.20;13049.20; +operation stats (ms/op):;avg op:;2610.64;min op:;2608.44;max op:;2614.64; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 08 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;2707.00;2727.00;2697.00;2719.00;2718.00; +baseline stats (ms):;avg:;2713.60;min:;2697.00;max:;2727.00; +operation raw measurements (ms):;13096.40;13088.40;13054.40;13016.40;13085.40; +operation stats (ms/op):;avg op:;2613.64;min op:;2603.28;max op:;2619.28; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 01 00 05 08 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 01 00 05 08 00 00 0a 00 20 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 01 00 05 08 00 00 0a 00 40 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 01 00 05 08 00 00 0a 00 80 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 01 00 05 08 00 00 0a 01 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 01 00 05 08 00 00 0a 02 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + + +SIGNATURE - ALG_RSA LENGTH_RSA_2048 ALG_RSA_SHA_ISO9796 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_3072 ALG_RSA_SHA_ISO9796 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 0c 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 0c 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 0c 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 0c 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 0c 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 0c 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 01 00 05 0c 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 01 00 05 0c 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 01 00 05 0c 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 01 00 05 0c 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 01 00 05 0c 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 01 00 05 0c 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_3072 ALG_RSA_SHA_ISO9796 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_4096 ALG_RSA_SHA_ISO9796 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 10 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 10 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 10 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 10 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 10 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 01 00 05 10 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 01 00 05 10 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 01 00 05 10 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 01 00 05 10 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 01 00 05 10 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 01 00 05 10 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 01 00 05 10 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_4096 ALG_RSA_SHA_ISO9796 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_512 ALG_RSA_SHA_PKCS1 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 02 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;190.00;189.00;189.00;189.00;188.00; +baseline stats (ms):;avg:;189.25;min:;188.00;max:;190.00; +operation raw measurements (ms):;467.75;466.75;467.75;467.75;467.75; +operation stats (ms/op):;avg op:;93.51;min op:;93.35;max op:;93.55; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 02 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;190.00;188.00;189.00;189.00;188.00; +baseline stats (ms):;avg:;188.80;min:;188.00;max:;190.00; +operation raw measurements (ms):;473.20;466.20;471.20;468.20;467.20; +operation stats (ms/op):;avg op:;93.84;min op:;93.24;max op:;94.64; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 02 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;191.00;189.00;188.00;189.00;188.00; +baseline stats (ms):;avg:;189.00;min:;188.00;max:;191.00; +operation raw measurements (ms):;476.00;479.00;475.00;474.00;472.00; +operation stats (ms/op):;avg op:;95.04;min op:;94.40;max op:;95.80; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 02 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;192.00;189.00;190.00;190.00;190.00; +baseline stats (ms):;avg:;190.20;min:;189.00;max:;192.00; +operation raw measurements (ms):;477.80;479.80;480.80;482.80;479.80; +operation stats (ms/op):;avg op:;96.04;min op:;95.56;max op:;96.56; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 02 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;194.00;194.00;192.00;193.00;196.00; +baseline stats (ms):;avg:;193.80;min:;192.00;max:;196.00; +operation raw measurements (ms):;492.20;494.20;491.20;492.20;490.20; +operation stats (ms/op):;avg op:;98.40;min op:;98.04;max op:;98.84; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 02 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;199.00;199.00;197.00;197.00;198.00; +baseline stats (ms):;avg:;198.00;min:;197.00;max:;199.00; +operation raw measurements (ms):;509.00;514.00;515.00;513.00;514.00; +operation stats (ms/op):;avg op:;102.60;min op:;101.80;max op:;103.00; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 01 00 05 02 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 01 00 05 02 00 00 0a 00 20 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 01 00 05 02 00 00 0a 00 40 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 01 00 05 02 00 00 0a 00 80 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 01 00 05 02 00 00 0a 01 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 01 00 05 02 00 00 0a 02 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + + +SIGNATURE - ALG_RSA LENGTH_RSA_512 ALG_RSA_SHA_PKCS1 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_736 ALG_RSA_SHA_PKCS1 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 02 e0 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;278.00;275.00;274.00;276.00;276.00; +baseline stats (ms):;avg:;275.80;min:;274.00;max:;278.00; +operation raw measurements (ms):;918.20;916.20;915.20;915.20;919.20; +operation stats (ms/op):;avg op:;183.36;min op:;183.04;max op:;183.84; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 02 e0 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;280.00;280.00;328.00;280.00;275.00; +baseline stats (ms):;avg:;288.60;min:;275.00;max:;328.00;;;CHECK +operation raw measurements (ms):;904.40;904.40;897.40;901.40;903.40; +operation stats (ms/op):;avg op:;180.44;min op:;179.48;max op:;180.88; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 02 e0 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;280.00;290.00;277.00;277.00;277.00; +baseline stats (ms):;avg:;280.20;min:;277.00;max:;290.00; +operation raw measurements (ms):;922.80;920.80;923.80;917.80;917.80; +operation stats (ms/op):;avg op:;184.12;min op:;183.56;max op:;184.76; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 02 e0 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;280.00;280.00;357.00;279.00;280.00; +baseline stats (ms):;avg:;295.20;min:;279.00;max:;357.00;;;CHECK +operation raw measurements (ms):;911.80;908.80;911.80;908.80;903.80; +operation stats (ms/op):;avg op:;181.80;min op:;180.76;max op:;182.36; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 02 e0 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;282.00;293.00;282.00;283.00;282.00; +baseline stats (ms):;avg:;284.40;min:;282.00;max:;293.00; +operation raw measurements (ms):;929.60;934.60;937.60;936.60;933.60; +operation stats (ms/op):;avg op:;186.88;min op:;185.92;max op:;187.52; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 02 e0 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;288.00;286.00;334.00;288.00;287.00; +baseline stats (ms):;avg:;296.60;min:;286.00;max:;334.00;;;CHECK +operation raw measurements (ms):;951.40;945.40;950.40;946.40;956.40; +operation stats (ms/op):;avg op:;190.00;min op:;189.08;max op:;191.28; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 01 00 05 02 e0 00 0a 00 10 ff ff ff ff 00 05 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 01 00 05 02 e0 00 0a 00 20 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 01 00 05 02 e0 00 0a 00 40 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 01 00 05 02 e0 00 0a 00 80 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 01 00 05 02 e0 00 0a 01 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 01 00 05 02 e0 00 0a 02 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + + +SIGNATURE - ALG_RSA LENGTH_RSA_736 ALG_RSA_SHA_PKCS1 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_768 ALG_RSA_SHA_PKCS1 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 03 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;301.00;297.00;301.00;296.00;298.00; +baseline stats (ms):;avg:;298.60;min:;296.00;max:;301.00; +operation raw measurements (ms):;1018.40;1022.40;1016.40;1021.40;1022.40; +operation stats (ms/op):;avg op:;204.04;min op:;203.28;max op:;204.48; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 03 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;299.00;299.00;299.00;299.00;299.00; +baseline stats (ms):;avg:;299.00;min:;299.00;max:;299.00; +operation raw measurements (ms):;1019.00;1019.00;1022.00;1019.00;1016.00; +operation stats (ms/op):;avg op:;203.80;min op:;203.20;max op:;204.40; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 03 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;302.00;306.00;297.00;299.00;297.00; +baseline stats (ms):;avg:;300.20;min:;297.00;max:;306.00; +operation raw measurements (ms):;1019.80;1031.80;1015.80;1028.80;1033.80; +operation stats (ms/op):;avg op:;205.20;min op:;203.16;max op:;206.76; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 03 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;304.00;303.00;300.00;304.00;305.00; +baseline stats (ms):;avg:;304.00;min:;300.00;max:;305.00; +operation raw measurements (ms):;1033.00;1034.00;1026.00;1022.00;1027.00; +operation stats (ms/op):;avg op:;205.68;min op:;204.40;max op:;206.80; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 03 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;305.00;316.00;304.00;305.00;305.00; +baseline stats (ms):;avg:;307.00;min:;304.00;max:;316.00; +operation raw measurements (ms):;1033.00;1034.00;1041.00;1043.00;1039.00; +operation stats (ms/op):;avg op:;207.60;min op:;206.60;max op:;208.60; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 03 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;309.00;308.00;309.00;307.00;309.00; +baseline stats (ms):;avg:;308.75;min:;307.00;max:;309.00; +operation raw measurements (ms):;1060.25;1066.25;1062.25;1066.25;1066.25; +operation stats (ms/op):;avg op:;212.85;min op:;212.05;max op:;213.25; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 01 00 05 03 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 01 00 05 03 00 00 0a 00 20 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 01 00 05 03 00 00 0a 00 40 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 01 00 05 03 00 00 0a 00 80 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 01 00 05 03 00 00 0a 01 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 01 00 05 03 00 00 0a 02 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + + +SIGNATURE - ALG_RSA LENGTH_RSA_768 ALG_RSA_SHA_PKCS1 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_896 ALG_RSA_SHA_PKCS1 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 03 80 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;391.00;388.00;388.00;392.00;390.00; +baseline stats (ms):;avg:;389.80;min:;388.00;max:;392.00; +operation raw measurements (ms):;1478.20;1480.20;1476.20;1469.20;1469.20; +operation stats (ms/op):;avg op:;294.92;min op:;293.84;max op:;296.04; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 03 80 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;388.00;391.00;387.00;389.00;394.00; +baseline stats (ms):;avg:;389.80;min:;387.00;max:;394.00; +operation raw measurements (ms):;1472.20;1472.20;1484.20;1484.20;1472.20; +operation stats (ms/op):;avg op:;295.40;min op:;294.44;max op:;296.84; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 03 80 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;391.00;389.00;392.00;391.00;393.00; +baseline stats (ms):;avg:;391.20;min:;389.00;max:;393.00; +operation raw measurements (ms):;1479.80;1482.80;1480.80;1475.80;1478.80; +operation stats (ms/op):;avg op:;295.92;min op:;295.16;max op:;296.56; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 03 80 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;392.00;390.00;389.00;390.00;393.00; +baseline stats (ms):;avg:;390.80;min:;389.00;max:;393.00; +operation raw measurements (ms):;1489.20;1491.20;1481.20;1485.20;1494.20; +operation stats (ms/op):;avg op:;297.64;min op:;296.24;max op:;298.84; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 03 80 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;397.00;394.00;393.00;391.00;394.00; +baseline stats (ms):;avg:;393.80;min:;391.00;max:;397.00; +operation raw measurements (ms):;1495.20;1506.20;1503.20;1503.20;1494.20; +operation stats (ms/op):;avg op:;300.08;min op:;298.84;max op:;301.24; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 03 80 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;402.00;400.00;399.00;409.00;399.00; +baseline stats (ms):;avg:;401.80;min:;399.00;max:;409.00; +operation raw measurements (ms):;1516.20;1518.20;1513.20;1522.20;1524.20; +operation stats (ms/op):;avg op:;303.76;min op:;302.64;max op:;304.84; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 01 00 05 03 80 00 0a 00 10 ff ff ff ff 00 05 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 01 00 05 03 80 00 0a 00 20 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 01 00 05 03 80 00 0a 00 40 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 01 00 05 03 80 00 0a 00 80 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 01 00 05 03 80 00 0a 01 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 01 00 05 03 80 00 0a 02 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + + +SIGNATURE - ALG_RSA LENGTH_RSA_896 ALG_RSA_SHA_PKCS1 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_1024 ALG_RSA_SHA_PKCS1 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 04 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;507.00;505.00;507.00;507.00;507.00; +baseline stats (ms):;avg:;507.00;min:;505.00;max:;507.00; +operation raw measurements (ms):;2047.00;2066.00;2055.00;2050.00;2055.00; +operation stats (ms/op):;avg op:;410.92;min op:;409.40;max op:;413.20; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 04 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;510.00;509.00;502.00;509.00;503.00; +baseline stats (ms):;avg:;506.60;min:;502.00;max:;510.00; +operation raw measurements (ms):;2056.40;2056.40;2053.40;2052.40;2054.40; +operation stats (ms/op):;avg op:;410.92;min op:;410.48;max op:;411.28; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 04 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;502.00;509.00;505.00;503.00;511.00; +baseline stats (ms):;avg:;506.00;min:;502.00;max:;511.00; +operation raw measurements (ms):;2050.00;2058.00;2065.00;2053.00;2056.00; +operation stats (ms/op):;avg op:;411.28;min op:;410.00;max op:;413.00; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 04 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;513.00;505.00;519.00;512.00;510.00; +baseline stats (ms):;avg:;511.80;min:;505.00;max:;519.00; +operation raw measurements (ms):;2069.20;2058.20;2077.20;2070.20;2067.20; +operation stats (ms/op):;avg op:;413.68;min op:;411.64;max op:;415.44; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 04 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;515.00;513.00;511.00;508.00;512.00; +baseline stats (ms):;avg:;511.80;min:;508.00;max:;515.00; +operation raw measurements (ms):;2066.20;2091.20;2078.20;2068.20;2079.20; +operation stats (ms/op):;avg op:;415.32;min op:;413.24;max op:;418.24; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 04 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;518.00;511.00;525.00;514.00;514.00; +baseline stats (ms):;avg:;516.40;min:;511.00;max:;525.00; +operation raw measurements (ms):;2097.60;2102.60;2094.60;2089.60;2102.60; +operation stats (ms/op):;avg op:;419.48;min op:;417.92;max op:;420.52; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 01 00 05 04 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 01 00 05 04 00 00 0a 00 20 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 01 00 05 04 00 00 0a 00 40 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 01 00 05 04 00 00 0a 00 80 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 01 00 05 04 00 00 0a 01 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 01 00 05 04 00 00 0a 02 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + + +SIGNATURE - ALG_RSA LENGTH_RSA_1024 ALG_RSA_SHA_PKCS1 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_1280 ALG_RSA_SHA_PKCS1 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 05 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;834.00;824.00;829.00;821.00;822.00; +baseline stats (ms):;avg:;826.00;min:;821.00;max:;834.00; +operation raw measurements (ms):;3636.00;3643.00;3636.00;3649.00;3644.00; +operation stats (ms/op):;avg op:;728.32;min op:;727.20;max op:;729.80; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 05 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;824.00;828.00;826.00;821.00;820.00; +baseline stats (ms):;avg:;823.80;min:;820.00;max:;828.00; +operation raw measurements (ms):;3661.20;3661.20;3614.20;3653.20;3663.20; +operation stats (ms/op):;avg op:;730.12;min op:;722.84;max op:;732.64; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 05 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;833.00;834.00;827.00;818.00;828.00; +baseline stats (ms):;avg:;830.50;min:;818.00;max:;834.00; +operation raw measurements (ms):;3671.50;3658.50;3648.50;3655.50;3637.50; +operation stats (ms/op):;avg op:;730.86;min op:;727.50;max op:;734.30; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 05 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;829.00;827.00;835.00;827.00;826.00; +baseline stats (ms):;avg:;828.80;min:;826.00;max:;835.00; +operation raw measurements (ms):;3665.20;3673.20;3658.20;3658.20;3680.20; +operation stats (ms/op):;avg op:;733.40;min op:;731.64;max op:;736.04; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 05 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;833.00;834.00;831.00;826.00;829.00; +baseline stats (ms):;avg:;830.60;min:;826.00;max:;834.00; +operation raw measurements (ms):;3669.40;3669.40;3666.40;3676.40;3677.40; +operation stats (ms/op):;avg op:;734.36;min op:;733.28;max op:;735.48; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 05 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;838.00;836.00;839.00;834.00;839.00; +baseline stats (ms):;avg:;837.20;min:;834.00;max:;839.00; +operation raw measurements (ms):;3698.80;3721.80;3705.80;3697.80;3689.80; +operation stats (ms/op):;avg op:;740.56;min op:;737.96;max op:;744.36; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 01 00 05 05 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 01 00 05 05 00 00 0a 00 20 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 01 00 05 05 00 00 0a 00 40 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 01 00 05 05 00 00 0a 00 80 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 01 00 05 05 00 00 0a 01 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 01 00 05 05 00 00 0a 02 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + + +SIGNATURE - ALG_RSA LENGTH_RSA_1280 ALG_RSA_SHA_PKCS1 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_1536 ALG_RSA_SHA_PKCS1 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 06 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;1279.00;1277.00;1291.00;1273.00;1272.00; +baseline stats (ms):;avg:;1278.40;min:;1272.00;max:;1291.00; +operation raw measurements (ms):;5917.60;5922.60;5946.60;5941.60;5936.60; +operation stats (ms/op):;avg op:;1186.60;min op:;1183.52;max op:;1189.32; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 06 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;1278.00;1286.00;1277.00;1282.00;1272.00; +baseline stats (ms):;avg:;1279.00;min:;1272.00;max:;1286.00; +operation raw measurements (ms):;5905.00;5945.00;5926.00;5943.00;5954.00; +operation stats (ms/op):;avg op:;1186.92;min op:;1181.00;max op:;1190.80; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 06 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;1276.00;1293.00;1271.00;1273.00;1284.00; +baseline stats (ms):;avg:;1279.40;min:;1271.00;max:;1293.00; +operation raw measurements (ms):;5953.60;5947.60;5911.60;5964.60;5922.60; +operation stats (ms/op):;avg op:;1188.00;min op:;1182.32;max op:;1192.92; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 06 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;1284.00;1281.00;1274.00;1281.00;1279.00; +baseline stats (ms):;avg:;1281.25;min:;1274.00;max:;1284.00; +operation raw measurements (ms):;5925.75;5904.75;5932.75;5948.75;5955.75; +operation stats (ms/op):;avg op:;1186.71;min op:;1180.95;max op:;1191.15; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 06 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;1287.00;1281.00;1276.00;1288.00;1290.00; +baseline stats (ms):;avg:;1286.50;min:;1276.00;max:;1290.00; +operation raw measurements (ms):;5948.50;5928.50;5949.50;5943.50;5948.50; +operation stats (ms/op):;avg op:;1188.74;min op:;1185.70;max op:;1189.90; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 06 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;1298.00;1287.00;1297.00;1286.00;1279.00; +baseline stats (ms):;avg:;1289.40;min:;1279.00;max:;1298.00; +operation raw measurements (ms):;5998.60;5957.60;5941.60;5975.60;5988.60; +operation stats (ms/op):;avg op:;1194.48;min op:;1188.32;max op:;1199.72; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 01 00 05 06 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 01 00 05 06 00 00 0a 00 20 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 01 00 05 06 00 00 0a 00 40 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 01 00 05 06 00 00 0a 00 80 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 01 00 05 06 00 00 0a 01 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 01 00 05 06 00 00 0a 02 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + + +SIGNATURE - ALG_RSA LENGTH_RSA_1536 ALG_RSA_SHA_PKCS1 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_1984 ALG_RSA_SHA_PKCS1 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 07 c0 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;2497.00;2464.00;2497.00;2481.00;2486.00; +baseline stats (ms):;avg:;2485.00;min:;2464.00;max:;2497.00; +operation raw measurements (ms):;11892.00;11905.00;11895.00;11919.00;11893.00; +operation stats (ms/op):;avg op:;2380.16;min op:;2378.40;max op:;2383.80; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 07 c0 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;2479.00;2480.00;2492.00;2480.00;2473.00; +baseline stats (ms):;avg:;2480.80;min:;2473.00;max:;2492.00; +operation raw measurements (ms):;11887.20;11924.20;11920.20;11950.20;11919.20; +operation stats (ms/op):;avg op:;2384.04;min op:;2377.44;max op:;2390.04; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 07 c0 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;2472.00;2481.00;2477.00;2484.00;2475.00; +baseline stats (ms):;avg:;2477.80;min:;2472.00;max:;2484.00; +operation raw measurements (ms):;11946.20;11963.20;11945.20;11923.20;11885.20; +operation stats (ms/op):;avg op:;2386.52;min op:;2377.04;max op:;2392.64; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 07 c0 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;2482.00;2480.00;2477.00;2489.00;2487.00; +baseline stats (ms):;avg:;2483.00;min:;2477.00;max:;2489.00; +operation raw measurements (ms):;11927.00;11945.00;11917.00;11942.00;11950.00; +operation stats (ms/op):;avg op:;2387.24;min op:;2383.40;max op:;2390.00; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 07 c0 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;2478.00;2492.00;2484.00;2488.00;2468.00; +baseline stats (ms):;avg:;2482.00;min:;2468.00;max:;2492.00; +operation raw measurements (ms):;11953.00;11990.00;12010.00;11991.00;11937.00; +operation stats (ms/op):;avg op:;2395.24;min op:;2387.40;max op:;2402.00; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 07 c0 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;2496.00;2476.00;2502.00;2491.00;2476.00; +baseline stats (ms):;avg:;2488.20;min:;2476.00;max:;2502.00; +operation raw measurements (ms):;11984.80;11954.80;11984.80;11900.80;11966.80; +operation stats (ms/op):;avg op:;2391.68;min op:;2380.16;max op:;2396.96; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 01 00 05 07 c0 00 0a 00 10 ff ff ff ff 00 05 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 01 00 05 07 c0 00 0a 00 20 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 01 00 05 07 c0 00 0a 00 40 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 01 00 05 07 c0 00 0a 00 80 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 01 00 05 07 c0 00 0a 01 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 01 00 05 07 c0 00 0a 02 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + + +SIGNATURE - ALG_RSA LENGTH_RSA_1984 ALG_RSA_SHA_PKCS1 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_2048 ALG_RSA_SHA_PKCS1 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 08 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;2708.00;2697.00;2697.00;2714.00;2707.00; +baseline stats (ms):;avg:;2704.60;min:;2697.00;max:;2714.00; +operation raw measurements (ms):;13000.40;12973.40;13022.40;13109.40;13035.40; +operation stats (ms/op):;avg op:;2605.64;min op:;2594.68;max op:;2621.88; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 08 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;2692.00;2694.00;2704.00;2666.00;2690.00; +baseline stats (ms):;avg:;2695.00;min:;2666.00;max:;2704.00; +operation raw measurements (ms):;12993.00;13039.00;13007.00;12983.00;13038.00; +operation stats (ms/op):;avg op:;2602.40;min op:;2596.60;max op:;2607.80; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 08 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;2695.00;2714.00;2699.00;2722.00;2668.00; +baseline stats (ms):;avg:;2699.60;min:;2668.00;max:;2722.00; +operation raw measurements (ms):;12960.40;13010.40;12986.40;13010.40;13030.40; +operation stats (ms/op):;avg op:;2599.92;min op:;2592.08;max op:;2606.08; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 08 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;2702.00;2713.00;2684.00;2693.00;2708.00; +baseline stats (ms):;avg:;2700.00;min:;2684.00;max:;2713.00; +operation raw measurements (ms):;13060.00;13028.00;13050.00;12975.00;13045.00; +operation stats (ms/op):;avg op:;2606.32;min op:;2595.00;max op:;2612.00; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 08 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;2703.00;2722.00;2700.00;2704.00;2709.00; +baseline stats (ms):;avg:;2707.60;min:;2700.00;max:;2722.00; +operation raw measurements (ms):;13074.40;13010.40;13032.40;13002.40;13063.40; +operation stats (ms/op):;avg op:;2607.32;min op:;2600.48;max op:;2614.88; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 08 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;2696.00;2679.00;2694.00;2678.00;2712.00; +baseline stats (ms):;avg:;2691.80;min:;2678.00;max:;2712.00; +operation raw measurements (ms):;13062.20;13115.20;13058.20;13136.20;13049.20; +operation stats (ms/op):;avg op:;2616.84;min op:;2609.84;max op:;2627.24; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 01 00 05 08 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 01 00 05 08 00 00 0a 00 20 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 01 00 05 08 00 00 0a 00 40 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 01 00 05 08 00 00 0a 00 80 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 01 00 05 08 00 00 0a 01 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 01 00 05 08 00 00 0a 02 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + + +SIGNATURE - ALG_RSA LENGTH_RSA_2048 ALG_RSA_SHA_PKCS1 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_3072 ALG_RSA_SHA_PKCS1 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 0c 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 0c 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 0c 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 0c 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 0c 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 0c 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 01 00 05 0c 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 01 00 05 0c 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 01 00 05 0c 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 01 00 05 0c 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 01 00 05 0c 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 01 00 05 0c 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_3072 ALG_RSA_SHA_PKCS1 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_4096 ALG_RSA_SHA_PKCS1 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 10 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 10 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 10 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 10 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 10 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 01 00 05 10 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 01 00 05 10 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 01 00 05 10 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 01 00 05 10 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 01 00 05 10 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 01 00 05 10 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 01 00 05 10 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_4096 ALG_RSA_SHA_PKCS1 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_512 ALG_RSA_SHA_PKCS1_PSS - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 02 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;197.00;199.00;199.00;198.00;199.00; +baseline stats (ms):;avg:;198.75;min:;197.00;max:;199.00; +operation raw measurements (ms):;523.25;518.25;529.25;523.25;526.25; +operation stats (ms/op):;avg op:;104.81;min op:;103.65;max op:;105.85; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 02 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;202.00;200.00;201.00;199.00;201.00; +baseline stats (ms):;avg:;200.60;min:;199.00;max:;202.00; +operation raw measurements (ms):;527.40;521.40;524.40;521.40;525.40; +operation stats (ms/op):;avg op:;104.80;min op:;104.28;max op:;105.48; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 02 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;202.00;201.00;199.00;202.00;203.00; +baseline stats (ms):;avg:;202.00;min:;199.00;max:;203.00; +operation raw measurements (ms):;530.00;531.00;524.00;524.00;528.00; +operation stats (ms/op):;avg op:;105.48;min op:;104.80;max op:;106.20; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 02 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;202.00;206.00;202.00;203.00;202.00; +baseline stats (ms):;avg:;203.00;min:;202.00;max:;206.00; +operation raw measurements (ms):;533.00;538.00;534.00;530.00;532.00; +operation stats (ms/op):;avg op:;106.68;min op:;106.00;max op:;107.60; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 02 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;204.00;203.00;204.00;203.00;204.00; +baseline stats (ms):;avg:;203.60;min:;203.00;max:;204.00; +operation raw measurements (ms):;545.40;545.40;546.40;549.40;546.40; +operation stats (ms/op):;avg op:;109.32;min op:;109.08;max op:;109.88; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 02 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;210.00;208.00;211.00;208.00;209.00; +baseline stats (ms):;avg:;209.20;min:;208.00;max:;211.00; +operation raw measurements (ms):;567.80;571.80;568.80;569.80;569.80; +operation stats (ms/op):;avg op:;113.92;min op:;113.56;max op:;114.36; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 01 00 05 02 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 01 00 05 02 00 00 0a 00 20 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 01 00 05 02 00 00 0a 00 40 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 01 00 05 02 00 00 0a 00 80 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 01 00 05 02 00 00 0a 01 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 01 00 05 02 00 00 0a 02 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + + +SIGNATURE - ALG_RSA LENGTH_RSA_512 ALG_RSA_SHA_PKCS1_PSS - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_736 ALG_RSA_SHA_PKCS1_PSS - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 02 e0 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;290.00;291.00;290.00;291.00;287.00; +baseline stats (ms):;avg:;290.50;min:;287.00;max:;291.00; +operation raw measurements (ms):;977.50;968.50;965.50;960.50;963.50; +operation stats (ms/op):;avg op:;193.42;min op:;192.10;max op:;195.50; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 02 e0 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;292.00;299.00;288.00;289.00;290.00; +baseline stats (ms):;avg:;291.60;min:;288.00;max:;299.00; +operation raw measurements (ms):;966.40;970.40;964.40;968.40;970.40; +operation stats (ms/op):;avg op:;193.60;min op:;192.88;max op:;194.08; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 02 e0 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;291.00;290.00;375.00;290.00;293.00; +baseline stats (ms):;avg:;307.80;min:;290.00;max:;375.00;;;CHECK +operation raw measurements (ms):;961.20;960.20;955.20;960.20;962.20; +operation stats (ms/op):;avg op:;191.96;min op:;191.04;max op:;192.44; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 02 e0 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;292.00;300.00;291.00;288.00;289.00; +baseline stats (ms):;avg:;292.00;min:;288.00;max:;300.00; +operation raw measurements (ms):;987.00;978.00;980.00;980.00;982.00; +operation stats (ms/op):;avg op:;196.28;min op:;195.60;max op:;197.40; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 02 e0 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;298.00;293.00;316.00;295.00;290.00; +baseline stats (ms):;avg:;298.40;min:;290.00;max:;316.00;;;CHECK +operation raw measurements (ms):;991.60;990.60;983.60;991.60;991.60; +operation stats (ms/op):;avg op:;197.96;min op:;196.72;max op:;198.32; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 02 e0 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;302.00;296.00;297.00;301.00;299.00; +baseline stats (ms):;avg:;299.00;min:;296.00;max:;302.00; +operation raw measurements (ms):;1017.00;1023.00;1028.00;1017.00;1024.00; +operation stats (ms/op):;avg op:;204.36;min op:;203.40;max op:;205.60; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 01 00 05 02 e0 00 0a 00 10 ff ff ff ff 00 05 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 01 00 05 02 e0 00 0a 00 20 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 01 00 05 02 e0 00 0a 00 40 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 01 00 05 02 e0 00 0a 00 80 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 01 00 05 02 e0 00 0a 01 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 01 00 05 02 e0 00 0a 02 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + + +SIGNATURE - ALG_RSA LENGTH_RSA_736 ALG_RSA_SHA_PKCS1_PSS - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_768 ALG_RSA_SHA_PKCS1_PSS - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 03 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;314.00;309.00;312.00;313.00;311.00; +baseline stats (ms):;avg:;311.80;min:;309.00;max:;314.00; +operation raw measurements (ms):;1076.20;1077.20;1075.20;1078.20;1079.20; +operation stats (ms/op):;avg op:;215.44;min op:;215.04;max op:;215.84; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 03 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;312.00;322.00;308.00;307.00;310.00; +baseline stats (ms):;avg:;311.80;min:;307.00;max:;322.00; +operation raw measurements (ms):;1077.20;1072.20;1076.20;1078.20;1078.20; +operation stats (ms/op):;avg op:;215.28;min op:;214.44;max op:;215.64; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 03 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;310.00;311.00;313.00;313.00;314.00; +baseline stats (ms):;avg:;312.20;min:;310.00;max:;314.00; +operation raw measurements (ms):;1085.80;1081.80;1081.80;1085.80;1080.80; +operation stats (ms/op):;avg op:;216.64;min op:;216.16;max op:;217.16; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 03 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;315.00;318.00;310.00;309.00;311.00; +baseline stats (ms):;avg:;312.60;min:;309.00;max:;318.00; +operation raw measurements (ms):;1089.40;1082.40;1096.40;1087.40;1087.40; +operation stats (ms/op):;avg op:;217.72;min op:;216.48;max op:;219.28; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 03 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;316.00;314.00;317.00;314.00;314.00; +baseline stats (ms):;avg:;315.00;min:;314.00;max:;317.00; +operation raw measurements (ms):;1099.00;1101.00;1106.00;1100.00;1102.00; +operation stats (ms/op):;avg op:;220.32;min op:;219.80;max op:;221.20; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 03 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;322.00;331.00;323.00;320.00;318.00; +baseline stats (ms):;avg:;322.80;min:;318.00;max:;331.00; +operation raw measurements (ms):;1117.20;1133.20;1117.20;1120.20;1116.20; +operation stats (ms/op):;avg op:;224.16;min op:;223.24;max op:;226.64; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 01 00 05 03 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 01 00 05 03 00 00 0a 00 20 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 01 00 05 03 00 00 0a 00 40 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 01 00 05 03 00 00 0a 00 80 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 01 00 05 03 00 00 0a 01 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 01 00 05 03 00 00 0a 02 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + + +SIGNATURE - ALG_RSA LENGTH_RSA_768 ALG_RSA_SHA_PKCS1_PSS - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_896 ALG_RSA_SHA_PKCS1_PSS - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 03 80 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;407.00;403.00;402.00;406.00;404.00; +baseline stats (ms):;avg:;404.40;min:;402.00;max:;407.00; +operation raw measurements (ms):;1525.60;1538.60;1525.60;1540.60;1535.60; +operation stats (ms/op):;avg op:;306.64;min op:;305.12;max op:;308.12; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 03 80 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;401.00;398.00;400.00;397.00;403.00; +baseline stats (ms):;avg:;399.80;min:;397.00;max:;403.00; +operation raw measurements (ms):;1534.20;1543.20;1552.20;1546.20;1545.20; +operation stats (ms/op):;avg op:;308.84;min op:;306.84;max op:;310.44; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 03 80 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;404.00;402.00;408.00;404.00;404.00; +baseline stats (ms):;avg:;404.40;min:;402.00;max:;408.00; +operation raw measurements (ms):;1526.60;1534.60;1532.60;1551.60;1544.60; +operation stats (ms/op):;avg op:;307.60;min op:;305.32;max op:;310.32; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 03 80 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;404.00;406.00;397.00;407.00;405.00; +baseline stats (ms):;avg:;405.50;min:;397.00;max:;407.00; +operation raw measurements (ms):;1550.50;1544.50;1546.50;1546.50;1554.50; +operation stats (ms/op):;avg op:;309.70;min op:;308.90;max op:;310.90; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 03 80 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;407.00;407.00;405.00;405.00;412.00; +baseline stats (ms):;avg:;407.20;min:;405.00;max:;412.00; +operation raw measurements (ms):;1560.80;1561.80;1556.80;1554.80;1565.80; +operation stats (ms/op):;avg op:;312.00;min op:;310.96;max op:;313.16; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 03 80 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;415.00;412.00;409.00;410.00;410.00; +baseline stats (ms):;avg:;411.20;min:;409.00;max:;415.00; +operation raw measurements (ms):;1581.80;1587.80;1580.80;1576.80;1576.80; +operation stats (ms/op):;avg op:;316.16;min op:;315.36;max op:;317.56; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 01 00 05 03 80 00 0a 00 10 ff ff ff ff 00 05 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 01 00 05 03 80 00 0a 00 20 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 01 00 05 03 80 00 0a 00 40 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 01 00 05 03 80 00 0a 00 80 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 01 00 05 03 80 00 0a 01 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 01 00 05 03 80 00 0a 02 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + + +SIGNATURE - ALG_RSA LENGTH_RSA_896 ALG_RSA_SHA_PKCS1_PSS - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_1024 ALG_RSA_SHA_PKCS1_PSS - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 04 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;518.00;516.00;520.00;517.00;515.00; +baseline stats (ms):;avg:;517.20;min:;515.00;max:;520.00; +operation raw measurements (ms):;2133.80;2119.80;2122.80;2113.80;2125.80; +operation stats (ms/op):;avg op:;424.64;min op:;422.76;max op:;426.76; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 04 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;520.00;515.00;522.00;515.00;514.00; +baseline stats (ms):;avg:;517.20;min:;514.00;max:;522.00; +operation raw measurements (ms):;2121.80;2139.80;2120.80;2130.80;2142.80; +operation stats (ms/op):;avg op:;426.24;min op:;424.16;max op:;428.56; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 04 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;521.00;525.00;535.00;519.00;514.00; +baseline stats (ms):;avg:;522.80;min:;514.00;max:;535.00; +operation raw measurements (ms):;2114.20;2121.20;2135.20;2140.20;2125.20; +operation stats (ms/op):;avg op:;425.44;min op:;422.84;max op:;428.04; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 04 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;521.00;522.00;522.00;521.00;522.00; +baseline stats (ms):;avg:;521.60;min:;521.00;max:;522.00; +operation raw measurements (ms):;2140.40;2138.40;2126.40;2128.40;2129.40; +operation stats (ms/op):;avg op:;426.52;min op:;425.28;max op:;428.08; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 04 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;522.00;522.00;535.00;522.00;525.00; +baseline stats (ms):;avg:;525.20;min:;522.00;max:;535.00; +operation raw measurements (ms):;2134.80;2134.80;2135.80;2139.80;2137.80; +operation stats (ms/op):;avg op:;427.32;min op:;426.96;max op:;427.96; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 04 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;530.00;529.00;529.00;527.00;524.00; +baseline stats (ms):;avg:;528.75;min:;524.00;max:;530.00; +operation raw measurements (ms):;2176.25;2168.25;2163.25;2165.25;2173.25; +operation stats (ms/op):;avg op:;433.85;min op:;432.65;max op:;435.25; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 01 00 05 04 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 01 00 05 04 00 00 0a 00 20 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 01 00 05 04 00 00 0a 00 40 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 01 00 05 04 00 00 0a 00 80 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 01 00 05 04 00 00 0a 01 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 01 00 05 04 00 00 0a 02 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + + +SIGNATURE - ALG_RSA LENGTH_RSA_1024 ALG_RSA_SHA_PKCS1_PSS - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_1280 ALG_RSA_SHA_PKCS1_PSS - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 05 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;834.00;830.00;836.00;836.00;835.00; +baseline stats (ms):;avg:;835.25;min:;830.00;max:;836.00; +operation raw measurements (ms):;3708.75;3726.75;3722.75;3713.75;3698.75; +operation stats (ms/op):;avg op:;742.83;min op:;739.75;max op:;745.35; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 05 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;837.00;837.00;841.00;842.00;840.00; +baseline stats (ms):;avg:;839.40;min:;837.00;max:;842.00; +operation raw measurements (ms):;3728.60;3701.60;3698.60;3698.60;3720.60; +operation stats (ms/op):;avg op:;741.92;min op:;739.72;max op:;745.72; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 05 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;848.00;834.00;853.00;841.00;838.00; +baseline stats (ms):;avg:;842.80;min:;834.00;max:;853.00; +operation raw measurements (ms):;3729.20;3693.20;3719.20;3734.20;3720.20; +operation stats (ms/op):;avg op:;743.84;min op:;738.64;max op:;746.84; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 05 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;845.00;850.00;838.00;837.00;829.00; +baseline stats (ms):;avg:;839.80;min:;829.00;max:;850.00; +operation raw measurements (ms):;3732.20;3714.20;3731.20;3760.20;3699.20; +operation stats (ms/op):;avg op:;745.48;min op:;739.84;max op:;752.04; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 05 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;845.00;843.00;848.00;833.00;842.00; +baseline stats (ms):;avg:;844.50;min:;833.00;max:;848.00; +operation raw measurements (ms):;3748.50;3739.50;3739.50;3754.50;3735.50; +operation stats (ms/op):;avg op:;748.70;min op:;747.10;max op:;750.90; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 05 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;848.00;851.00;851.00;837.00;848.00; +baseline stats (ms):;avg:;849.50;min:;837.00;max:;851.00; +operation raw measurements (ms):;3778.50;3749.50;3751.50;3750.50;3766.50; +operation stats (ms/op):;avg op:;751.86;min op:;749.90;max op:;755.70; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 01 00 05 05 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 01 00 05 05 00 00 0a 00 20 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 01 00 05 05 00 00 0a 00 40 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 01 00 05 05 00 00 0a 00 80 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 01 00 05 05 00 00 0a 01 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 01 00 05 05 00 00 0a 02 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + + +SIGNATURE - ALG_RSA LENGTH_RSA_1280 ALG_RSA_SHA_PKCS1_PSS - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_1536 ALG_RSA_SHA_PKCS1_PSS - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 06 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;1290.00;1290.00;1291.00;1294.00;1301.00; +baseline stats (ms):;avg:;1293.20;min:;1290.00;max:;1301.00; +operation raw measurements (ms):;5973.80;6014.80;5987.80;6026.80;5983.80; +operation stats (ms/op):;avg op:;1199.48;min op:;1194.76;max op:;1205.36; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 06 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;1286.00;1299.00;1303.00;1288.00;1291.00; +baseline stats (ms):;avg:;1293.40;min:;1286.00;max:;1303.00; +operation raw measurements (ms):;5995.60;5993.60;6011.60;5979.60;6004.60; +operation stats (ms/op):;avg op:;1199.40;min op:;1195.92;max op:;1202.32; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 06 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;1283.00;1293.00;1300.00;1294.00;1304.00; +baseline stats (ms):;avg:;1294.80;min:;1283.00;max:;1304.00; +operation raw measurements (ms):;6010.20;6016.20;6016.20;6001.20;5985.20; +operation stats (ms/op):;avg op:;1201.16;min op:;1197.04;max op:;1203.24; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 06 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;1294.00;1308.00;1290.00;1289.00;1285.00; +baseline stats (ms):;avg:;1293.20;min:;1285.00;max:;1308.00; +operation raw measurements (ms):;6011.80;6007.80;5997.80;5989.80;6009.80; +operation stats (ms/op):;avg op:;1200.68;min op:;1197.96;max op:;1202.36; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 06 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;1297.00;1300.00;1310.00;1291.00;1303.00; +baseline stats (ms):;avg:;1300.20;min:;1291.00;max:;1310.00; +operation raw measurements (ms):;6008.80;6000.80;5985.80;6016.80;6031.80; +operation stats (ms/op):;avg op:;1201.76;min op:;1197.16;max op:;1206.36; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 06 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;1300.00;1310.00;1297.00;1307.00;1295.00; +baseline stats (ms):;avg:;1301.80;min:;1295.00;max:;1310.00; +operation raw measurements (ms):;6028.20;6022.20;6045.20;6066.20;6030.20; +operation stats (ms/op):;avg op:;1207.68;min op:;1204.44;max op:;1213.24; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 01 00 05 06 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 01 00 05 06 00 00 0a 00 20 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 01 00 05 06 00 00 0a 00 40 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 01 00 05 06 00 00 0a 00 80 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 01 00 05 06 00 00 0a 01 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 01 00 05 06 00 00 0a 02 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + + +SIGNATURE - ALG_RSA LENGTH_RSA_1536 ALG_RSA_SHA_PKCS1_PSS - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_1984 ALG_RSA_SHA_PKCS1_PSS - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 07 c0 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;2497.00;2517.00;2489.00;2499.00;2483.00; +baseline stats (ms):;avg:;2497.00;min:;2483.00;max:;2517.00; +operation raw measurements (ms):;11998.00;11974.00;12059.00;12005.00;11971.00; +operation stats (ms/op):;avg op:;2400.28;min op:;2394.20;max op:;2411.80; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 07 c0 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;2472.00;2517.00;2474.00;2504.00;2482.00; +baseline stats (ms):;avg:;2489.80;min:;2472.00;max:;2517.00; +operation raw measurements (ms):;12044.20;11971.20;12024.20;12009.20;11988.20; +operation stats (ms/op):;avg op:;2401.48;min op:;2394.24;max op:;2408.84; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 07 c0 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;2482.00;2503.00;2502.00;2486.00;2528.00; +baseline stats (ms):;avg:;2500.20;min:;2482.00;max:;2528.00; +operation raw measurements (ms):;12033.80;12011.80;12018.80;12003.80;11929.80; +operation stats (ms/op):;avg op:;2399.92;min op:;2385.96;max op:;2406.76; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 07 c0 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;2497.00;2500.00;2490.00;2484.00;2501.00; +baseline stats (ms):;avg:;2494.40;min:;2484.00;max:;2501.00; +operation raw measurements (ms):;11974.60;11972.60;11968.60;12000.60;12058.60; +operation stats (ms/op):;avg op:;2399.00;min op:;2393.72;max op:;2411.72; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 07 c0 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;2506.00;2509.00;2510.00;2519.00;2517.00; +baseline stats (ms):;avg:;2512.20;min:;2506.00;max:;2519.00; +operation raw measurements (ms):;12041.80;12040.80;12004.80;11995.80;11952.80; +operation stats (ms/op):;avg op:;2401.44;min op:;2390.56;max op:;2408.36; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 07 c0 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;2495.00;2507.00;2511.00;2526.00;2524.00; +baseline stats (ms):;avg:;2512.60;min:;2495.00;max:;2526.00; +operation raw measurements (ms):;12038.40;12047.40;12034.40;12047.40;11985.40; +operation stats (ms/op):;avg op:;2406.12;min op:;2397.08;max op:;2409.48; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 01 00 05 07 c0 00 0a 00 10 ff ff ff ff 00 05 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 01 00 05 07 c0 00 0a 00 20 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 01 00 05 07 c0 00 0a 00 40 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 01 00 05 07 c0 00 0a 00 80 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 01 00 05 07 c0 00 0a 01 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 01 00 05 07 c0 00 0a 02 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + + +SIGNATURE - ALG_RSA LENGTH_RSA_1984 ALG_RSA_SHA_PKCS1_PSS - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_2048 ALG_RSA_SHA_PKCS1_PSS - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 08 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;2720.00;2721.00;2689.00;2706.00;2696.00; +baseline stats (ms):;avg:;2706.40;min:;2689.00;max:;2721.00; +operation raw measurements (ms):;13034.60;13046.60;13072.60;13074.60;13084.60; +operation stats (ms/op):;avg op:;2612.52;min op:;2606.92;max op:;2616.92; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 08 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;2693.00;2724.00;2702.00;2692.00;2710.00; +baseline stats (ms):;avg:;2704.20;min:;2692.00;max:;2724.00; +operation raw measurements (ms):;13123.80;13057.80;13117.80;13115.80;13040.80; +operation stats (ms/op):;avg op:;2618.24;min op:;2608.16;max op:;2624.76; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 08 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;2706.00;2700.00;2719.00;2715.00;2703.00; +baseline stats (ms):;avg:;2708.60;min:;2700.00;max:;2719.00; +operation raw measurements (ms):;13073.40;13035.40;13087.40;13079.40;13071.40; +operation stats (ms/op):;avg op:;2613.88;min op:;2607.08;max op:;2617.48; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 08 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;2727.00;2741.00;2727.00;2718.00;2747.00; +baseline stats (ms):;avg:;2732.00;min:;2718.00;max:;2747.00; +operation raw measurements (ms):;13047.00;13091.00;13107.00;13064.00;13080.00; +operation stats (ms/op):;avg op:;2615.56;min op:;2609.40;max op:;2621.40; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 08 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;2705.00;2740.00;2727.00;2719.00;2704.00; +baseline stats (ms):;avg:;2719.00;min:;2704.00;max:;2740.00; +operation raw measurements (ms):;13137.00;13104.00;13104.00;13090.00;13136.00; +operation stats (ms/op):;avg op:;2622.84;min op:;2618.00;max op:;2627.40; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 08 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;2729.00;2748.00;2711.00;2709.00;2711.00; +baseline stats (ms):;avg:;2721.60;min:;2709.00;max:;2748.00; +operation raw measurements (ms):;13106.40;13108.40;13127.40;13116.40;13118.40; +operation stats (ms/op):;avg op:;2623.08;min op:;2621.28;max op:;2625.48; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 01 00 05 08 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 01 00 05 08 00 00 0a 00 20 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 01 00 05 08 00 00 0a 00 40 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 01 00 05 08 00 00 0a 00 80 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 01 00 05 08 00 00 0a 01 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 01 00 05 08 00 00 0a 02 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + + +SIGNATURE - ALG_RSA LENGTH_RSA_2048 ALG_RSA_SHA_PKCS1_PSS - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_3072 ALG_RSA_SHA_PKCS1_PSS - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 0c 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 0c 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 0c 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 0c 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 0c 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 0c 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 01 00 05 0c 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 01 00 05 0c 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 01 00 05 0c 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 01 00 05 0c 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 01 00 05 0c 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 01 00 05 0c 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_3072 ALG_RSA_SHA_PKCS1_PSS - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_4096 ALG_RSA_SHA_PKCS1_PSS - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 10 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 10 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 10 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 10 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 10 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 01 00 05 10 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 01 00 05 10 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 01 00 05 10 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 01 00 05 10 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 01 00 05 10 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 01 00 05 10 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 01 00 05 10 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_4096 ALG_RSA_SHA_PKCS1_PSS - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_512 ALG_RSA_SHA_RFC2409 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 02 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 02 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 02 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 02 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 02 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 02 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 01 00 05 02 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 01 00 05 02 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 01 00 05 02 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 01 00 05 02 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 01 00 05 02 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_512 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 01 00 05 02 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_512 ALG_RSA_SHA_RFC2409 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_736 ALG_RSA_SHA_RFC2409 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 02 e0 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 02 e0 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 02 e0 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 02 e0 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 02 e0 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 02 e0 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 01 00 05 02 e0 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 01 00 05 02 e0 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 01 00 05 02 e0 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 01 00 05 02 e0 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 01 00 05 02 e0 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_736 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 01 00 05 02 e0 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_736 ALG_RSA_SHA_RFC2409 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_768 ALG_RSA_SHA_RFC2409 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 03 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 03 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 03 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 03 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 03 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 03 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 01 00 05 03 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 01 00 05 03 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 01 00 05 03 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 01 00 05 03 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 01 00 05 03 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_768 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 01 00 05 03 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_768 ALG_RSA_SHA_RFC2409 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_896 ALG_RSA_SHA_RFC2409 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 03 80 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 03 80 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 03 80 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 03 80 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 03 80 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 03 80 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 01 00 05 03 80 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 01 00 05 03 80 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 01 00 05 03 80 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 01 00 05 03 80 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 01 00 05 03 80 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_896 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 01 00 05 03 80 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_896 ALG_RSA_SHA_RFC2409 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_1024 ALG_RSA_SHA_RFC2409 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 04 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 04 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 04 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 04 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 04 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 04 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 01 00 05 04 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 01 00 05 04 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 01 00 05 04 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 01 00 05 04 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 01 00 05 04 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1024 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 01 00 05 04 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_1024 ALG_RSA_SHA_RFC2409 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_1280 ALG_RSA_SHA_RFC2409 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 05 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 05 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 05 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 05 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 05 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 05 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 01 00 05 05 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 01 00 05 05 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 01 00 05 05 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 01 00 05 05 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 01 00 05 05 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1280 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 01 00 05 05 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_1280 ALG_RSA_SHA_RFC2409 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_1536 ALG_RSA_SHA_RFC2409 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 06 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 06 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 06 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 06 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 06 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 06 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 01 00 05 06 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 01 00 05 06 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 01 00 05 06 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 01 00 05 06 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 01 00 05 06 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1536 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 01 00 05 06 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_1536 ALG_RSA_SHA_RFC2409 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_1984 ALG_RSA_SHA_RFC2409 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 07 c0 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 07 c0 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 07 c0 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 07 c0 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 07 c0 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 07 c0 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 01 00 05 07 c0 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 01 00 05 07 c0 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 01 00 05 07 c0 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 01 00 05 07 c0 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 01 00 05 07 c0 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_1984 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 01 00 05 07 c0 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_1984 ALG_RSA_SHA_RFC2409 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_2048 ALG_RSA_SHA_RFC2409 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 08 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 08 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 08 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 08 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 08 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 08 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 01 00 05 08 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 01 00 05 08 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 01 00 05 08 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 01 00 05 08 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 01 00 05 08 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_2048 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 01 00 05 08 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_2048 ALG_RSA_SHA_RFC2409 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_3072 ALG_RSA_SHA_RFC2409 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 0c 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 0c 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 0c 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 0c 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 0c 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 0c 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 01 00 05 0c 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 01 00 05 0c 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 01 00 05 0c 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 01 00 05 0c 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 01 00 05 0c 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_3072 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 01 00 05 0c 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_3072 ALG_RSA_SHA_RFC2409 - variable data - END + + +SIGNATURE - ALG_RSA LENGTH_RSA_4096 ALG_RSA_SHA_RFC2409 - variable data - BEGIN + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 10 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 10 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 10 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 10 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 10 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 01 00 05 10 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 01 00 05 10 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 01 00 05 10 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 01 00 05 10 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 01 00 05 10 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 01 00 05 10 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 01 00 05 10 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA LENGTH_RSA_4096 ALG_RSA_SHA_RFC2409 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_MD5_PKCS1 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 02 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 02 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 02 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 02 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 02 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 02 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 02 00 06 02 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 02 00 06 02 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 02 00 06 02 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 02 00 06 02 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 02 00 06 02 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 02 00 06 02 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_MD5_PKCS1 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_MD5_PKCS1 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 02 e0 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 02 e0 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 02 e0 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 02 e0 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 02 e0 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 02 e0 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 02 00 06 02 e0 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 02 00 06 02 e0 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 02 00 06 02 e0 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 02 00 06 02 e0 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 02 00 06 02 e0 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 02 00 06 02 e0 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_MD5_PKCS1 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_MD5_PKCS1 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 03 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 03 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 03 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 03 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 03 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 03 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 02 00 06 03 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 02 00 06 03 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 02 00 06 03 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 02 00 06 03 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 02 00 06 03 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 02 00 06 03 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_MD5_PKCS1 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_MD5_PKCS1 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 03 80 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 03 80 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 03 80 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 03 80 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 03 80 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 03 80 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 02 00 06 03 80 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 02 00 06 03 80 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 02 00 06 03 80 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 02 00 06 03 80 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 02 00 06 03 80 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 02 00 06 03 80 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_MD5_PKCS1 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_MD5_PKCS1 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 04 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 04 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 04 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 04 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 04 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 04 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 02 00 06 04 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 02 00 06 04 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 02 00 06 04 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 02 00 06 04 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 02 00 06 04 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 02 00 06 04 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_MD5_PKCS1 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_MD5_PKCS1 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 05 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 05 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 05 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 05 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 05 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 05 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 02 00 06 05 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 02 00 06 05 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 02 00 06 05 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 02 00 06 05 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 02 00 06 05 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 02 00 06 05 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_MD5_PKCS1 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_MD5_PKCS1 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 06 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 06 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 06 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 06 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 06 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 06 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 02 00 06 06 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 02 00 06 06 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 02 00 06 06 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 02 00 06 06 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 02 00 06 06 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 02 00 06 06 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_MD5_PKCS1 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_MD5_PKCS1 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 07 c0 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 07 c0 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 07 c0 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 07 c0 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 07 c0 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 07 c0 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 02 00 06 07 c0 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 02 00 06 07 c0 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 02 00 06 07 c0 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 02 00 06 07 c0 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 02 00 06 07 c0 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 02 00 06 07 c0 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_MD5_PKCS1 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_MD5_PKCS1 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 08 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 08 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 08 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 08 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 08 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 08 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 02 00 06 08 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 02 00 06 08 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 02 00 06 08 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 02 00 06 08 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 02 00 06 08 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 02 00 06 08 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_MD5_PKCS1 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_MD5_PKCS1 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 0c 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 0c 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 0c 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 0c 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 0c 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 0c 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 02 00 06 0c 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 02 00 06 0c 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 02 00 06 0c 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 02 00 06 0c 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 02 00 06 0c 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 02 00 06 0c 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_MD5_PKCS1 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_MD5_PKCS1 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 10 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 10 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 10 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 10 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 10 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_MD5_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0b 00 02 00 06 10 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 02 00 06 10 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 02 00 06 10 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 02 00 06 10 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 02 00 06 10 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 02 00 06 10 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_MD5_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0b 00 02 00 06 10 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_MD5_PKCS1 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_MD5_PKCS1_PSS - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 02 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 02 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 02 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 02 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 02 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 02 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 02 00 06 02 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 02 00 06 02 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 02 00 06 02 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 02 00 06 02 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 02 00 06 02 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 02 00 06 02 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_MD5_PKCS1_PSS - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_MD5_PKCS1_PSS - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 02 e0 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 02 e0 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 02 e0 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 02 e0 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 02 e0 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 02 e0 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 02 00 06 02 e0 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 02 00 06 02 e0 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 02 00 06 02 e0 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 02 00 06 02 e0 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 02 00 06 02 e0 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 02 00 06 02 e0 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_MD5_PKCS1_PSS - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_MD5_PKCS1_PSS - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 03 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 03 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 03 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 03 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 03 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 03 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 02 00 06 03 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 02 00 06 03 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 02 00 06 03 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 02 00 06 03 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 02 00 06 03 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 02 00 06 03 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_MD5_PKCS1_PSS - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_MD5_PKCS1_PSS - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 03 80 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 03 80 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 03 80 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 03 80 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 03 80 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 03 80 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 02 00 06 03 80 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 02 00 06 03 80 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 02 00 06 03 80 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 02 00 06 03 80 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 02 00 06 03 80 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 02 00 06 03 80 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_MD5_PKCS1_PSS - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_MD5_PKCS1_PSS - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 04 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 04 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 04 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 04 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 04 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 04 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 02 00 06 04 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 02 00 06 04 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 02 00 06 04 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 02 00 06 04 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 02 00 06 04 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 02 00 06 04 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_MD5_PKCS1_PSS - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_MD5_PKCS1_PSS - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 05 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 05 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 05 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 05 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 05 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 05 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 02 00 06 05 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 02 00 06 05 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 02 00 06 05 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 02 00 06 05 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 02 00 06 05 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 02 00 06 05 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_MD5_PKCS1_PSS - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_MD5_PKCS1_PSS - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 06 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 06 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 06 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 06 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 06 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 06 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 02 00 06 06 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 02 00 06 06 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 02 00 06 06 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 02 00 06 06 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 02 00 06 06 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 02 00 06 06 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_MD5_PKCS1_PSS - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_MD5_PKCS1_PSS - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 07 c0 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 07 c0 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 07 c0 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 07 c0 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 07 c0 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 07 c0 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 02 00 06 07 c0 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 02 00 06 07 c0 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 02 00 06 07 c0 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 02 00 06 07 c0 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 02 00 06 07 c0 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 02 00 06 07 c0 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_MD5_PKCS1_PSS - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_MD5_PKCS1_PSS - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 08 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 08 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 08 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 08 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 08 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 08 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 02 00 06 08 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 02 00 06 08 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 02 00 06 08 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 02 00 06 08 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 02 00 06 08 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 02 00 06 08 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_MD5_PKCS1_PSS - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_MD5_PKCS1_PSS - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 0c 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 0c 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 0c 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 0c 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 0c 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 0c 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 02 00 06 0c 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 02 00 06 0c 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 02 00 06 0c 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 02 00 06 0c 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 02 00 06 0c 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 02 00 06 0c 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_MD5_PKCS1_PSS - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_MD5_PKCS1_PSS - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 10 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 10 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 10 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 10 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 10 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_MD5_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 16 00 02 00 06 10 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 02 00 06 10 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 02 00 06 10 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 02 00 06 10 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 02 00 06 10 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 02 00 06 10 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_MD5_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 16 00 02 00 06 10 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_MD5_PKCS1_PSS - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_MD5_RFC2409 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 02 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 02 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 02 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 02 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 02 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 02 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 02 00 06 02 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 02 00 06 02 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 02 00 06 02 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 02 00 06 02 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 02 00 06 02 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 02 00 06 02 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_MD5_RFC2409 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_MD5_RFC2409 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 02 e0 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 02 e0 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 02 e0 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 02 e0 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 02 e0 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 02 e0 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 02 00 06 02 e0 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 02 00 06 02 e0 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 02 00 06 02 e0 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 02 00 06 02 e0 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 02 00 06 02 e0 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 02 00 06 02 e0 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_MD5_RFC2409 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_MD5_RFC2409 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 03 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 03 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 03 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 03 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 03 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 03 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 02 00 06 03 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 02 00 06 03 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 02 00 06 03 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 02 00 06 03 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 02 00 06 03 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 02 00 06 03 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_MD5_RFC2409 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_MD5_RFC2409 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 03 80 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 03 80 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 03 80 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 03 80 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 03 80 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 03 80 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 02 00 06 03 80 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 02 00 06 03 80 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 02 00 06 03 80 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 02 00 06 03 80 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 02 00 06 03 80 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 02 00 06 03 80 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_MD5_RFC2409 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_MD5_RFC2409 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 04 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 04 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 04 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 04 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 04 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 04 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 02 00 06 04 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 02 00 06 04 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 02 00 06 04 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 02 00 06 04 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 02 00 06 04 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 02 00 06 04 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_MD5_RFC2409 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_MD5_RFC2409 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 05 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 05 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 05 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 05 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 05 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 05 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 02 00 06 05 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 02 00 06 05 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 02 00 06 05 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 02 00 06 05 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 02 00 06 05 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 02 00 06 05 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_MD5_RFC2409 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_MD5_RFC2409 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 06 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 06 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 06 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 06 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 06 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 06 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 02 00 06 06 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 02 00 06 06 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 02 00 06 06 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 02 00 06 06 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 02 00 06 06 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 02 00 06 06 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_MD5_RFC2409 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_MD5_RFC2409 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 07 c0 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 07 c0 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 07 c0 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 07 c0 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 07 c0 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 07 c0 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 02 00 06 07 c0 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 02 00 06 07 c0 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 02 00 06 07 c0 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 02 00 06 07 c0 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 02 00 06 07 c0 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 02 00 06 07 c0 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_MD5_RFC2409 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_MD5_RFC2409 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 08 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 08 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 08 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 08 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 08 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 08 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 02 00 06 08 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 02 00 06 08 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 02 00 06 08 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 02 00 06 08 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 02 00 06 08 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 02 00 06 08 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_MD5_RFC2409 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_MD5_RFC2409 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 0c 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 0c 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 0c 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 0c 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 0c 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 0c 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 02 00 06 0c 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 02 00 06 0c 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 02 00 06 0c 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 02 00 06 0c 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 02 00 06 0c 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 02 00 06 0c 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_MD5_RFC2409 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_MD5_RFC2409 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 10 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 10 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 10 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 10 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 10 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_MD5_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 10 00 02 00 06 10 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 02 00 06 10 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 02 00 06 10 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 02 00 06 10 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 02 00 06 10 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 02 00 06 10 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_MD5_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 10 00 02 00 06 10 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_MD5_RFC2409 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_RIPEMD160_ISO9796 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 02 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 02 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 02 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 02 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 02 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 02 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 02 00 06 02 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 02 00 06 02 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 02 00 06 02 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 02 00 06 02 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 02 00 06 02 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 02 00 06 02 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_RIPEMD160_ISO9796 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_RIPEMD160_ISO9796 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 02 e0 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 02 e0 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 02 e0 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 02 e0 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 02 e0 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 02 e0 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 02 00 06 02 e0 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 02 00 06 02 e0 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 02 00 06 02 e0 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 02 00 06 02 e0 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 02 00 06 02 e0 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 02 00 06 02 e0 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_RIPEMD160_ISO9796 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_RIPEMD160_ISO9796 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 03 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 03 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 03 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 03 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 03 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 03 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 02 00 06 03 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 02 00 06 03 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 02 00 06 03 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 02 00 06 03 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 02 00 06 03 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 02 00 06 03 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_RIPEMD160_ISO9796 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_RIPEMD160_ISO9796 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 03 80 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 03 80 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 03 80 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 03 80 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 03 80 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 03 80 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 02 00 06 03 80 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 02 00 06 03 80 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 02 00 06 03 80 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 02 00 06 03 80 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 02 00 06 03 80 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 02 00 06 03 80 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_RIPEMD160_ISO9796 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_RIPEMD160_ISO9796 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 04 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 04 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 04 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 04 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 04 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 04 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 02 00 06 04 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 02 00 06 04 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 02 00 06 04 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 02 00 06 04 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 02 00 06 04 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 02 00 06 04 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_RIPEMD160_ISO9796 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_RIPEMD160_ISO9796 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 05 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 05 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 05 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 05 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 05 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 05 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 02 00 06 05 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 02 00 06 05 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 02 00 06 05 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 02 00 06 05 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 02 00 06 05 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 02 00 06 05 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_RIPEMD160_ISO9796 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_RIPEMD160_ISO9796 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 06 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 06 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 06 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 06 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 06 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 06 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 02 00 06 06 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 02 00 06 06 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 02 00 06 06 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 02 00 06 06 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 02 00 06 06 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 02 00 06 06 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_RIPEMD160_ISO9796 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_RIPEMD160_ISO9796 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 07 c0 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 07 c0 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 07 c0 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 07 c0 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 07 c0 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 07 c0 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 02 00 06 07 c0 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 02 00 06 07 c0 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 02 00 06 07 c0 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 02 00 06 07 c0 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 02 00 06 07 c0 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 02 00 06 07 c0 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_RIPEMD160_ISO9796 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_RIPEMD160_ISO9796 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 08 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 08 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 08 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 08 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 08 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 08 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 02 00 06 08 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 02 00 06 08 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 02 00 06 08 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 02 00 06 08 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 02 00 06 08 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 02 00 06 08 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_RIPEMD160_ISO9796 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_RIPEMD160_ISO9796 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 0c 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 0c 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 0c 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 0c 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 0c 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 0c 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 02 00 06 0c 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 02 00 06 0c 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 02 00 06 0c 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 02 00 06 0c 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 02 00 06 0c 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 02 00 06 0c 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_RIPEMD160_ISO9796 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_RIPEMD160_ISO9796 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 10 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 10 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 10 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 10 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 10 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_RIPEMD160_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0c 00 02 00 06 10 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 02 00 06 10 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 02 00 06 10 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 02 00 06 10 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 02 00 06 10 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 02 00 06 10 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_RIPEMD160_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0c 00 02 00 06 10 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_RIPEMD160_ISO9796 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_RIPEMD160_PKCS1 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 02 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 02 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 02 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 02 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 02 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 02 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 02 00 06 02 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 02 00 06 02 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 02 00 06 02 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 02 00 06 02 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 02 00 06 02 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 02 00 06 02 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_RIPEMD160_PKCS1 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_RIPEMD160_PKCS1 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 02 e0 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 02 e0 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 02 e0 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 02 e0 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 02 e0 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 02 e0 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 02 00 06 02 e0 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 02 00 06 02 e0 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 02 00 06 02 e0 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 02 00 06 02 e0 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 02 00 06 02 e0 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 02 00 06 02 e0 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_RIPEMD160_PKCS1 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_RIPEMD160_PKCS1 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 03 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 03 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 03 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 03 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 03 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 03 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 02 00 06 03 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 02 00 06 03 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 02 00 06 03 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 02 00 06 03 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 02 00 06 03 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 02 00 06 03 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_RIPEMD160_PKCS1 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_RIPEMD160_PKCS1 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 03 80 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 03 80 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 03 80 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 03 80 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 03 80 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 03 80 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 02 00 06 03 80 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 02 00 06 03 80 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 02 00 06 03 80 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 02 00 06 03 80 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 02 00 06 03 80 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 02 00 06 03 80 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_RIPEMD160_PKCS1 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_RIPEMD160_PKCS1 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 04 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 04 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 04 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 04 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 04 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 04 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 02 00 06 04 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 02 00 06 04 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 02 00 06 04 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 02 00 06 04 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 02 00 06 04 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 02 00 06 04 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_RIPEMD160_PKCS1 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_RIPEMD160_PKCS1 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 05 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 05 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 05 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 05 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 05 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 05 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 02 00 06 05 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 02 00 06 05 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 02 00 06 05 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 02 00 06 05 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 02 00 06 05 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 02 00 06 05 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_RIPEMD160_PKCS1 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_RIPEMD160_PKCS1 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 06 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 06 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 06 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 06 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 06 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 06 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 02 00 06 06 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 02 00 06 06 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 02 00 06 06 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 02 00 06 06 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 02 00 06 06 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 02 00 06 06 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_RIPEMD160_PKCS1 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_RIPEMD160_PKCS1 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 07 c0 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 07 c0 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 07 c0 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 07 c0 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 07 c0 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 07 c0 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 02 00 06 07 c0 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 02 00 06 07 c0 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 02 00 06 07 c0 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 02 00 06 07 c0 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 02 00 06 07 c0 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 02 00 06 07 c0 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_RIPEMD160_PKCS1 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_RIPEMD160_PKCS1 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 08 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 08 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 08 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 08 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 08 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 08 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 02 00 06 08 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 02 00 06 08 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 02 00 06 08 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 02 00 06 08 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 02 00 06 08 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 02 00 06 08 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_RIPEMD160_PKCS1 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_RIPEMD160_PKCS1 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 0c 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 0c 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 0c 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 0c 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 0c 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 0c 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 02 00 06 0c 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 02 00 06 0c 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 02 00 06 0c 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 02 00 06 0c 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 02 00 06 0c 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 02 00 06 0c 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_RIPEMD160_PKCS1 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_RIPEMD160_PKCS1 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 10 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 10 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 10 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 10 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 10 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_RIPEMD160_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0d 00 02 00 06 10 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 02 00 06 10 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 02 00 06 10 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 02 00 06 10 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 02 00 06 10 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 02 00 06 10 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_RIPEMD160_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0d 00 02 00 06 10 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_RIPEMD160_PKCS1 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_RIPEMD160_PKCS1_PSS - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 02 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 02 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 02 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 02 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 02 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 02 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 02 00 06 02 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 02 00 06 02 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 02 00 06 02 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 02 00 06 02 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 02 00 06 02 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 02 00 06 02 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_RIPEMD160_PKCS1_PSS - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_RIPEMD160_PKCS1_PSS - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 02 e0 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 02 e0 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 02 e0 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 02 e0 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 02 e0 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 02 e0 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 02 00 06 02 e0 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 02 00 06 02 e0 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 02 00 06 02 e0 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 02 00 06 02 e0 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 02 00 06 02 e0 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 02 00 06 02 e0 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_RIPEMD160_PKCS1_PSS - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_RIPEMD160_PKCS1_PSS - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 03 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 03 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 03 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 03 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 03 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 03 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 02 00 06 03 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 02 00 06 03 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 02 00 06 03 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 02 00 06 03 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 02 00 06 03 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 02 00 06 03 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_RIPEMD160_PKCS1_PSS - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_RIPEMD160_PKCS1_PSS - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 03 80 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 03 80 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 03 80 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 03 80 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 03 80 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 03 80 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 02 00 06 03 80 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 02 00 06 03 80 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 02 00 06 03 80 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 02 00 06 03 80 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 02 00 06 03 80 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 02 00 06 03 80 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_RIPEMD160_PKCS1_PSS - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_RIPEMD160_PKCS1_PSS - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 04 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 04 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 04 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 04 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 04 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 04 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 02 00 06 04 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 02 00 06 04 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 02 00 06 04 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 02 00 06 04 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 02 00 06 04 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 02 00 06 04 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_RIPEMD160_PKCS1_PSS - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_RIPEMD160_PKCS1_PSS - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 05 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 05 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 05 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 05 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 05 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 05 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 02 00 06 05 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 02 00 06 05 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 02 00 06 05 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 02 00 06 05 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 02 00 06 05 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 02 00 06 05 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_RIPEMD160_PKCS1_PSS - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_RIPEMD160_PKCS1_PSS - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 06 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 06 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 06 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 06 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 06 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 06 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 02 00 06 06 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 02 00 06 06 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 02 00 06 06 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 02 00 06 06 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 02 00 06 06 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 02 00 06 06 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_RIPEMD160_PKCS1_PSS - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_RIPEMD160_PKCS1_PSS - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 07 c0 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 07 c0 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 07 c0 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 07 c0 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 07 c0 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 07 c0 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 02 00 06 07 c0 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 02 00 06 07 c0 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 02 00 06 07 c0 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 02 00 06 07 c0 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 02 00 06 07 c0 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 02 00 06 07 c0 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_RIPEMD160_PKCS1_PSS - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_RIPEMD160_PKCS1_PSS - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 08 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 08 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 08 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 08 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 08 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 08 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 02 00 06 08 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 02 00 06 08 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 02 00 06 08 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 02 00 06 08 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 02 00 06 08 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 02 00 06 08 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_RIPEMD160_PKCS1_PSS - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_RIPEMD160_PKCS1_PSS - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 0c 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 0c 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 0c 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 0c 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 0c 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 0c 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 02 00 06 0c 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 02 00 06 0c 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 02 00 06 0c 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 02 00 06 0c 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 02 00 06 0c 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 02 00 06 0c 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_RIPEMD160_PKCS1_PSS - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_RIPEMD160_PKCS1_PSS - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 10 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 10 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 10 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 10 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 10 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 17 00 02 00 06 10 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 02 00 06 10 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 02 00 06 10 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 02 00 06 10 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 02 00 06 10 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 02 00 06 10 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_RIPEMD160_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 17 00 02 00 06 10 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_RIPEMD160_PKCS1_PSS - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_SHA_ISO9796 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 02 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;193.00;142.00;141.00;142.00;143.00; +baseline stats (ms):;avg:;152.20;min:;141.00;max:;193.00;;;CHECK +operation raw measurements (ms):;214.80;217.80;214.80;217.80;216.80; +operation stats (ms/op):;avg op:;43.28;min op:;42.96;max op:;43.56; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 02 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;193.00;141.00;142.00;141.00;142.00; +baseline stats (ms):;avg:;151.80;min:;141.00;max:;193.00;;;CHECK +operation raw measurements (ms):;218.20;216.20;216.20;214.20;214.20; +operation stats (ms/op):;avg op:;43.16;min op:;42.84;max op:;43.64; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 02 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;194.00;144.00;143.00;143.00;143.00; +baseline stats (ms):;avg:;153.40;min:;143.00;max:;194.00;;;CHECK +operation raw measurements (ms):;220.60;221.60;222.60;218.60;217.60; +operation stats (ms/op):;avg op:;44.04;min op:;43.52;max op:;44.52; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 02 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;194.00;143.00;145.00;144.00;141.00; +baseline stats (ms):;avg:;153.40;min:;141.00;max:;194.00;;;CHECK +operation raw measurements (ms):;227.60;228.60;229.60;228.60;228.60; +operation stats (ms/op):;avg op:;45.72;min op:;45.52;max op:;45.92; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 02 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;196.00;147.00;146.00;145.00;146.00; +baseline stats (ms):;avg:;156.00;min:;145.00;max:;196.00;;;CHECK +operation raw measurements (ms):;243.00;238.00;242.00;240.00;241.00; +operation stats (ms/op):;avg op:;48.16;min op:;47.60;max op:;48.60; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 02 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;203.00;149.00;147.00;148.00;153.00; +baseline stats (ms):;avg:;160.00;min:;147.00;max:;203.00;;;CHECK +operation raw measurements (ms):;268.00;265.00;265.00;264.00;265.00; +operation stats (ms/op):;avg op:;53.08;min op:;52.80;max op:;53.60; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 02 00 06 02 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 02 00 06 02 00 00 0a 00 20 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 02 00 06 02 00 00 0a 00 40 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 02 00 06 02 00 00 0a 00 80 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 02 00 06 02 00 00 0a 01 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 02 00 06 02 00 00 0a 02 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_SHA_ISO9796 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_SHA_ISO9796 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 02 e0 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;225.00;165.00;164.00;165.00;164.00; +baseline stats (ms):;avg:;176.60;min:;164.00;max:;225.00;;;CHECK +operation raw measurements (ms):;328.40;327.40;327.40;330.40;331.40; +operation stats (ms/op):;avg op:;65.80;min op:;65.48;max op:;66.28; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 02 e0 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;224.00;177.00;165.00;164.00;164.00; +baseline stats (ms):;avg:;178.80;min:;164.00;max:;224.00;;;CHECK +operation raw measurements (ms):;325.20;330.20;327.20;324.20;325.20; +operation stats (ms/op):;avg op:;65.28;min op:;64.84;max op:;66.04; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 02 e0 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;225.00;167.00;419.00;166.00;167.00; +baseline stats (ms):;avg:;228.80;min:;166.00;max:;419.00;;;CHECK +operation raw measurements (ms):;283.20;286.20;282.20;284.20;282.20; +operation stats (ms/op):;avg op:;56.72;min op:;56.44;max op:;57.24; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 02 e0 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;226.00;177.00;166.00;175.00;165.00; +baseline stats (ms):;avg:;181.80;min:;165.00;max:;226.00;;;CHECK +operation raw measurements (ms):;336.20;334.20;335.20;338.20;338.20; +operation stats (ms/op):;avg op:;67.28;min op:;66.84;max op:;67.64; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 02 e0 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;227.00;170.00;408.00;169.00;170.00; +baseline stats (ms):;avg:;228.80;min:;169.00;max:;408.00;;;CHECK +operation raw measurements (ms):;308.20;308.20;304.20;302.20;302.20; +operation stats (ms/op):;avg op:;61.00;min op:;60.44;max op:;61.64; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 02 e0 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;233.00;182.00;173.00;175.00;174.00; +baseline stats (ms):;avg:;187.40;min:;173.00;max:;233.00;;;CHECK +operation raw measurements (ms):;374.60;375.60;373.60;373.60;374.60; +operation stats (ms/op):;avg op:;74.88;min op:;74.72;max op:;75.12; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 02 00 06 02 e0 00 0a 00 10 ff ff ff ff 00 05 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 02 00 06 02 e0 00 0a 00 20 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 02 00 06 02 e0 00 0a 00 40 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 02 00 06 02 e0 00 0a 00 80 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 02 00 06 02 e0 00 0a 01 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 02 00 06 02 e0 00 0a 02 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_SHA_ISO9796 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_SHA_ISO9796 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 03 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;226.00;167.00;166.00;165.00;165.00; +baseline stats (ms):;avg:;177.80;min:;165.00;max:;226.00;;;CHECK +operation raw measurements (ms):;332.20;329.20;331.20;333.20;333.20; +operation stats (ms/op):;avg op:;66.36;min op:;65.84;max op:;66.64; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 03 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;226.00;179.00;165.00;164.00;163.00; +baseline stats (ms):;avg:;179.40;min:;163.00;max:;226.00;;;CHECK +operation raw measurements (ms):;329.60;330.60;328.60;328.60;333.60; +operation stats (ms/op):;avg op:;66.04;min op:;65.72;max op:;66.72; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 03 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;226.00;167.00;427.00;167.00;163.00; +baseline stats (ms):;avg:;230.00;min:;163.00;max:;427.00;;;CHECK +operation raw measurements (ms):;286.00;287.00;288.00;286.00;290.00; +operation stats (ms/op):;avg op:;57.48;min op:;57.20;max op:;58.00; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 03 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;223.00;176.00;169.00;196.00;166.00; +baseline stats (ms):;avg:;186.00;min:;166.00;max:;223.00;;;CHECK +operation raw measurements (ms):;338.00;337.00;337.00;340.00;338.00; +operation stats (ms/op):;avg op:;67.60;min op:;67.40;max op:;68.00; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 03 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;230.00;169.00;418.00;172.00;169.00; +baseline stats (ms):;avg:;231.60;min:;169.00;max:;418.00;;;CHECK +operation raw measurements (ms):;306.40;309.40;309.40;308.40;307.40; +operation stats (ms/op):;avg op:;61.64;min op:;61.28;max op:;61.88; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 03 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;234.00;175.00;175.00;174.00;175.00; +baseline stats (ms):;avg:;186.60;min:;174.00;max:;234.00;;;CHECK +operation raw measurements (ms):;381.40;378.40;382.40;382.40;380.40; +operation stats (ms/op):;avg op:;76.20;min op:;75.68;max op:;76.48; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 02 00 06 03 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 02 00 06 03 00 00 0a 00 20 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 02 00 06 03 00 00 0a 00 40 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 02 00 06 03 00 00 0a 00 80 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 02 00 06 03 00 00 0a 01 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 02 00 06 03 00 00 0a 02 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_SHA_ISO9796 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_SHA_ISO9796 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 03 80 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;246.00;183.00;182.00;180.00;182.00; +baseline stats (ms):;avg:;194.60;min:;180.00;max:;246.00;;;CHECK +operation raw measurements (ms):;419.40;416.40;415.40;415.40;416.40; +operation stats (ms/op):;avg op:;83.32;min op:;83.08;max op:;83.88; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 03 80 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;246.00;179.00;181.00;181.00;180.00; +baseline stats (ms):;avg:;193.40;min:;179.00;max:;246.00;;;CHECK +operation raw measurements (ms):;419.60;420.60;419.60;415.60;419.60; +operation stats (ms/op):;avg op:;83.80;min op:;83.12;max op:;84.12; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 03 80 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;246.00;185.00;393.00;183.00;182.00; +baseline stats (ms):;avg:;237.80;min:;182.00;max:;393.00;;;CHECK +operation raw measurements (ms):;384.20;380.20;378.20;382.20;379.20; +operation stats (ms/op):;avg op:;76.16;min op:;75.64;max op:;76.84; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 03 80 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;247.00;196.00;185.00;186.00;182.00; +baseline stats (ms):;avg:;199.20;min:;182.00;max:;247.00;;;CHECK +operation raw measurements (ms):;428.80;423.80;423.80;427.80;424.80; +operation stats (ms/op):;avg op:;85.16;min op:;84.76;max op:;85.76; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 03 80 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;251.00;186.00;381.00;187.00;186.00; +baseline stats (ms):;avg:;238.20;min:;186.00;max:;381.00;;;CHECK +operation raw measurements (ms):;402.80;404.80;404.80;407.80;402.80; +operation stats (ms/op):;avg op:;80.92;min op:;80.56;max op:;81.56; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 03 80 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;256.00;203.00;192.00;192.00;192.00; +baseline stats (ms):;avg:;207.00;min:;192.00;max:;256.00;;;CHECK +operation raw measurements (ms):;462.00;466.00;467.00;464.00;466.00; +operation stats (ms/op):;avg op:;93.00;min op:;92.40;max op:;93.40; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 02 00 06 03 80 00 0a 00 10 ff ff ff ff 00 05 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 02 00 06 03 80 00 0a 00 20 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 02 00 06 03 80 00 0a 00 40 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 02 00 06 03 80 00 0a 00 80 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 02 00 06 03 80 00 0a 01 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 02 00 06 03 80 00 0a 02 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_SHA_ISO9796 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_SHA_ISO9796 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 04 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;274.00;203.00;202.00;201.00;199.00; +baseline stats (ms):;avg:;215.80;min:;199.00;max:;274.00;;;CHECK +operation raw measurements (ms):;517.20;519.20;510.20;518.20;516.20; +operation stats (ms/op):;avg op:;103.24;min op:;102.04;max op:;103.84; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 04 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;274.00;212.00;205.00;204.00;205.00; +baseline stats (ms):;avg:;220.00;min:;204.00;max:;274.00;;;CHECK +operation raw measurements (ms):;514.00;515.00;512.00;511.00;513.00; +operation stats (ms/op):;avg op:;102.60;min op:;102.20;max op:;103.00; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 04 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;276.00;205.00;326.00;201.00;204.00; +baseline stats (ms):;avg:;242.40;min:;201.00;max:;326.00;;;CHECK +operation raw measurements (ms):;501.60;497.60;496.60;496.60;495.60; +operation stats (ms/op):;avg op:;99.52;min op:;99.12;max op:;100.32; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 04 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;276.00;214.00;205.00;204.00;205.00; +baseline stats (ms):;avg:;220.80;min:;204.00;max:;276.00;;;CHECK +operation raw measurements (ms):;529.20;528.20;531.20;533.20;524.20; +operation stats (ms/op):;avg op:;105.84;min op:;104.84;max op:;106.64; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 04 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;278.00;207.00;314.00;208.00;206.00; +baseline stats (ms):;avg:;242.60;min:;206.00;max:;314.00;;;CHECK +operation raw measurements (ms):;522.40;514.40;520.40;520.40;517.40; +operation stats (ms/op):;avg op:;103.80;min op:;102.88;max op:;104.48; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 04 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;285.00;222.00;213.00;212.00;212.00; +baseline stats (ms):;avg:;228.80;min:;212.00;max:;285.00;;;CHECK +operation raw measurements (ms):;565.20;565.20;562.20;559.20;565.20; +operation stats (ms/op):;avg op:;112.68;min op:;111.84;max op:;113.04; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 02 00 06 04 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 02 00 06 04 00 00 0a 00 20 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 02 00 06 04 00 00 0a 00 40 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 02 00 06 04 00 00 0a 00 80 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 02 00 06 04 00 00 0a 01 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 02 00 06 04 00 00 0a 02 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_SHA_ISO9796 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_SHA_ISO9796 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 05 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;335.00;252.00;253.00;249.00;263.00; +baseline stats (ms):;avg:;270.40;min:;249.00;max:;335.00;;;CHECK +operation raw measurements (ms):;763.60;760.60;756.60;763.60;753.60; +operation stats (ms/op):;avg op:;151.92;min op:;150.72;max op:;152.72; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 05 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;333.00;505.00;248.00;250.00;248.00; +baseline stats (ms):;avg:;316.80;min:;248.00;max:;505.00;;;CHECK +operation raw measurements (ms):;708.20;724.20;723.20;715.20;713.20; +operation stats (ms/op):;avg op:;143.36;min op:;141.64;max op:;144.84; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 05 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;338.00;254.00;255.00;252.00;253.00; +baseline stats (ms):;avg:;270.40;min:;252.00;max:;338.00;;;CHECK +operation raw measurements (ms):;768.60;767.60;770.60;770.60;765.60; +operation stats (ms/op):;avg op:;153.72;min op:;153.12;max op:;154.12; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 05 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;338.00;513.00;253.00;254.00;250.00; +baseline stats (ms):;avg:;321.60;min:;250.00;max:;513.00;;;CHECK +operation raw measurements (ms):;724.40;723.40;724.40;725.40;727.40; +operation stats (ms/op):;avg op:;145.00;min op:;144.68;max op:;145.48; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 05 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;341.00;255.00;259.00;258.00;254.00; +baseline stats (ms):;avg:;273.40;min:;254.00;max:;341.00;;;CHECK +operation raw measurements (ms):;783.60;790.60;779.60;790.60;786.60; +operation stats (ms/op):;avg op:;157.24;min op:;155.92;max op:;158.12; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 05 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;346.00;494.00;264.00;263.00;261.00; +baseline stats (ms):;avg:;325.60;min:;261.00;max:;494.00;;;CHECK +operation raw measurements (ms):;766.40;771.40;769.40;767.40;764.40; +operation stats (ms/op):;avg op:;153.56;min op:;152.88;max op:;154.28; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 02 00 06 05 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 02 00 06 05 00 00 0a 00 20 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 02 00 06 05 00 00 0a 00 40 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 02 00 06 05 00 00 0a 00 80 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 02 00 06 05 00 00 0a 01 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 02 00 06 05 00 00 0a 02 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_SHA_ISO9796 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_SHA_ISO9796 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 06 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;416.00;319.00;318.00;319.00;322.00; +baseline stats (ms):;avg:;338.80;min:;318.00;max:;416.00;;;CHECK +operation raw measurements (ms):;1093.20;1098.20;1091.20;1101.20;1089.20; +operation stats (ms/op):;avg op:;218.92;min op:;217.84;max op:;220.24; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 06 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;418.00;319.00;319.00;318.00;316.00; +baseline stats (ms):;avg:;338.00;min:;316.00;max:;418.00;;;CHECK +operation raw measurements (ms):;1092.00;1098.00;1091.00;1099.00;1091.00; +operation stats (ms/op):;avg op:;218.84;min op:;218.20;max op:;219.80; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 06 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;418.00;314.00;320.00;319.00;319.00; +baseline stats (ms):;avg:;338.00;min:;314.00;max:;418.00;;;CHECK +operation raw measurements (ms):;1104.00;1097.00;1096.00;1100.00;1105.00; +operation stats (ms/op):;avg op:;220.08;min op:;219.20;max op:;221.00; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 06 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;422.00;364.00;320.00;321.00;320.00; +baseline stats (ms):;avg:;349.40;min:;320.00;max:;422.00;;;CHECK +operation raw measurements (ms):;1094.60;1091.60;1095.60;1092.60;1092.60; +operation stats (ms/op):;avg op:;218.68;min op:;218.32;max op:;219.12; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 06 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;422.00;324.00;324.00;325.00;326.00; +baseline stats (ms):;avg:;344.20;min:;324.00;max:;422.00;;;CHECK +operation raw measurements (ms):;1116.80;1118.80;1119.80;1120.80;1117.80; +operation stats (ms/op):;avg op:;223.76;min op:;223.36;max op:;224.16; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 06 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;425.00;375.00;328.00;323.00;329.00; +baseline stats (ms):;avg:;356.00;min:;323.00;max:;425.00;;;CHECK +operation raw measurements (ms):;1140.00;1136.00;1136.00;1140.00;1133.00; +operation stats (ms/op):;avg op:;227.40;min op:;226.60;max op:;228.00; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 02 00 06 06 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 02 00 06 06 00 00 0a 00 20 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 02 00 06 06 00 00 0a 00 40 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 02 00 06 06 00 00 0a 00 80 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 02 00 06 06 00 00 0a 01 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 02 00 06 06 00 00 0a 02 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_SHA_ISO9796 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_SHA_ISO9796 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 07 c0 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;611.00;493.00;495.00;490.00;489.00; +baseline stats (ms):;avg:;515.60;min:;489.00;max:;611.00;;;CHECK +operation raw measurements (ms):;1956.40;1947.40;1945.40;1963.40;1960.40; +operation stats (ms/op):;avg op:;390.92;min op:;389.08;max op:;392.68; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 07 c0 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;607.00;497.00;491.00;493.00;490.00; +baseline stats (ms):;avg:;515.60;min:;490.00;max:;607.00;;;CHECK +operation raw measurements (ms):;1959.40;1958.40;1959.40;1970.40;1964.40; +operation stats (ms/op):;avg op:;392.48;min op:;391.68;max op:;394.08; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 07 c0 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;614.00;495.00;499.00;490.00;494.00; +baseline stats (ms):;avg:;518.40;min:;490.00;max:;614.00;;;CHECK +operation raw measurements (ms):;1959.60;1963.60;1963.60;1963.60;1967.60; +operation stats (ms/op):;avg op:;392.72;min op:;391.92;max op:;393.52; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 07 c0 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;617.00;492.00;497.00;499.00;493.00; +baseline stats (ms):;avg:;519.60;min:;492.00;max:;617.00;;;CHECK +operation raw measurements (ms):;1960.40;1972.40;1962.40;1958.40;1970.40; +operation stats (ms/op):;avg op:;392.96;min op:;391.68;max op:;394.48; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 07 c0 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;620.00;498.00;502.00;497.00;496.00; +baseline stats (ms):;avg:;522.60;min:;496.00;max:;620.00;;;CHECK +operation raw measurements (ms):;1977.40;1988.40;1984.40;1980.40;1966.40; +operation stats (ms/op):;avg op:;395.88;min op:;393.28;max op:;397.68; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 07 c0 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;624.00;500.00;507.00;502.00;500.00; +baseline stats (ms):;avg:;526.60;min:;500.00;max:;624.00;;;CHECK +operation raw measurements (ms):;2014.40;2010.40;2018.40;2025.40;2006.40; +operation stats (ms/op):;avg op:;403.00;min op:;401.28;max op:;405.08; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 02 00 06 07 c0 00 0a 00 10 ff ff ff ff 00 05 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 02 00 06 07 c0 00 0a 00 20 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 02 00 06 07 c0 00 0a 00 40 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 02 00 06 07 c0 00 0a 00 80 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 02 00 06 07 c0 00 0a 01 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 02 00 06 07 c0 00 0a 02 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_SHA_ISO9796 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_SHA_ISO9796 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 08 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;650.00;532.00;534.00;527.00;535.00; +baseline stats (ms):;avg:;555.60;min:;527.00;max:;650.00;;;CHECK +operation raw measurements (ms):;2158.40;2167.40;2162.40;2152.40;2155.40; +operation stats (ms/op):;avg op:;431.84;min op:;430.48;max op:;433.48; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 08 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;656.00;534.00;534.00;540.00;536.00; +baseline stats (ms):;avg:;560.00;min:;534.00;max:;656.00;;;CHECK +operation raw measurements (ms):;2167.00;2155.00;2156.00;2158.00;2162.00; +operation stats (ms/op):;avg op:;431.92;min op:;431.00;max op:;433.40; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 08 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;661.00;534.00;543.00;533.00;534.00; +baseline stats (ms):;avg:;561.00;min:;533.00;max:;661.00;;;CHECK +operation raw measurements (ms):;2163.00;2161.00;2161.00;2169.00;2173.00; +operation stats (ms/op):;avg op:;433.08;min op:;432.20;max op:;434.60; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 08 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;659.00;533.00;529.00;534.00;531.00; +baseline stats (ms):;avg:;557.20;min:;529.00;max:;659.00;;;CHECK +operation raw measurements (ms):;2162.80;2163.80;2183.80;2176.80;2166.80; +operation stats (ms/op):;avg op:;434.16;min op:;432.56;max op:;436.76; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 08 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;660.00;537.00;536.00;539.00;532.00; +baseline stats (ms):;avg:;560.80;min:;532.00;max:;660.00;;;CHECK +operation raw measurements (ms):;2189.20;2185.20;2188.20;2195.20;2197.20; +operation stats (ms/op):;avg op:;438.20;min op:;437.04;max op:;439.44; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 08 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;664.00;541.00;543.00;543.00;536.00; +baseline stats (ms):;avg:;565.40;min:;536.00;max:;664.00;;;CHECK +operation raw measurements (ms):;2212.60;2217.60;2222.60;2227.60;2222.60; +operation stats (ms/op):;avg op:;444.12;min op:;442.52;max op:;445.52; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 02 00 06 08 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 02 00 06 08 00 00 0a 00 20 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 02 00 06 08 00 00 0a 00 40 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 02 00 06 08 00 00 0a 00 80 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 02 00 06 08 00 00 0a 01 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 02 00 06 08 00 00 0a 02 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_SHA_ISO9796 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_SHA_ISO9796 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 0c 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 0c 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 0c 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 0c 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 0c 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 0c 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 02 00 06 0c 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 02 00 06 0c 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 02 00 06 0c 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 02 00 06 0c 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 02 00 06 0c 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 02 00 06 0c 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_SHA_ISO9796 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_SHA_ISO9796 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 10 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 10 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 10 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 10 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 10 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_SHA_ISO9796 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 09 00 02 00 06 10 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 02 00 06 10 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 02 00 06 10 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 02 00 06 10 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 02 00 06 10 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 02 00 06 10 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_SHA_ISO9796 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 09 00 02 00 06 10 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_SHA_ISO9796 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_SHA_PKCS1 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 02 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;192.00;141.00;142.00;140.00;141.00; +baseline stats (ms):;avg:;151.20;min:;140.00;max:;192.00;;;CHECK +operation raw measurements (ms):;216.80;216.80;213.80;214.80;216.80; +operation stats (ms/op):;avg op:;43.16;min op:;42.76;max op:;43.36; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 02 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;191.00;140.00;144.00;142.00;141.00; +baseline stats (ms):;avg:;151.60;min:;140.00;max:;191.00;;;CHECK +operation raw measurements (ms):;215.40;215.40;215.40;217.40;215.40; +operation stats (ms/op):;avg op:;43.16;min op:;43.08;max op:;43.48; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 02 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;194.00;143.00;143.00;142.00;140.00; +baseline stats (ms):;avg:;152.40;min:;140.00;max:;194.00;;;CHECK +operation raw measurements (ms):;220.60;220.60;218.60;220.60;219.60; +operation stats (ms/op):;avg op:;44.00;min op:;43.72;max op:;44.12; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 02 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;193.00;142.00;144.00;144.00;142.00; +baseline stats (ms):;avg:;153.00;min:;142.00;max:;193.00;;;CHECK +operation raw measurements (ms):;225.00;224.00;223.00;226.00;225.00; +operation stats (ms/op):;avg op:;44.92;min op:;44.60;max op:;45.20; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 02 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;196.00;145.00;146.00;144.00;146.00; +baseline stats (ms):;avg:;155.40;min:;144.00;max:;196.00;;;CHECK +operation raw measurements (ms):;238.60;239.60;237.60;234.60;233.60; +operation stats (ms/op):;avg op:;47.36;min op:;46.72;max op:;47.92; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 02 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;202.00;150.00;151.00;148.00;146.00; +baseline stats (ms):;avg:;159.40;min:;146.00;max:;202.00;;;CHECK +operation raw measurements (ms):;258.60;263.60;262.60;261.60;263.60; +operation stats (ms/op):;avg op:;52.40;min op:;51.72;max op:;52.72; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 02 00 06 02 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 02 00 06 02 00 00 0a 00 20 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 02 00 06 02 00 00 0a 00 40 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 02 00 06 02 00 00 0a 00 80 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 02 00 06 02 00 00 0a 01 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 02 00 06 02 00 00 0a 02 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_SHA_PKCS1 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_SHA_PKCS1 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 02 e0 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;224.00;163.00;161.00;164.00;166.00; +baseline stats (ms):;avg:;175.60;min:;161.00;max:;224.00;;;CHECK +operation raw measurements (ms):;328.40;324.40;328.40;326.40;326.40; +operation stats (ms/op):;avg op:;65.36;min op:;64.88;max op:;65.68; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 02 e0 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;223.00;163.00;163.00;164.00;164.00; +baseline stats (ms):;avg:;175.40;min:;163.00;max:;223.00;;;CHECK +operation raw measurements (ms):;327.60;327.60;326.60;327.60;329.60; +operation stats (ms/op):;avg op:;65.56;min op:;65.32;max op:;65.92; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 02 e0 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;223.00;175.00;162.00;165.00;164.00; +baseline stats (ms):;avg:;177.80;min:;162.00;max:;223.00;;;CHECK +operation raw measurements (ms):;332.20;332.20;333.20;334.20;333.20; +operation stats (ms/op):;avg op:;66.60;min op:;66.44;max op:;66.84; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 02 e0 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;226.00;166.00;472.00;167.00;167.00; +baseline stats (ms):;avg:;239.60;min:;166.00;max:;472.00;;;CHECK +operation raw measurements (ms):;275.40;280.40;276.40;274.40;274.40; +operation stats (ms/op):;avg op:;55.24;min op:;54.88;max op:;56.08; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 02 e0 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;228.00;179.00;168.00;188.00;167.00; +baseline stats (ms):;avg:;186.00;min:;167.00;max:;228.00;;;CHECK +operation raw measurements (ms):;345.00;342.00;342.00;345.00;345.00; +operation stats (ms/op):;avg op:;68.76;min op:;68.40;max op:;69.00; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 02 e0 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;232.00;174.00;406.00;174.00;173.00; +baseline stats (ms):;avg:;231.80;min:;173.00;max:;406.00;;;CHECK +operation raw measurements (ms):;326.20;326.20;325.20;325.20;331.20; +operation stats (ms/op):;avg op:;65.36;min op:;65.04;max op:;66.24; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 02 00 06 02 e0 00 0a 00 10 ff ff ff ff 00 05 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 02 00 06 02 e0 00 0a 00 20 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 02 00 06 02 e0 00 0a 00 40 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 02 00 06 02 e0 00 0a 00 80 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 02 00 06 02 e0 00 0a 01 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 02 00 06 02 e0 00 0a 02 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_SHA_PKCS1 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_SHA_PKCS1 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 03 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;223.00;165.00;165.00;165.00;163.00; +baseline stats (ms):;avg:;176.20;min:;163.00;max:;223.00;;;CHECK +operation raw measurements (ms):;331.80;333.80;334.80;330.80;330.80; +operation stats (ms/op):;avg op:;66.48;min op:;66.16;max op:;66.96; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 03 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;226.00;164.00;433.00;166.00;166.00; +baseline stats (ms):;avg:;231.00;min:;164.00;max:;433.00;;;CHECK +operation raw measurements (ms):;276.00;279.00;277.00;278.00;277.00; +operation stats (ms/op):;avg op:;55.48;min op:;55.20;max op:;55.80; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 03 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;226.00;498.00;166.00;167.00;165.00; +baseline stats (ms):;avg:;244.40;min:;165.00;max:;498.00;;;CHECK +operation raw measurements (ms):;268.60;268.60;270.60;266.60;270.60; +operation stats (ms/op):;avg op:;53.80;min op:;53.32;max op:;54.12; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 03 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;227.00;166.00;417.00;167.00;168.00; +baseline stats (ms):;avg:;229.00;min:;166.00;max:;417.00;;;CHECK +operation raw measurements (ms):;293.00;293.00;295.00;290.00;293.00; +operation stats (ms/op):;avg op:;58.56;min op:;58.00;max op:;59.00; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 03 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;231.00;179.00;170.00;180.00;170.00; +baseline stats (ms):;avg:;186.00;min:;170.00;max:;231.00;;;CHECK +operation raw measurements (ms):;352.00;348.00;352.00;353.00;348.00; +operation stats (ms/op):;avg op:;70.12;min op:;69.60;max op:;70.60; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 03 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;235.00;174.00;175.00;174.00;175.00; +baseline stats (ms):;avg:;186.60;min:;174.00;max:;235.00;;;CHECK +operation raw measurements (ms):;378.40;373.40;379.40;377.40;380.40; +operation stats (ms/op):;avg op:;75.56;min op:;74.68;max op:;76.08; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 02 00 06 03 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 02 00 06 03 00 00 0a 00 20 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 02 00 06 03 00 00 0a 00 40 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 02 00 06 03 00 00 0a 00 80 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 02 00 06 03 00 00 0a 01 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 02 00 06 03 00 00 0a 02 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_SHA_PKCS1 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_SHA_PKCS1 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 03 80 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;246.00;181.00;182.00;181.00;182.00; +baseline stats (ms):;avg:;194.40;min:;181.00;max:;246.00;;;CHECK +operation raw measurements (ms):;415.60;416.60;413.60;413.60;411.60; +operation stats (ms/op):;avg op:;82.84;min op:;82.32;max op:;83.32; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 03 80 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;245.00;182.00;386.00;182.00;180.00; +baseline stats (ms):;avg:;235.00;min:;180.00;max:;386.00;;;CHECK +operation raw measurements (ms):;375.00;374.00;377.00;373.00;376.00; +operation stats (ms/op):;avg op:;75.00;min op:;74.60;max op:;75.40; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 03 80 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;244.00;192.00;181.00;182.00;183.00; +baseline stats (ms):;avg:;196.40;min:;181.00;max:;244.00;;;CHECK +operation raw measurements (ms):;423.60;423.60;419.60;420.60;418.60; +operation stats (ms/op):;avg op:;84.24;min op:;83.72;max op:;84.72; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 03 80 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;248.00;183.00;371.00;185.00;184.00; +baseline stats (ms):;avg:;234.20;min:;183.00;max:;371.00;;;CHECK +operation raw measurements (ms):;387.80;390.80;388.80;392.80;387.80; +operation stats (ms/op):;avg op:;77.92;min op:;77.56;max op:;78.56; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 03 80 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;250.00;197.00;187.00;186.00;183.00; +baseline stats (ms):;avg:;200.60;min:;183.00;max:;250.00;;;CHECK +operation raw measurements (ms):;434.40;434.40;437.40;437.40;437.40; +operation stats (ms/op):;avg op:;87.24;min op:;86.88;max op:;87.48; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 03 80 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;255.00;192.00;360.00;190.00;190.00; +baseline stats (ms):;avg:;237.40;min:;190.00;max:;360.00;;;CHECK +operation raw measurements (ms):;426.60;426.60;427.60;424.60;431.60; +operation stats (ms/op):;avg op:;85.48;min op:;84.92;max op:;86.32; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 02 00 06 03 80 00 0a 00 10 ff ff ff ff 00 05 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 02 00 06 03 80 00 0a 00 20 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 02 00 06 03 80 00 0a 00 40 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 02 00 06 03 80 00 0a 00 80 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 02 00 06 03 80 00 0a 01 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 02 00 06 03 80 00 0a 02 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_SHA_PKCS1 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_SHA_PKCS1 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 04 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;274.00;203.00;203.00;201.00;202.00; +baseline stats (ms):;avg:;216.60;min:;201.00;max:;274.00;;;CHECK +operation raw measurements (ms):;515.40;517.40;514.40;512.40;511.40; +operation stats (ms/op):;avg op:;102.84;min op:;102.28;max op:;103.48; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 04 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;274.00;202.00;324.00;201.00;202.00; +baseline stats (ms):;avg:;240.60;min:;201.00;max:;324.00;;;CHECK +operation raw measurements (ms):;486.40;493.40;485.40;490.40;484.40; +operation stats (ms/op):;avg op:;97.60;min op:;96.88;max op:;98.68; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 04 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;275.00;212.00;203.00;201.00;202.00; +baseline stats (ms):;avg:;218.60;min:;201.00;max:;275.00;;;CHECK +operation raw measurements (ms):;522.40;518.40;520.40;512.40;519.40; +operation stats (ms/op):;avg op:;103.72;min op:;102.48;max op:;104.48; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 04 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;276.00;204.00;323.00;203.00;204.00; +baseline stats (ms):;avg:;242.00;min:;203.00;max:;323.00;;;CHECK +operation raw measurements (ms):;503.00;504.00;505.00;506.00;503.00; +operation stats (ms/op):;avg op:;100.84;min op:;100.60;max op:;101.20; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 04 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;279.00;217.00;207.00;207.00;208.00; +baseline stats (ms):;avg:;223.60;min:;207.00;max:;279.00;;;CHECK +operation raw measurements (ms):;532.40;530.40;534.40;538.40;539.40; +operation stats (ms/op):;avg op:;107.00;min op:;106.08;max op:;107.88; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 04 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;280.00;212.00;304.00;210.00;214.00; +baseline stats (ms):;avg:;244.00;min:;210.00;max:;304.00;;;CHECK +operation raw measurements (ms):;543.00;545.00;543.00;544.00;544.00; +operation stats (ms/op):;avg op:;108.76;min op:;108.60;max op:;109.00; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 02 00 06 04 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 02 00 06 04 00 00 0a 00 20 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 02 00 06 04 00 00 0a 00 40 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 02 00 06 04 00 00 0a 00 80 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 02 00 06 04 00 00 0a 01 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 02 00 06 04 00 00 0a 02 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_SHA_PKCS1 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_SHA_PKCS1 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 05 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;339.00;250.00;249.00;249.00;253.00; +baseline stats (ms):;avg:;268.00;min:;249.00;max:;339.00;;;CHECK +operation raw measurements (ms):;763.00;768.00;767.00;771.00;764.00; +operation stats (ms/op):;avg op:;153.32;min op:;152.60;max op:;154.20; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 05 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;333.00;252.00;250.00;248.00;252.00; +baseline stats (ms):;avg:;267.00;min:;248.00;max:;333.00;;;CHECK +operation raw measurements (ms):;760.00;758.00;765.00;762.00;763.00; +operation stats (ms/op):;avg op:;152.32;min op:;151.60;max op:;153.00; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 05 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;333.00;253.00;256.00;253.00;253.00; +baseline stats (ms):;avg:;269.60;min:;253.00;max:;333.00;;;CHECK +operation raw measurements (ms):;769.40;767.40;774.40;765.40;764.40; +operation stats (ms/op):;avg op:;153.64;min op:;152.88;max op:;154.88; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 05 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;335.00;252.00;251.00;250.00;254.00; +baseline stats (ms):;avg:;268.40;min:;250.00;max:;335.00;;;CHECK +operation raw measurements (ms):;778.60;780.60;774.60;772.60;773.60; +operation stats (ms/op):;avg op:;155.20;min op:;154.52;max op:;156.12; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 05 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;340.00;257.00;269.00;256.00;257.00; +baseline stats (ms):;avg:;275.80;min:;256.00;max:;340.00;;;CHECK +operation raw measurements (ms):;787.20;788.20;789.20;781.20;780.20; +operation stats (ms/op):;avg op:;157.04;min op:;156.04;max op:;157.84; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 05 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;345.00;258.00;258.00;257.00;259.00; +baseline stats (ms):;avg:;275.40;min:;257.00;max:;345.00;;;CHECK +operation raw measurements (ms):;811.60;812.60;807.60;813.60;811.60; +operation stats (ms/op):;avg op:;162.28;min op:;161.52;max op:;162.72; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 02 00 06 05 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 02 00 06 05 00 00 0a 00 20 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 02 00 06 05 00 00 0a 00 40 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 02 00 06 05 00 00 0a 00 80 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 02 00 06 05 00 00 0a 01 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 02 00 06 05 00 00 0a 02 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_SHA_PKCS1 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_SHA_PKCS1 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 06 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;426.00;317.00;317.00;315.00;319.00; +baseline stats (ms):;avg:;338.80;min:;315.00;max:;426.00;;;CHECK +operation raw measurements (ms):;1097.20;1099.20;1095.20;1090.20;1087.20; +operation stats (ms/op):;avg op:;218.76;min op:;217.44;max op:;219.84; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 06 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;419.00;394.00;318.00;320.00;318.00; +baseline stats (ms):;avg:;353.80;min:;318.00;max:;419.00;;;CHECK +operation raw measurements (ms):;1079.20;1084.20;1084.20;1085.20;1084.20; +operation stats (ms/op):;avg op:;216.68;min op:;215.84;max op:;217.04; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 06 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;422.00;320.00;320.00;317.00;319.00; +baseline stats (ms):;avg:;339.60;min:;317.00;max:;422.00;;;CHECK +operation raw measurements (ms):;1102.40;1101.40;1101.40;1106.40;1102.40; +operation stats (ms/op):;avg op:;220.56;min op:;220.28;max op:;221.28; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 06 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;423.00;319.00;321.00;316.00;321.00; +baseline stats (ms):;avg:;340.00;min:;316.00;max:;423.00;;;CHECK +operation raw measurements (ms):;1112.00;1112.00;1112.00;1109.00;1107.00; +operation stats (ms/op):;avg op:;222.08;min op:;221.40;max op:;222.40; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 06 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;427.00;323.00;325.00;324.00;320.00; +baseline stats (ms):;avg:;343.80;min:;320.00;max:;427.00;;;CHECK +operation raw measurements (ms):;1124.20;1127.20;1121.20;1120.20;1118.20; +operation stats (ms/op):;avg op:;224.44;min op:;223.64;max op:;225.44; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 06 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;431.00;384.00;329.00;328.00;327.00; +baseline stats (ms):;avg:;359.80;min:;327.00;max:;431.00;;;CHECK +operation raw measurements (ms):;1134.20;1138.20;1143.20;1137.20;1141.20; +operation stats (ms/op):;avg op:;227.76;min op:;226.84;max op:;228.64; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 02 00 06 06 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 02 00 06 06 00 00 0a 00 20 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 02 00 06 06 00 00 0a 00 40 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 02 00 06 06 00 00 0a 00 80 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 02 00 06 06 00 00 0a 01 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 02 00 06 06 00 00 0a 02 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_SHA_PKCS1 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_SHA_PKCS1 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 07 c0 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;618.00;489.00;494.00;492.00;498.00; +baseline stats (ms):;avg:;518.20;min:;489.00;max:;618.00;;;CHECK +operation raw measurements (ms):;1980.80;1963.80;1968.80;1972.80;1960.80; +operation stats (ms/op):;avg op:;393.88;min op:;392.16;max op:;396.16; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 07 c0 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;614.00;491.00;489.00;496.00;496.00; +baseline stats (ms):;avg:;517.20;min:;489.00;max:;614.00;;;CHECK +operation raw measurements (ms):;1967.80;1976.80;1968.80;1973.80;1959.80; +operation stats (ms/op):;avg op:;393.88;min op:;391.96;max op:;395.36; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 07 c0 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;612.00;496.00;666.00;495.00;492.00; +baseline stats (ms):;avg:;552.20;min:;492.00;max:;666.00;;;CHECK +operation raw measurements (ms):;1941.80;1946.80;1939.80;1948.80;1956.80; +operation stats (ms/op):;avg op:;389.36;min op:;387.96;max op:;391.36; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 07 c0 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;620.00;498.00;497.00;493.00;491.00; +baseline stats (ms):;avg:;519.80;min:;491.00;max:;620.00;;;CHECK +operation raw measurements (ms):;1982.20;1991.20;1987.20;1988.20;1990.20; +operation stats (ms/op):;avg op:;397.56;min op:;396.44;max op:;398.24; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 07 c0 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;622.00;496.00;513.00;494.00;492.00; +baseline stats (ms):;avg:;523.40;min:;492.00;max:;622.00;;;CHECK +operation raw measurements (ms):;1991.60;1997.60;1986.60;1991.60;1999.60; +operation stats (ms/op):;avg op:;398.68;min op:;397.32;max op:;399.92; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 07 c0 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;629.00;507.00;505.00;506.00;504.00; +baseline stats (ms):;avg:;530.20;min:;504.00;max:;629.00;;;CHECK +operation raw measurements (ms):;2027.80;2014.80;2037.80;2017.80;2024.80; +operation stats (ms/op):;avg op:;404.92;min op:;402.96;max op:;407.56; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 02 00 06 07 c0 00 0a 00 10 ff ff ff ff 00 05 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 02 00 06 07 c0 00 0a 00 20 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 02 00 06 07 c0 00 0a 00 40 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 02 00 06 07 c0 00 0a 00 80 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 02 00 06 07 c0 00 0a 01 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 02 00 06 07 c0 00 0a 02 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_SHA_PKCS1 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_SHA_PKCS1 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 08 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;663.00;533.00;532.00;534.00;534.00; +baseline stats (ms):;avg:;559.20;min:;532.00;max:;663.00;;;CHECK +operation raw measurements (ms):;2165.80;2166.80;2178.80;2178.80;2178.80; +operation stats (ms/op):;avg op:;434.76;min op:;433.16;max op:;435.76; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 08 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;660.00;533.00;546.00;531.00;533.00; +baseline stats (ms):;avg:;560.60;min:;531.00;max:;660.00;;;CHECK +operation raw measurements (ms):;2181.40;2182.40;2175.40;2190.40;2170.40; +operation stats (ms/op):;avg op:;436.00;min op:;434.08;max op:;438.08; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 08 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;663.00;534.00;541.00;536.00;532.00; +baseline stats (ms):;avg:;561.20;min:;532.00;max:;663.00;;;CHECK +operation raw measurements (ms):;2165.80;2184.80;2167.80;2178.80;2177.80; +operation stats (ms/op):;avg op:;435.00;min op:;433.16;max op:;436.96; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 08 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;664.00;533.00;577.00;538.00;536.00; +baseline stats (ms):;avg:;569.60;min:;533.00;max:;664.00;;;CHECK +operation raw measurements (ms):;2178.40;2179.40;2185.40;2180.40;2172.40; +operation stats (ms/op):;avg op:;435.84;min op:;434.48;max op:;437.08; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 08 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;667.00;542.00;547.00;538.00;539.00; +baseline stats (ms):;avg:;566.60;min:;538.00;max:;667.00;;;CHECK +operation raw measurements (ms):;2199.40;2201.40;2195.40;2198.40;2201.40; +operation stats (ms/op):;avg op:;439.84;min op:;439.08;max op:;440.28; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 08 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;669.00;543.00;554.00;547.00;539.00; +baseline stats (ms):;avg:;570.40;min:;539.00;max:;669.00;;;CHECK +operation raw measurements (ms):;2220.60;2231.60;2218.60;2221.60;2217.60; +operation stats (ms/op):;avg op:;444.40;min op:;443.52;max op:;446.32; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 02 00 06 08 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 02 00 06 08 00 00 0a 00 20 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 02 00 06 08 00 00 0a 00 40 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 02 00 06 08 00 00 0a 00 80 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 02 00 06 08 00 00 0a 01 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 02 00 06 08 00 00 0a 02 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_SHA_PKCS1 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_SHA_PKCS1 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 0c 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 0c 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 0c 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 0c 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 0c 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 0c 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 02 00 06 0c 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 02 00 06 0c 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 02 00 06 0c 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 02 00 06 0c 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 02 00 06 0c 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 02 00 06 0c 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_SHA_PKCS1 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_SHA_PKCS1 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 10 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 10 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 10 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 10 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 10 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_SHA_PKCS1 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0a 00 02 00 06 10 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 02 00 06 10 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 02 00 06 10 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 02 00 06 10 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 02 00 06 10 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 02 00 06 10 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_SHA_PKCS1 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0a 00 02 00 06 10 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_SHA_PKCS1 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_SHA_PKCS1_PSS - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 02 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;203.00;153.00;152.00;152.00;151.00; +baseline stats (ms):;avg:;162.20;min:;151.00;max:;203.00;;;CHECK +operation raw measurements (ms):;269.80;266.80;270.80;270.80;271.80; +operation stats (ms/op):;avg op:;54.00;min op:;53.36;max op:;54.36; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 02 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;203.00;154.00;151.00;152.00;151.00; +baseline stats (ms):;avg:;162.20;min:;151.00;max:;203.00;;;CHECK +operation raw measurements (ms):;268.80;269.80;270.80;270.80;267.80; +operation stats (ms/op):;avg op:;53.92;min op:;53.56;max op:;54.16; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 02 00 06 02 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 02 00 06 02 00 00 0a 00 20 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 02 00 06 02 00 00 0a 00 40 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 02 00 06 02 00 00 0a 00 80 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 02 00 06 02 00 00 0a 01 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 02 00 06 02 00 00 0a 02 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_SHA_PKCS1_PSS - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_SHA_PKCS1_PSS - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 02 e0 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;234.00;172.00;172.00;172.00;188.00; +baseline stats (ms):;avg:;187.60;min:;172.00;max:;234.00;;;CHECK +operation raw measurements (ms):;390.40;390.40;390.40;406.40;391.40; +operation stats (ms/op):;avg op:;78.76;min op:;78.08;max op:;81.28; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 02 e0 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;234.00;171.00;172.00;172.00;188.00; +baseline stats (ms):;avg:;187.40;min:;171.00;max:;234.00;;;CHECK +operation raw measurements (ms):;390.60;390.60;937.60;473.60;443.60; +operation stats (ms/op):;avg op:;105.44;min op:;78.12;max op:;187.52;;CHECK +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 02 e0 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;295.00;178.00;173.00;172.00;173.00; +baseline stats (ms):;avg:;198.20;min:;172.00;max:;295.00;;;CHECK +operation raw measurements (ms):;384.80;380.80;412.80;380.80;379.80; +operation stats (ms/op):;avg op:;77.56;min op:;75.96;max op:;82.56;;CHECK +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 02 e0 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;366.00;208.00;214.00;206.00;305.00; +baseline stats (ms):;avg:;259.80;min:;206.00;max:;366.00;;;CHECK +operation raw measurements (ms):;372.20;479.20;346.20;331.20;353.20; +operation stats (ms/op):;avg op:;75.28;min op:;66.24;max op:;95.84;;CHECK +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 02 e0 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;248.00;453.00;729.00;450.00;559.00; +baseline stats (ms):;avg:;487.80;min:;248.00;max:;729.00;;;CHECK +operation raw measurements (ms):;113.20;163.20;117.20;219.20;117.20; +operation stats (ms/op):;avg op:;29.20;min op:;22.64;max op:;43.84;;CHECK +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 02 e0 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;549.00;323.00;193.00;550.00;192.00; +baseline stats (ms):;avg:;361.40;min:;192.00;max:;550.00;;;CHECK +operation raw measurements (ms):;607.60;351.60;372.60;387.60;340.60; +operation stats (ms/op):;avg op:;82.40;min op:;68.12;max op:;121.52;;CHECK +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 02 00 06 02 e0 00 0a 00 10 ff ff ff ff 00 05 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 02 00 06 02 e0 00 0a 00 20 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 02 00 06 02 e0 00 0a 00 40 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 02 00 06 02 e0 00 0a 00 80 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 02 00 06 02 e0 00 0a 01 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 02 00 06 02 e0 00 0a 02 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_SHA_PKCS1_PSS - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_SHA_PKCS1_PSS - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 03 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;235.00;175.00;173.00;172.00;175.00; +baseline stats (ms):;avg:;186.00;min:;172.00;max:;235.00;;;CHECK +operation raw measurements (ms):;397.00;394.00;394.00;398.00;392.00; +operation stats (ms/op):;avg op:;79.00;min op:;78.40;max op:;79.60; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 03 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;233.00;173.00;171.00;172.00;174.00; +baseline stats (ms):;avg:;184.60;min:;171.00;max:;233.00;;;CHECK +operation raw measurements (ms):;397.40;399.40;398.40;399.40;397.40; +operation stats (ms/op):;avg op:;79.68;min op:;79.48;max op:;79.88; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 03 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;237.00;176.00;177.00;176.00;178.00; +baseline stats (ms):;avg:;188.80;min:;176.00;max:;237.00;;;CHECK +operation raw measurements (ms):;399.20;398.20;402.20;397.20;402.20; +operation stats (ms/op):;avg op:;79.96;min op:;79.44;max op:;80.44; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 03 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;235.00;178.00;178.00;180.00;178.00; +baseline stats (ms):;avg:;189.80;min:;178.00;max:;235.00;;;CHECK +operation raw measurements (ms):;407.20;409.20;406.20;405.20;410.20; +operation stats (ms/op):;avg op:;81.52;min op:;81.04;max op:;82.04; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 03 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;238.00;178.00;178.00;177.00;178.00; +baseline stats (ms):;avg:;189.80;min:;177.00;max:;238.00;;;CHECK +operation raw measurements (ms):;418.20;416.20;421.20;421.20;422.20; +operation stats (ms/op):;avg op:;83.96;min op:;83.24;max op:;84.44; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 03 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;244.00;185.00;186.00;186.00;185.00; +baseline stats (ms):;avg:;197.20;min:;185.00;max:;244.00;;;CHECK +operation raw measurements (ms):;440.80;443.80;437.80;440.80;440.80; +operation stats (ms/op):;avg op:;88.16;min op:;87.56;max op:;88.76; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 02 00 06 03 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 02 00 06 03 00 00 0a 00 20 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 02 00 06 03 00 00 0a 00 40 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 02 00 06 03 00 00 0a 00 80 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 02 00 06 03 00 00 0a 01 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 02 00 06 03 00 00 0a 02 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_SHA_PKCS1_PSS - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_SHA_PKCS1_PSS - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 03 80 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;261.00;194.00;194.00;195.00;195.00; +baseline stats (ms):;avg:;207.80;min:;194.00;max:;261.00;;;CHECK +operation raw measurements (ms):;482.20;486.20;487.20;482.20;484.20; +operation stats (ms/op):;avg op:;96.88;min op:;96.44;max op:;97.44; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 03 80 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;263.00;195.00;194.00;192.00;193.00; +baseline stats (ms):;avg:;207.40;min:;192.00;max:;263.00;;;CHECK +operation raw measurements (ms):;482.60;487.60;481.60;483.60;482.60; +operation stats (ms/op):;avg op:;96.72;min op:;96.32;max op:;97.52; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 03 80 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;262.00;195.00;195.00;191.00;195.00; +baseline stats (ms):;avg:;207.60;min:;191.00;max:;262.00;;;CHECK +operation raw measurements (ms):;493.40;487.40;532.40;487.40;491.40; +operation stats (ms/op):;avg op:;99.68;min op:;97.48;max op:;106.48;;CHECK +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 03 80 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;258.00;193.00;195.00;193.00;192.00; +baseline stats (ms):;avg:;206.20;min:;192.00;max:;258.00;;;CHECK +operation raw measurements (ms):;491.80;495.80;495.80;498.80;493.80; +operation stats (ms/op):;avg op:;99.04;min op:;98.36;max op:;99.76; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 03 80 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;265.00;199.00;202.00;199.00;200.00; +baseline stats (ms):;avg:;213.00;min:;199.00;max:;265.00;;;CHECK +operation raw measurements (ms):;505.00;508.00;506.00;510.00;505.00; +operation stats (ms/op):;avg op:;101.36;min op:;101.00;max op:;102.00; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 03 80 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;271.00;205.00;206.00;204.00;204.00; +baseline stats (ms):;avg:;218.00;min:;204.00;max:;271.00;;;CHECK +operation raw measurements (ms):;531.00;537.00;533.00;531.00;532.00; +operation stats (ms/op):;avg op:;106.56;min op:;106.20;max op:;107.40; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 02 00 06 03 80 00 0a 00 10 ff ff ff ff 00 05 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 02 00 06 03 80 00 0a 00 20 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 02 00 06 03 80 00 0a 00 40 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 02 00 06 03 80 00 0a 00 80 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 02 00 06 03 80 00 0a 01 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 02 00 06 03 80 00 0a 02 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_SHA_PKCS1_PSS - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_SHA_PKCS1_PSS - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 04 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;284.00;212.00;209.00;213.00;212.00; +baseline stats (ms):;avg:;226.00;min:;209.00;max:;284.00;;;CHECK +operation raw measurements (ms):;595.00;596.00;594.00;595.00;599.00; +operation stats (ms/op):;avg op:;119.16;min op:;118.80;max op:;119.80; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 04 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;283.00;216.00;217.00;215.00;215.00; +baseline stats (ms):;avg:;229.20;min:;215.00;max:;283.00;;;CHECK +operation raw measurements (ms):;592.80;591.80;590.80;592.80;589.80; +operation stats (ms/op):;avg op:;118.32;min op:;117.96;max op:;118.56; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 04 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;289.00;216.00;218.00;218.00;216.00; +baseline stats (ms):;avg:;231.40;min:;216.00;max:;289.00;;;CHECK +operation raw measurements (ms):;597.60;593.60;596.60;593.60;599.60; +operation stats (ms/op):;avg op:;119.24;min op:;118.72;max op:;119.92; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 04 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;290.00;217.00;217.00;219.00;219.00; +baseline stats (ms):;avg:;232.40;min:;217.00;max:;290.00;;;CHECK +operation raw measurements (ms):;594.60;598.60;604.60;600.60;600.60; +operation stats (ms/op):;avg op:;119.96;min op:;118.92;max op:;120.92; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 04 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;292.00;222.00;222.00;217.00;218.00; +baseline stats (ms):;avg:;234.20;min:;217.00;max:;292.00;;;CHECK +operation raw measurements (ms):;615.80;613.80;613.80;615.80;615.80; +operation stats (ms/op):;avg op:;123.00;min op:;122.76;max op:;123.16; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 04 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;297.00;220.00;228.00;223.00;225.00; +baseline stats (ms):;avg:;238.60;min:;220.00;max:;297.00;;;CHECK +operation raw measurements (ms):;642.40;637.40;646.40;639.40;639.40; +operation stats (ms/op):;avg op:;128.20;min op:;127.48;max op:;129.28; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 02 00 06 04 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 02 00 06 04 00 00 0a 00 20 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 02 00 06 04 00 00 0a 00 40 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 02 00 06 04 00 00 0a 00 80 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 02 00 06 04 00 00 0a 01 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 02 00 06 04 00 00 0a 02 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_SHA_PKCS1_PSS - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_SHA_PKCS1_PSS - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 05 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;343.00;266.00;260.00;279.00;263.00; +baseline stats (ms):;avg:;282.20;min:;260.00;max:;343.00;;;CHECK +operation raw measurements (ms):;845.80;849.80;840.80;848.80;852.80; +operation stats (ms/op):;avg op:;169.52;min op:;168.16;max op:;170.56; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 05 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;359.00;277.00;275.00;265.00;260.00; +baseline stats (ms):;avg:;287.20;min:;260.00;max:;359.00;;;CHECK +operation raw measurements (ms):;838.80;853.80;837.80;852.80;841.80; +operation stats (ms/op):;avg op:;169.00;min op:;167.56;max op:;170.76; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 05 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;367.00;266.00;254.00;285.00;271.00; +baseline stats (ms):;avg:;288.60;min:;254.00;max:;367.00;;;CHECK +operation raw measurements (ms):;848.40;850.40;852.40;852.40;858.40; +operation stats (ms/op):;avg op:;170.48;min op:;169.68;max op:;171.68; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 05 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;362.00;280.00;268.00;268.00;255.00; +baseline stats (ms):;avg:;286.60;min:;255.00;max:;362.00;;;CHECK +operation raw measurements (ms):;850.40;848.40;848.40;845.40;843.40; +operation stats (ms/op):;avg op:;169.44;min op:;168.68;max op:;170.08; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 05 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;353.00;264.00;313.00;263.00;281.00; +baseline stats (ms):;avg:;294.80;min:;263.00;max:;353.00;;;CHECK +operation raw measurements (ms):;860.20;869.20;855.20;875.20;851.20; +operation stats (ms/op):;avg op:;172.44;min op:;170.24;max op:;175.04; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 05 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;361.00;278.00;275.00;275.00;276.00; +baseline stats (ms):;avg:;293.00;min:;275.00;max:;361.00;;;CHECK +operation raw measurements (ms):;892.00;889.00;894.00;885.00;899.00; +operation stats (ms/op):;avg op:;178.36;min op:;177.00;max op:;179.80; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 02 00 06 05 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 02 00 06 05 00 00 0a 00 20 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 02 00 06 05 00 00 0a 00 40 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 02 00 06 05 00 00 0a 00 80 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 02 00 06 05 00 00 0a 01 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 02 00 06 05 00 00 0a 02 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_SHA_PKCS1_PSS - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_SHA_PKCS1_PSS - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 06 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;438.00;337.00;338.00;336.00;336.00; +baseline stats (ms):;avg:;357.00;min:;336.00;max:;438.00;;;CHECK +operation raw measurements (ms):;1183.00;1187.00;1193.00;1192.00;1189.00; +operation stats (ms/op):;avg op:;237.76;min op:;236.60;max op:;238.60; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 06 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;440.00;337.00;336.00;336.00;336.00; +baseline stats (ms):;avg:;357.00;min:;336.00;max:;440.00;;;CHECK +operation raw measurements (ms):;1193.00;1191.00;1185.00;1187.00;1196.00; +operation stats (ms/op):;avg op:;238.08;min op:;237.00;max op:;239.20; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 06 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;440.00;339.00;341.00;337.00;340.00; +baseline stats (ms):;avg:;359.40;min:;337.00;max:;440.00;;;CHECK +operation raw measurements (ms):;1190.60;1189.60;1198.60;1189.60;1190.60; +operation stats (ms/op):;avg op:;238.36;min op:;237.92;max op:;239.72; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 06 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;440.00;338.00;338.00;338.00;339.00; +baseline stats (ms):;avg:;358.60;min:;338.00;max:;440.00;;;CHECK +operation raw measurements (ms):;1201.40;1198.40;1198.40;1201.40;1193.40; +operation stats (ms/op):;avg op:;239.72;min op:;238.68;max op:;240.28; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 06 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;446.00;344.00;341.00;341.00;344.00; +baseline stats (ms):;avg:;363.20;min:;341.00;max:;446.00;;;CHECK +operation raw measurements (ms):;1209.80;1208.80;1216.80;1225.80;1207.80; +operation stats (ms/op):;avg op:;242.76;min op:;241.56;max op:;245.16; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 06 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;450.00;347.00;345.00;345.00;348.00; +baseline stats (ms):;avg:;367.00;min:;345.00;max:;450.00;;;CHECK +operation raw measurements (ms):;1242.00;1242.00;1250.00;1238.00;1244.00; +operation stats (ms/op):;avg op:;248.64;min op:;247.60;max op:;250.00; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 02 00 06 06 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 02 00 06 06 00 00 0a 00 20 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 02 00 06 06 00 00 0a 00 40 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 02 00 06 06 00 00 0a 00 80 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 02 00 06 06 00 00 0a 01 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 02 00 06 06 00 00 0a 02 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_SHA_PKCS1_PSS - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_SHA_PKCS1_PSS - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 07 c0 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;636.00;508.00;509.00;509.00;513.00; +baseline stats (ms):;avg:;535.00;min:;508.00;max:;636.00;;;CHECK +operation raw measurements (ms):;2075.00;2080.00;2086.00;2078.00;2075.00; +operation stats (ms/op):;avg op:;415.76;min op:;415.00;max op:;417.20; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 07 c0 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;637.00;511.00;512.00;514.00;514.00; +baseline stats (ms):;avg:;537.60;min:;511.00;max:;637.00;;;CHECK +operation raw measurements (ms):;2079.40;2067.40;2081.40;2071.40;2067.40; +operation stats (ms/op):;avg op:;414.68;min op:;413.48;max op:;416.28; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 07 c0 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;638.00;509.00;515.00;508.00;517.00; +baseline stats (ms):;avg:;537.40;min:;508.00;max:;638.00;;;CHECK +operation raw measurements (ms):;2087.60;2085.60;2085.60;2100.60;2077.60; +operation stats (ms/op):;avg op:;417.48;min op:;415.52;max op:;420.12; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 07 c0 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;640.00;515.00;518.00;517.00;517.00; +baseline stats (ms):;avg:;541.40;min:;515.00;max:;640.00;;;CHECK +operation raw measurements (ms):;2086.60;2080.60;2099.60;2104.60;2094.60; +operation stats (ms/op):;avg op:;418.64;min op:;416.12;max op:;420.92; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 07 c0 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;643.00;519.00;516.00;523.00;518.00; +baseline stats (ms):;avg:;543.80;min:;516.00;max:;643.00;;;CHECK +operation raw measurements (ms):;2093.20;2108.20;2106.20;2102.20;2103.20; +operation stats (ms/op):;avg op:;420.52;min op:;418.64;max op:;421.64; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 07 c0 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;649.00;530.00;526.00;532.00;527.00; +baseline stats (ms):;avg:;552.80;min:;526.00;max:;649.00;;;CHECK +operation raw measurements (ms):;2128.20;2130.20;2121.20;2129.20;2134.20; +operation stats (ms/op):;avg op:;425.72;min op:;424.24;max op:;426.84; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 02 00 06 07 c0 00 0a 00 10 ff ff ff ff 00 05 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 02 00 06 07 c0 00 0a 00 20 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 02 00 06 07 c0 00 0a 00 40 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 02 00 06 07 c0 00 0a 00 80 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 02 00 06 07 c0 00 0a 01 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 02 00 06 07 c0 00 0a 02 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_SHA_PKCS1_PSS - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_SHA_PKCS1_PSS - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 08 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;686.00;556.00;554.00;552.00;553.00; +baseline stats (ms):;avg:;580.20;min:;552.00;max:;686.00;;;CHECK +operation raw measurements (ms):;2277.80;2286.80;2272.80;2285.80;2278.80; +operation stats (ms/op):;avg op:;456.08;min op:;454.56;max op:;457.36; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 08 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;685.00;552.00;556.00;556.00;560.00; +baseline stats (ms):;avg:;581.80;min:;552.00;max:;685.00;;;CHECK +operation raw measurements (ms):;2279.20;2272.20;2281.20;2289.20;2273.20; +operation stats (ms/op):;avg op:;455.80;min op:;454.44;max op:;457.84; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 08 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;693.00;553.00;556.00;557.00;559.00; +baseline stats (ms):;avg:;583.60;min:;553.00;max:;693.00;;;CHECK +operation raw measurements (ms):;2310.40;2284.40;2265.40;2286.40;2281.40; +operation stats (ms/op):;avg op:;457.12;min op:;453.08;max op:;462.08; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 08 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;688.00;564.00;559.00;548.00;556.00; +baseline stats (ms):;avg:;583.00;min:;548.00;max:;688.00;;;CHECK +operation raw measurements (ms):;2309.00;2309.00;2291.00;2308.00;2301.00; +operation stats (ms/op):;avg op:;460.72;min op:;458.20;max op:;461.80; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 08 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;688.00;552.00;557.00;562.00;563.00; +baseline stats (ms):;avg:;584.40;min:;552.00;max:;688.00;;;CHECK +operation raw measurements (ms):;2295.60;2305.60;2323.60;2315.60;2321.60; +operation stats (ms/op):;avg op:;462.48;min op:;459.12;max op:;464.72; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 08 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;703.00;569.00;570.00;575.00;563.00; +baseline stats (ms):;avg:;596.00;min:;563.00;max:;703.00;;;CHECK +operation raw measurements (ms):;2338.00;2326.00;2321.00;2315.00;2329.00; +operation stats (ms/op):;avg op:;465.16;min op:;463.00;max op:;467.60; +operation info:;data length;512;total iterations;25;total invocations;25; + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 02 00 06 08 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 02 00 06 08 00 00 0a 00 20 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 02 00 06 08 00 00 0a 00 40 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 02 00 06 08 00 00 0a 00 80 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 02 00 06 08 00 00 0a 01 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 02 00 06 08 00 00 0a 02 00 ff ff ff ff 00 00 00 01 +SW_ALG_OPS_NOT_SUPPORTED + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_SHA_PKCS1_PSS - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_SHA_PKCS1_PSS - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 0c 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 0c 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 0c 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 0c 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 0c 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 0c 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 02 00 06 0c 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 02 00 06 0c 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 02 00 06 0c 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 02 00 06 0c 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 02 00 06 0c 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 02 00 06 0c 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_SHA_PKCS1_PSS - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_SHA_PKCS1_PSS - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 10 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 10 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 10 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 10 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 10 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_SHA_PKCS1_PSS Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 15 00 02 00 06 10 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 02 00 06 10 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 02 00 06 10 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 02 00 06 10 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 02 00 06 10 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 02 00 06 10 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_SHA_PKCS1_PSS Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 15 00 02 00 06 10 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_SHA_PKCS1_PSS - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_SHA_RFC2409 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 02 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 02 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 02 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 02 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 02 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 02 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 02 00 06 02 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 02 00 06 02 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 02 00 06 02 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 02 00 06 02 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 02 00 06 02 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 02 00 06 02 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_512 ALG_RSA_SHA_RFC2409 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_SHA_RFC2409 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 02 e0 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 02 e0 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 02 e0 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 02 e0 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 02 e0 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 02 e0 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 02 00 06 02 e0 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 02 00 06 02 e0 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 02 00 06 02 e0 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 02 00 06 02 e0 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 02 00 06 02 e0 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 02 00 06 02 e0 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_736 ALG_RSA_SHA_RFC2409 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_SHA_RFC2409 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 03 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 03 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 03 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 03 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 03 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 03 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 02 00 06 03 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 02 00 06 03 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 02 00 06 03 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 02 00 06 03 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 02 00 06 03 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 02 00 06 03 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_768 ALG_RSA_SHA_RFC2409 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_SHA_RFC2409 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 03 80 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 03 80 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 03 80 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 03 80 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 03 80 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 03 80 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 02 00 06 03 80 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 02 00 06 03 80 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 02 00 06 03 80 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 02 00 06 03 80 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 02 00 06 03 80 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 02 00 06 03 80 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_896 ALG_RSA_SHA_RFC2409 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_SHA_RFC2409 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 04 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 04 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 04 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 04 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 04 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 04 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 02 00 06 04 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 02 00 06 04 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 02 00 06 04 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 02 00 06 04 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 02 00 06 04 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 02 00 06 04 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1024 ALG_RSA_SHA_RFC2409 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_SHA_RFC2409 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 05 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 05 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 05 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 05 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 05 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 05 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 02 00 06 05 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 02 00 06 05 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 02 00 06 05 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 02 00 06 05 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 02 00 06 05 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 02 00 06 05 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1280 ALG_RSA_SHA_RFC2409 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_SHA_RFC2409 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 06 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 06 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 06 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 06 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 06 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 06 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 02 00 06 06 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 02 00 06 06 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 02 00 06 06 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 02 00 06 06 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 02 00 06 06 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 02 00 06 06 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1536 ALG_RSA_SHA_RFC2409 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_SHA_RFC2409 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 07 c0 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 07 c0 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 07 c0 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 07 c0 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 07 c0 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 07 c0 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 02 00 06 07 c0 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 02 00 06 07 c0 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 02 00 06 07 c0 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 02 00 06 07 c0 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 02 00 06 07 c0 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 02 00 06 07 c0 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_1984 ALG_RSA_SHA_RFC2409 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_SHA_RFC2409 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 08 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 08 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 08 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 08 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 08 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 08 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 02 00 06 08 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 02 00 06 08 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 02 00 06 08 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 02 00 06 08 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 02 00 06 08 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 02 00 06 08 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_2048 ALG_RSA_SHA_RFC2409 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_SHA_RFC2409 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 0c 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 0c 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 0c 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 0c 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 0c 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 0c 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 02 00 06 0c 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 02 00 06 0c 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 02 00 06 0c 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 02 00 06 0c 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 02 00 06 0c 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 02 00 06 0c 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_3072 ALG_RSA_SHA_RFC2409 - variable data - END + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_SHA_RFC2409 - variable data - BEGIN + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 10 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 10 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 10 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 10 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 10 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_SHA_RFC2409 Signature_sign() +measurement config:;appletPrepareINS;32;appletMeasureINS;49;config;00 12 00 0f 00 02 00 06 10 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 02 00 06 10 00 00 0a 00 10 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 02 00 06 10 00 00 0a 00 20 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 02 00 06 10 00 00 0a 00 40 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 02 00 06 10 00 00 0a 00 80 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 02 00 06 10 00 00 0a 01 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_SHA_RFC2409 Signature_setKeyInitSign() +measurement config:;appletPrepareINS;32;appletMeasureINS;a9;config;00 12 00 0f 00 02 00 06 10 00 00 0a 02 00 ff ff ff ff 00 05 00 01 +NO_SUCH_ALGORITHM + + +SIGNATURE - ALG_RSA_CRT LENGTH_RSA_4096 ALG_RSA_SHA_RFC2409 - variable data - END + + +SIGNATURE - END + + +CHECKSUM + + +CHECKSUM - ALG_ISO3309_CRC16 - variable data - BEGIN + +method name:; ALG_ISO3309_CRC16 Checksum_doFinal() +measurement config:;appletPrepareINS;35;appletMeasureINS;46;config;00 17 00 01 ff ff ff ff ff ff 00 05 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;63.00;78.00;63.00;62.00;79.00; +baseline stats (ms):;avg:;69.00;min:;62.00;max:;79.00;;;CHECK +operation raw measurements (ms):;-7.00;-6.00;3.00;-10.00;9.00; +operation stats (ms/op):;avg op:;-0.44;min op:;-2.00;max op:;1.80; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; ALG_ISO3309_CRC16 Checksum_doFinal() +measurement config:;appletPrepareINS;35;appletMeasureINS;46;config;00 17 00 01 ff ff ff ff ff ff 00 05 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;62.00;62.00;63.00;78.00;63.00; +baseline stats (ms):;avg:;65.60;min:;62.00;max:;78.00;;;CHECK +operation raw measurements (ms):;18.40;1.40;-2.60;8.40;12.40; +operation stats (ms/op):;avg op:;1.52;min op:;-0.52;max op:;3.68;;CHECK +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; ALG_ISO3309_CRC16 Checksum_doFinal() +measurement config:;appletPrepareINS;35;appletMeasureINS;46;config;00 17 00 01 ff ff ff ff ff ff 00 05 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;63.00;62.00;63.00;66.00;53.00; +baseline stats (ms):;avg:;63.50;min:;53.00;max:;66.00;;;CHECK +operation raw measurements (ms):;-1.50;-0.50;14.50;17.50;14.50; +operation stats (ms/op):;avg op:;1.78;min op:;-0.30;max op:;3.50;;CHECK +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; ALG_ISO3309_CRC16 Checksum_doFinal() +measurement config:;appletPrepareINS;35;appletMeasureINS;46;config;00 17 00 01 ff ff ff ff ff ff 00 05 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;63.00;73.00;67.00;62.00;78.00; +baseline stats (ms):;avg:;68.60;min:;62.00;max:;78.00;;;CHECK +operation raw measurements (ms):;-5.60;-5.60;9.40;9.40;9.40; +operation stats (ms/op):;avg op:;0.68;min op:;-1.12;max op:;1.88;;CHECK +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; ALG_ISO3309_CRC16 Checksum_doFinal() +measurement config:;appletPrepareINS;35;appletMeasureINS;46;config;00 17 00 01 ff ff ff ff ff ff 00 05 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;72.00;63.00;78.00;63.00;78.00; +baseline stats (ms):;avg:;70.80;min:;63.00;max:;78.00;;;CHECK +operation raw measurements (ms):;-7.80;-8.80;8.20;7.20;-1.80; +operation stats (ms/op):;avg op:;-0.12;min op:;-1.76;max op:;1.64; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; ALG_ISO3309_CRC16 Checksum_doFinal() +measurement config:;appletPrepareINS;35;appletMeasureINS;46;config;00 17 00 01 ff ff ff ff ff ff 00 05 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;62.00;68.00;78.00;62.00;78.00; +baseline stats (ms):;avg:;69.60;min:;62.00;max:;78.00;;;CHECK +operation raw measurements (ms):;8.40;8.40;2.40;8.40;8.40; +operation stats (ms/op):;avg op:;1.44;min op:;0.48;max op:;1.68;;CHECK +operation info:;data length;512;total iterations;25;total invocations;25; + + +CHECKSUM - ALG_ISO3309_CRC16 - variable data - END + + +CHECKSUM - ALG_ISO3309_CRC32 - variable data - BEGIN + +method name:; ALG_ISO3309_CRC32 Checksum_doFinal() +measurement config:;appletPrepareINS;35;appletMeasureINS;46;config;00 17 00 02 ff ff ff ff ff ff 00 05 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;62.00;62.00;78.00;62.00;63.00; +baseline stats (ms):;avg:;65.40;min:;62.00;max:;78.00;;;CHECK +operation raw measurements (ms):;3.60;12.60;-3.40;-2.40;12.60; +operation stats (ms/op):;avg op:;0.92;min op:;-0.68;max op:;2.52;;CHECK +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; ALG_ISO3309_CRC32 Checksum_doFinal() +measurement config:;appletPrepareINS;35;appletMeasureINS;46;config;00 17 00 02 ff ff ff ff ff ff 00 05 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;63.00;78.00;63.00;67.00;63.00; +baseline stats (ms):;avg:;66.80;min:;63.00;max:;78.00;;;CHECK +operation raw measurements (ms):;-4.80;11.20;11.20;-3.80;-3.80; +operation stats (ms/op):;avg op:;0.40;min op:;-0.96;max op:;2.24;;CHECK +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; ALG_ISO3309_CRC32 Checksum_doFinal() +measurement config:;appletPrepareINS;35;appletMeasureINS;46;config;00 17 00 02 ff ff ff ff ff ff 00 05 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;78.00;65.00;62.00;78.00;62.00; +baseline stats (ms):;avg:;69.00;min:;62.00;max:;78.00;;;CHECK +operation raw measurements (ms):;-6.00;9.00;9.00;-7.00;10.00; +operation stats (ms/op):;avg op:;0.60;min op:;-1.40;max op:;2.00;;CHECK +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; ALG_ISO3309_CRC32 Checksum_doFinal() +measurement config:;appletPrepareINS;35;appletMeasureINS;46;config;00 17 00 02 ff ff ff ff ff ff 00 05 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;78.00;78.00;62.00;63.00;78.00; +baseline stats (ms):;avg:;71.80;min:;62.00;max:;78.00;;;CHECK +operation raw measurements (ms):;-8.80;6.20;6.20;4.20;1.20; +operation stats (ms/op):;avg op:;0.36;min op:;-1.76;max op:;1.24;;CHECK +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; ALG_ISO3309_CRC32 Checksum_doFinal() +measurement config:;appletPrepareINS;35;appletMeasureINS;46;config;00 17 00 02 ff ff ff ff ff ff 00 05 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;62.00;78.00;63.00;70.00;78.00; +baseline stats (ms):;avg:;70.20;min:;62.00;max:;78.00;;;CHECK +operation raw measurements (ms):;7.80;7.80;1.80;7.80;-7.20; +operation stats (ms/op):;avg op:;0.72;min op:;-1.44;max op:;1.56;;CHECK +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; ALG_ISO3309_CRC32 Checksum_doFinal() +measurement config:;appletPrepareINS;35;appletMeasureINS;46;config;00 17 00 02 ff ff ff ff ff ff 00 05 02 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;78.00;63.00;63.00;78.00;63.00; +baseline stats (ms):;avg:;69.00;min:;63.00;max:;78.00;;;CHECK +operation raw measurements (ms):;0.00;9.00;-7.00;-7.00;9.00; +operation stats (ms/op):;avg op:;0.16;min op:;-1.40;max op:;1.80;;CHECK +operation info:;data length;512;total iterations;25;total invocations;25; + + +CHECKSUM - ALG_ISO3309_CRC32 - variable data - END + + +CHECKSUM - END + + +AESKey +No variable data test for TYPE_AES LENGTH_AES_128 +No variable data test for TYPE_AES LENGTH_AES_192 +No variable data test for TYPE_AES LENGTH_AES_256 + + +AESKey - END + + +DESKeyNo variable data test for TYPE_DES LENGTH_DES_64 +No variable data test for TYPE_DES LENGTH_DES_128 +No variable data test for TYPE_DES LENGTH_DES_192 + + +DESKey - END + + +KoreanSEEDKeyNo variable data test for TYPE_KOREAN_SEED LENGTH_KOREAN_SEED_128 + + +KoreanSEEDKey - END + + +DSAPrivateKeyNo variable data test for TYPE_DSA_PRIVATE LENGTH_DSA_512 +No variable data test for TYPE_DSA_PRIVATE LENGTH_DSA_768 +No variable data test for TYPE_DSA_PRIVATE LENGTH DSA_1024 + + +DSAPrivateKey - END + + +DSAPublicKeyNo variable data test for TYPE_DSA_PUBLIC LENGTH_DSA_512 +No variable data test for TYPE_DSA_PUBLIC LENGTH_DSA_768 +No variable data test for TYPE_DSA_PUBLIC LENGTH_DSA_1024 + + +DSAPublicKey - END + + +ECF2MPublicKeyNo variable data test for TYPE_EC_F2M_PUBLIC LENGTH_EC_F2M_113 +No variable data test for TYPE_EC_F2M_PUBLIC LENGTH_EC_F2M_131 +No variable data test for TYPE_EC_F2M_PUBLIC LENGTH_EC_F2M_163 +No variable data test for TYPE_EC_F2M_PUBLIC LENGTH_EC_F2M_193 + + +ECF2MPublicKey - END + + +ECF2MPrivateKeyNo variable data test for TYPE_EC_F2M_PRIVATE LENGTH_EC_F2M_113 +No variable data test for TYPE_EC_F2M_PRIVATE LENGTH_EC_F2M_131 +No variable data test for TYPE_EC_F2M_PRIVATE LENGTH_EC_F2M_163 +No variable data test for TYPE_EC_F2M_PRIVATE LENGTH_EC_F2M_193 + + +ECF2MPrivateKey - END + + +ECFPPublicKeyNo variable data test for TYPE_EC_FP_PUBLIC LENGTH_EC_FP_112 +No variable data test for TYPE_EC_FP_PUBLIC LENGTH_EC_FP_128 +No variable data test for TYPE_EC_FP_PUBLIC LENGTH_EC_FP_160 +No variable data test for TYPE_EC_FP_PUBLIC LENGTH_EC_FP_192 +No variable data test for TYPE_EC_FP_PUBLIC LENGTH_EC_FP_224 +No variable data test for TYPE_EC_FP_PUBLIC LENGTH_EC_FP_256 +No variable data test for TYPE_EC_FP_PUBLIC LENGTH_EC_FP_384 +No variable data test for TYPE_EC_FP_PUBLIC LENGTH_EC_FP_521 + + +ECFPPublicKey - END + + +ECFPPrivateKeyNo variable data test for TYPE_EC_FP PRIVATE LENGTH_EC_FP_112 +No variable data test for TYPE_EC_FP PRIVATE LENGTH_EC_FP_128 +No variable data test for TYPE_EC_FP PRIVATE LENGTH_EC_FP_160 +No variable data test for TYPE_EC_FP PRIVATE LENGTH_EC_FP_192 +No variable data test for TYPE_EC_FP PRIVATE LENGTH_EC_FP_224 +No variable data test for TYPE_EC_FP PRIVATE LENGTH_EC_FP_256 +No variable data test for TYPE_EC_FP PRIVATE LENGTH_EC_FP_384 +No variable data test for TYPE_EC_FP PRIVATE LENGTH_EC_FP_521 + + +ECFPPrivateKey - END + + +HMACKeyNo variable data test for TYPE_HMAC_SHA-1 LENGTH_HMAC_64 +No variable data test for TYPE_HMAC_SHA-256 LENGTH_HMAC_64 +No variable data test for TYPE_HMAC_SHA-384 LENGTH_HMAC_128 +No variable data test for TYPE_HMAC_SHA-512 LENGTH_HMAC_128 + + +HMACKey - END + + +RSAPrivateCRTKeyNo variable data test for TYPE_RSA_PRIVATE_CRT LENGTH_RSA_512 +No variable data test for TYPE_RSA_PRIVATE_CRT LENGTH_RSA_736 +No variable data test for TYPE_RSA_PRIVATE_CRT LENGTH_RSA_768 +No variable data test for TYPE_RSA_PRIVATE_CRT LENGTH_RSA_896 +No variable data test for TYPE_RSA_PRIVATE_CRT LENGTH_RSA_1024 +No variable data test for TYPE_RSA_PRIVATE_CRT LENGTH_RSA_1280 +No variable data test for TYPE_RSA_PRIVATE_CRT LENGTH_RSA_1536 +No variable data test for TYPE_RSA_PRIVATE_CRT LENGTH_RSA_1984 +No variable data test for TYPE_RSA_PRIVATE_CRT LENGTH_RSA_2048 +No variable data test for TYPE_RSA_PRIVATE_CRT LENGTH_RSA_3072 +No variable data test for TYPE_RSA_PRIVATE_CRT LENGTH_RSA_4096 + + +RSAPrivateCRTKey - END + + +RSAPrivateKeyNo variable data test for TYPE_RSA_PRIVATE LENGTH_RSA_512 +No variable data test for TYPE_RSA_PRIVATE LENGTH_RSA_736 +No variable data test for TYPE_RSA_PRIVATE LENGTH_RSA_768 +No variable data test for TYPE_RSA_PRIVATE LENGTH_RSA_896 +No variable data test for TYPE_RSA_PRIVATE LENGTH_RSA_1024 +No variable data test for TYPE_RSA_PRIVATE LENGTH_RSA_1280 +No variable data test for TYPE_RSA_PRIVATE LENGTH_RSA_1536 +No variable data test for TYPE_RSA_PRIVATE LENGTH_RSA_1984 +No variable data test for TYPE_RSA_PRIVATE LENGTH_RSA_2048 +No variable data test for TYPE_RSA_PRIVATE LENGTH_RSA_3072 +No variable data test for TYPE_RSA_PRIVATE LENGTH_RSA_4096 + + +RSAPrivateKey - END + + +RSAPublicKeyNo variable data test for TYPE_RSA_PUBLIC LENGTH_RSA_512 +No variable data test for TYPE_RSA_PUBLIC LENGTH_RSA_736 +No variable data test for TYPE_RSA_PUBLIC LENGTH_RSA_768 +No variable data test for TYPE_RSA_PUBLIC LENGTH_RSA_896 +No variable data test for TYPE_RSA_PUBLIC LENGTH_RSA_1024 +No variable data test for TYPE_RSA_PUBLIC LENGTH_RSA_1280 +No variable data test for TYPE_RSA_PUBLIC LENGTH_RSA_1536 +No variable data test for TYPE_RSA_PUBLIC LENGTH_RSA_1984 +No variable data test for TYPE_RSA_PUBLIC LENGTH_RSA_2048 +No variable data test for TYPE_RSA_PUBLIC LENGTH_RSA_3072 +No variable data test for TYPE_RSA_PUBLIC LENGTH_RSA_4096 + + +RSAPublicKey - END + + +UTIL + + +UTIL - UTIL - variable data - BEGIN + +method name:; UTIL Util_arrayCompare_RAM_matching() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 12 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;63.00;62.00;61.00;68.00;57.00; +baseline stats (ms):;avg:;62.20;min:;57.00;max:;68.00;;;CHECK +operation raw measurements (ms):;-0.20;0.80;0.80;-0.20;-0.20; +operation stats (ms/op):;avg op:;0.04;min op:;-0.04;max op:;0.16;;CHECK +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayCompare_RAM_matching() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 12 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;63.00;63.00;69.00;59.00;63.00; +baseline stats (ms):;avg:;63.40;min:;59.00;max:;69.00;;;CHECK +operation raw measurements (ms):;-1.40;1.60;-0.40;-0.40;-1.40; +operation stats (ms/op):;avg op:;-0.08;min op:;-0.28;max op:;0.32; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayCompare_RAM_matching() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 12 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;63.00;63.00;57.00;52.00;62.00; +baseline stats (ms):;avg:;61.25;min:;52.00;max:;63.00;;;CHECK +operation raw measurements (ms):;1.75;1.75;0.75;0.75;1.75; +operation stats (ms/op):;avg op:;0.27;min op:;0.15;max op:;0.35;;CHECK +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayCompare_RAM_matching() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 12 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;63.00;68.00;57.00;60.00;62.00; +baseline stats (ms):;avg:;62.00;min:;57.00;max:;68.00;;;CHECK +operation raw measurements (ms):;1.00;1.00;0.00;0.00;1.00; +operation stats (ms/op):;avg op:;0.12;min op:;0.00;max op:;0.20;;CHECK +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayCompare_RAM_matching() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 12 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;61.00;63.00;62.00;62.00;63.00; +baseline stats (ms):;avg:;62.20;min:;61.00;max:;63.00; +operation raw measurements (ms):;0.80;-0.20;-0.20;0.80;0.80; +operation stats (ms/op):;avg op:;0.08;min op:;-0.04;max op:;0.16;;CHECK +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayCompare_RAM_mismatching() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 13 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;68.00;48.00;62.00;63.00;63.00; +baseline stats (ms):;avg:;64.00;min:;48.00;max:;68.00;;;CHECK +operation raw measurements (ms):;-2.00;-2.00;-1.00;-1.00;-2.00; +operation stats (ms/op):;avg op:;-0.32;min op:;-0.40;max op:;-0.20; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayCompare_RAM_mismatching() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 13 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;57.00;63.00;62.00;62.00;63.00; +baseline stats (ms):;avg:;62.50;min:;57.00;max:;63.00;;;CHECK +operation raw measurements (ms):;0.50;-0.50;-0.50;0.50;0.50; +operation stats (ms/op):;avg op:;0.02;min op:;-0.10;max op:;0.10;;CHECK +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayCompare_RAM_mismatching() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 13 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;63.00;47.00;62.00;62.00;63.00; +baseline stats (ms):;avg:;62.50;min:;47.00;max:;63.00;;;CHECK +operation raw measurements (ms):;0.50;0.50;-0.50;-0.50;7.50; +operation stats (ms/op):;avg op:;0.30;min op:;-0.10;max op:;1.50;;CHECK +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayCompare_RAM_mismatching() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 13 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;62.00;62.00;63.00;63.00;62.00; +baseline stats (ms):;avg:;62.40;min:;62.00;max:;63.00; +operation raw measurements (ms):;-0.40;0.60;0.60;-0.40;-6.40; +operation stats (ms/op):;avg op:;-0.24;min op:;-1.28;max op:;0.12; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayCompare_RAM_mismatching() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 13 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;62.00;62.00;63.00;63.00;63.00; +baseline stats (ms):;avg:;62.60;min:;62.00;max:;63.00; +operation raw measurements (ms):;-0.60;0.40;0.40;7.40;-10.60; +operation stats (ms/op):;avg op:;-0.12;min op:;-2.12;max op:;1.48; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayCopy_RAM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 01 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;62.00;63.00;63.00;62.00;62.00; +baseline stats (ms):;avg:;62.40;min:;62.00;max:;63.00; +operation raw measurements (ms):;0.60;0.60;-0.40;-0.40;14.60; +operation stats (ms/op):;avg op:;0.60;min op:;-0.08;max op:;2.92;;CHECK +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayCopy_RAM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 01 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;63.00;47.00;63.00;63.00;62.00; +baseline stats (ms):;avg:;62.75;min:;47.00;max:;63.00;;;CHECK +operation raw measurements (ms):;-0.75;0.25;-5.75;-6.75;0.25; +operation stats (ms/op):;avg op:;-0.51;min op:;-1.35;max op:;0.05; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayCopy_RAM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 01 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;62.00;63.00;63.00;62.00;62.00; +baseline stats (ms):;avg:;62.40;min:;62.00;max:;63.00; +operation raw measurements (ms):;0.60;-15.40;-0.40;-0.40;4.60; +operation stats (ms/op):;avg op:;-0.44;min op:;-3.08;max op:;0.92; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayCopy_RAM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 01 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;62.00;62.00;63.00;70.00;58.00; +baseline stats (ms):;avg:;63.00;min:;58.00;max:;70.00;;;CHECK +operation raw measurements (ms):;0.00;-1.00;-1.00;0.00;0.00; +operation stats (ms/op):;avg op:;-0.08;min op:;-0.20;max op:;0.00; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayCopy_RAM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 01 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;62.00;63.00;53.00;62.00;55.00; +baseline stats (ms):;avg:;59.00;min:;53.00;max:;63.00;;;CHECK +operation raw measurements (ms):;4.00;4.00;3.00;3.00;4.00; +operation stats (ms/op):;avg op:;0.72;min op:;0.60;max op:;0.80;;CHECK +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayCopy_EEPROM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 02 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;63.00;47.00;56.00;62.00;47.00; +baseline stats (ms):;avg:;55.00;min:;47.00;max:;63.00;;;CHECK +operation raw measurements (ms):;3.00;7.00;8.00;8.00;7.00; +operation stats (ms/op):;avg op:;1.32;min op:;0.60;max op:;1.60;;CHECK +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayCopy_EEPROM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 02 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;62.00;57.00;47.00;62.00;63.00; +baseline stats (ms):;avg:;61.00;min:;47.00;max:;63.00;;;CHECK +operation raw measurements (ms):;2.00;1.00;1.00;2.00;2.00; +operation stats (ms/op):;avg op:;0.32;min op:;0.20;max op:;0.40;;CHECK +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayCopy_EEPROM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 02 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;56.00;62.00;62.00;62.00;63.00; +baseline stats (ms):;avg:;62.25;min:;56.00;max:;63.00;;;CHECK +operation raw measurements (ms):;12.75;-0.25;-0.25;0.75;-1.25; +operation stats (ms/op):;avg op:;0.47;min op:;-0.25;max op:;2.55;;CHECK +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayCopy_EEPROM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 02 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;63.00;47.00;63.00;47.00;63.00; +baseline stats (ms):;avg:;56.60;min:;47.00;max:;63.00;;;CHECK +operation raw measurements (ms):;5.40;5.40;-1.60;-9.60;-0.60; +operation stats (ms/op):;avg op:;-0.04;min op:;-1.92;max op:;1.08; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayCopy_EEPROM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 02 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;59.00;57.00;58.00;58.00;57.00; +baseline stats (ms):;avg:;57.80;min:;57.00;max:;59.00; +operation raw measurements (ms):;25.20;-1.80;-1.80;4.20;-1.80; +operation stats (ms/op):;avg op:;0.96;min op:;-0.36;max op:;5.04;;CHECK +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayCopy_RAM2EEPROM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 03 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;55.00;55.00;57.00;58.00;58.00; +baseline stats (ms):;avg:;56.60;min:;55.00;max:;58.00; +operation raw measurements (ms):;9.40;3.40;2.40;3.40;2.40; +operation stats (ms/op):;avg op:;0.84;min op:;0.48;max op:;1.88;;CHECK +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayCopy_RAM2EEPROM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 03 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;58.00;57.00;58.00;57.00;58.00; +baseline stats (ms):;avg:;57.60;min:;57.00;max:;58.00; +operation raw measurements (ms):;6.40;-0.60;-0.60;-1.60;-0.60; +operation stats (ms/op):;avg op:;0.12;min op:;-0.32;max op:;1.28;;CHECK +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayCopy_RAM2EEPROM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 03 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;58.00;58.00;58.00;58.00;58.00; +baseline stats (ms):;avg:;58.00;min:;58.00;max:;58.00; +operation raw measurements (ms):;11.00;1.00;1.00;-2.00;0.00; +operation stats (ms/op):;avg op:;0.44;min op:;-0.40;max op:;2.20;;CHECK +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayCopy_RAM2EEPROM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 03 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;57.00;58.00;57.00;56.00;57.00; +baseline stats (ms):;avg:;57.25;min:;56.00;max:;58.00; +operation raw measurements (ms):;11.75;1.75;0.75;2.75;1.75; +operation stats (ms/op):;avg op:;0.75;min op:;0.15;max op:;2.35;;CHECK +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayCopy_RAM2EEPROM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 03 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;57.00;58.00;58.00;58.00;58.00; +baseline stats (ms):;avg:;58.00;min:;57.00;max:;58.00; +operation raw measurements (ms):;19.00;1.00;2.00;1.00;0.00; +operation stats (ms/op):;avg op:;0.92;min op:;0.00;max op:;3.80;;CHECK +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayCopy_EEPROM2RAM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 04 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;58.00;58.00;59.00;58.00;56.00; +baseline stats (ms):;avg:;58.25;min:;56.00;max:;59.00; +operation raw measurements (ms):;-1.25;-1.25;-1.25;-1.25;0.75; +operation stats (ms/op):;avg op:;-0.17;min op:;-0.25;max op:;0.15; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayCopy_EEPROM2RAM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 04 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;58.00;59.00;58.00;58.00;57.00; +baseline stats (ms):;avg:;58.25;min:;57.00;max:;59.00; +operation raw measurements (ms):;1.75;0.75;0.75;-0.25;0.75; +operation stats (ms/op):;avg op:;0.15;min op:;-0.05;max op:;0.35;;CHECK +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayCopy_EEPROM2RAM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 04 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;62.00;57.00;58.00;57.00;58.00; +baseline stats (ms):;avg:;58.40;min:;57.00;max:;62.00;;;CHECK +operation raw measurements (ms):;0.60;6.60;-0.40;-1.40;-1.40; +operation stats (ms/op):;avg op:;0.16;min op:;-0.28;max op:;1.32;;CHECK +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayCopy_EEPROM2RAM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 04 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;63.00;63.00;63.00;62.00;47.00; +baseline stats (ms):;avg:;62.75;min:;47.00;max:;63.00;;;CHECK +operation raw measurements (ms):;-13.75;6.25;-4.75;-10.75;-9.75; +operation stats (ms/op):;avg op:;-1.31;min op:;-2.75;max op:;1.25; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayCopy_EEPROM2RAM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 04 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;53.00;58.00;69.00;47.00;63.00; +baseline stats (ms):;avg:;58.00;min:;47.00;max:;69.00;;;CHECK +operation raw measurements (ms):;3.00;5.00;-5.00;-9.00;10.00; +operation stats (ms/op):;avg op:;0.16;min op:;-1.80;max op:;2.00;;CHECK +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayCopyNonAtomic_RAM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 05 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;47.00;49.00;69.00;53.00;55.00; +baseline stats (ms):;avg:;54.60;min:;47.00;max:;69.00;;;CHECK +operation raw measurements (ms):;-8.60;-0.60;14.40;-1.60;-2.60; +operation stats (ms/op):;avg op:;0.04;min op:;-1.72;max op:;2.88;;CHECK +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayCopyNonAtomic_RAM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 05 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;69.00;53.00;51.00;71.00;60.00; +baseline stats (ms):;avg:;60.80;min:;51.00;max:;71.00;;;CHECK +operation raw measurements (ms):;8.20;9.20;5.20;2.20;1.20; +operation stats (ms/op):;avg op:;1.04;min op:;0.24;max op:;1.84;;CHECK +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayCopyNonAtomic_RAM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 05 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;69.00;46.00;70.00;53.00;63.00; +baseline stats (ms):;avg:;60.20;min:;46.00;max:;70.00;;;CHECK +operation raw measurements (ms):;1.80;1.80;2.80;2.80;-4.20; +operation stats (ms/op):;avg op:;0.20;min op:;-0.84;max op:;0.56;;CHECK +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayCopyNonAtomic_RAM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 05 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;62.00;48.00;62.00;62.00;63.00; +baseline stats (ms):;avg:;62.25;min:;48.00;max:;63.00;;;CHECK +operation raw measurements (ms):;0.75;-0.25;-0.25;0.75;0.75; +operation stats (ms/op):;avg op:;0.07;min op:;-0.05;max op:;0.15;;CHECK +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayCopyNonAtomic_RAM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 05 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;63.00;63.00;62.00;63.00;63.00; +baseline stats (ms):;avg:;63.00;min:;62.00;max:;63.00; +operation raw measurements (ms):;0.00;-1.00;5.00;0.00;1.00; +operation stats (ms/op):;avg op:;0.20;min op:;-0.20;max op:;1.00;;CHECK +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayCopyNonAtomic_EEPROM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 06 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;63.00;62.00;62.00;63.00;63.00; +baseline stats (ms):;avg:;62.60;min:;62.00;max:;63.00; +operation raw measurements (ms):;0.40;-0.60;-0.60;5.40;-5.60; +operation stats (ms/op):;avg op:;-0.04;min op:;-1.12;max op:;1.08; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayCopyNonAtomic_EEPROM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 06 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;62.00;62.00;63.00;63.00;62.00; +baseline stats (ms):;avg:;62.40;min:;62.00;max:;63.00; +operation raw measurements (ms):;-0.40;-0.40;10.60;-4.40;0.60; +operation stats (ms/op):;avg op:;0.24;min op:;-0.88;max op:;2.12;;CHECK +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayCopyNonAtomic_EEPROM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 06 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;47.00;47.00;46.00;63.00;62.00; +baseline stats (ms):;avg:;53.00;min:;46.00;max:;63.00;;;CHECK +operation raw measurements (ms):;9.00;15.00;4.00;10.00;9.00; +operation stats (ms/op):;avg op:;1.88;min op:;0.80;max op:;3.00;;CHECK +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayCopyNonAtomic_EEPROM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 06 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;62.00;63.00;63.00;62.00;62.00; +baseline stats (ms):;avg:;62.40;min:;62.00;max:;63.00; +operation raw measurements (ms):;7.60;-12.40;0.60;0.60;-0.40; +operation stats (ms/op):;avg op:;-0.16;min op:;-2.48;max op:;1.52; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayCopyNonAtomic_EEPROM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 06 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;63.00;63.00;67.00;58.00;63.00; +baseline stats (ms):;avg:;64.00;min:;58.00;max:;67.00;;;CHECK +operation raw measurements (ms):;14.00;-1.00;-2.00;-2.00;-1.00; +operation stats (ms/op):;avg op:;0.32;min op:;-0.40;max op:;2.80;;CHECK +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayCopyNonAtomic_RAM2EEPROM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 07 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;70.00;58.00;59.00;56.00;58.00; +baseline stats (ms):;avg:;60.20;min:;56.00;max:;70.00;;;CHECK +operation raw measurements (ms):;2.80;1.80;2.80;2.80;1.80; +operation stats (ms/op):;avg op:;0.48;min op:;0.36;max op:;0.56;;CHECK +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayCopyNonAtomic_RAM2EEPROM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 07 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;62.00;58.00;53.00;49.00;63.00; +baseline stats (ms):;avg:;57.00;min:;49.00;max:;63.00;;;CHECK +operation raw measurements (ms):;8.00;6.00;6.00;5.00;5.00; +operation stats (ms/op):;avg op:;1.20;min op:;1.00;max op:;1.60;;CHECK +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayCopyNonAtomic_RAM2EEPROM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 07 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;47.00;62.00;62.00;63.00;63.00; +baseline stats (ms):;avg:;62.50;min:;47.00;max:;63.00;;;CHECK +operation raw measurements (ms):;0.50;-0.50;0.50;0.50;0.50; +operation stats (ms/op):;avg op:;0.06;min op:;-0.10;max op:;0.10;;CHECK +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayCopyNonAtomic_RAM2EEPROM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 07 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;62.00;67.00;63.00;63.00;62.00; +baseline stats (ms):;avg:;63.40;min:;62.00;max:;67.00;;;CHECK +operation raw measurements (ms):;-1.40;-1.40;-1.40;-1.40;-3.40; +operation stats (ms/op):;avg op:;-0.36;min op:;-0.68;max op:;-0.28; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayCopyNonAtomic_RAM2EEPROM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 07 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;63.00;63.00;62.00;62.00;63.00; +baseline stats (ms):;avg:;62.60;min:;62.00;max:;63.00; +operation raw measurements (ms):;15.40;2.40;-13.60;0.40;0.40; +operation stats (ms/op):;avg op:;0.20;min op:;-2.72;max op:;3.08;;CHECK +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayCopyNonAtomic_EEPROM2RAM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 08 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;62.00;62.00;63.00;63.00;62.00; +baseline stats (ms):;avg:;62.40;min:;62.00;max:;63.00; +operation raw measurements (ms):;9.60;-5.40;0.60;0.60;-12.40; +operation stats (ms/op):;avg op:;-0.28;min op:;-2.48;max op:;1.92; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayCopyNonAtomic_EEPROM2RAM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 08 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;62.00;63.00;63.00;62.00;62.00; +baseline stats (ms):;avg:;62.40;min:;62.00;max:;63.00; +operation raw measurements (ms):;0.60;0.60;0.60;0.60;-0.40; +operation stats (ms/op):;avg op:;0.08;min op:;-0.08;max op:;0.12;;CHECK +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayCopyNonAtomic_EEPROM2RAM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 08 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;63.00;63.00;62.00;63.00;63.00; +baseline stats (ms):;avg:;63.00;min:;62.00;max:;63.00; +operation raw measurements (ms):;0.00;-1.00;-1.00;0.00;0.00; +operation stats (ms/op):;avg op:;-0.08;min op:;-0.20;max op:;0.00; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayCopyNonAtomic_EEPROM2RAM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 08 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;62.00;66.00;48.00;53.00;63.00; +baseline stats (ms):;avg:;58.40;min:;48.00;max:;66.00;;;CHECK +operation raw measurements (ms):;4.60;3.60;4.60;4.60;4.60; +operation stats (ms/op):;avg op:;0.88;min op:;0.72;max op:;0.92;;CHECK +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayCopyNonAtomic_EEPROM2RAM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 08 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;56.00;62.00;62.00;63.00;63.00; +baseline stats (ms):;avg:;62.50;min:;56.00;max:;63.00;;;CHECK +operation raw measurements (ms):;-0.50;-0.50;0.50;0.50;-0.50; +operation stats (ms/op):;avg op:;-0.02;min op:;-0.10;max op:;0.10; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayFillNonAtomic_RAM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 09 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;44.00;64.00;62.00;62.00;62.00; +baseline stats (ms):;avg:;62.50;min:;44.00;max:;64.00;;;CHECK +operation raw measurements (ms):;0.50;0.50;-0.50;-0.50;0.50; +operation stats (ms/op):;avg op:;0.02;min op:;-0.10;max op:;0.10;;CHECK +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayFillNonAtomic_RAM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 09 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;62.00;62.00;63.00;63.00;62.00; +baseline stats (ms):;avg:;62.40;min:;62.00;max:;63.00; +operation raw measurements (ms):;-0.40;0.60;0.60;-0.40;-3.40; +operation stats (ms/op):;avg op:;-0.12;min op:;-0.68;max op:;0.12; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayFillNonAtomic_RAM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 09 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;62.00;62.00;63.00;64.00;62.00; +baseline stats (ms):;avg:;62.60;min:;62.00;max:;64.00; +operation raw measurements (ms):;0.40;0.40;0.40;-3.60;-0.60; +operation stats (ms/op):;avg op:;-0.12;min op:;-0.72;max op:;0.08; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayFillNonAtomic_RAM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 09 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;62.00;63.00;63.00;62.00;62.00; +baseline stats (ms):;avg:;62.40;min:;62.00;max:;63.00; +operation raw measurements (ms):;0.60;7.60;-6.40;0.60;9.60; +operation stats (ms/op):;avg op:;0.48;min op:;-1.28;max op:;1.92;;CHECK +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayFillNonAtomic_RAM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 09 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;63.00;62.00;62.00;63.00;55.00; +baseline stats (ms):;avg:;62.50;min:;55.00;max:;63.00;;;CHECK +operation raw measurements (ms):;0.50;0.50;-0.50;-0.50;-10.50; +operation stats (ms/op):;avg op:;-0.42;min op:;-2.10;max op:;0.10; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayFillNonAtomic_EEPROM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 0a 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;63.00;63.00;62.00;50.00;46.00; +baseline stats (ms):;avg:;56.80;min:;46.00;max:;63.00;;;CHECK +operation raw measurements (ms):;5.20;6.20;6.20;5.20;5.20; +operation stats (ms/op):;avg op:;1.12;min op:;1.04;max op:;1.24;;CHECK +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayFillNonAtomic_EEPROM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 0a 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;63.00;63.00;71.00;72.00;62.00; +baseline stats (ms):;avg:;66.20;min:;62.00;max:;72.00;;;CHECK +operation raw measurements (ms):;-4.20;-3.20;-3.20;-4.20;-10.20; +operation stats (ms/op):;avg op:;-1.00;min op:;-2.04;max op:;-0.64; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayFillNonAtomic_EEPROM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 0a 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;62.00;73.00;57.00;75.00;63.00; +baseline stats (ms):;avg:;66.00;min:;57.00;max:;75.00;;;CHECK +operation raw measurements (ms):;-3.00;-4.00;-4.00;-3.00;-3.00; +operation stats (ms/op):;avg op:;-0.68;min op:;-0.80;max op:;-0.60; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayFillNonAtomic_EEPROM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 0a 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;43.00;47.00;78.00;62.00;62.00; +baseline stats (ms):;avg:;58.40;min:;43.00;max:;78.00;;;CHECK +operation raw measurements (ms):;4.60;4.60;3.60;3.60;4.60; +operation stats (ms/op):;avg op:;0.84;min op:;0.72;max op:;0.92;;CHECK +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayFillNonAtomic_EEPROM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 0a 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;63.00;62.00;62.00;62.00;60.00; +baseline stats (ms):;avg:;62.25;min:;60.00;max:;63.00; +operation raw measurements (ms):;15.75;-0.25;-0.25;-2.25;-0.25; +operation stats (ms/op):;avg op:;0.51;min op:;-0.45;max op:;3.15;;CHECK +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayCompare_RAM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 0b 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;62.00;62.00;63.00;63.00;62.00; +baseline stats (ms):;avg:;62.40;min:;62.00;max:;63.00; +operation raw measurements (ms):;-0.40;0.60;4.60;-6.40;-0.40; +operation stats (ms/op):;avg op:;-0.08;min op:;-1.28;max op:;0.92; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayCompare_RAM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 0b 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;62.00;63.00;63.00;62.00;62.00; +baseline stats (ms):;avg:;62.40;min:;62.00;max:;63.00; +operation raw measurements (ms):;5.60;0.60;-3.40;15.60;-0.40; +operation stats (ms/op):;avg op:;0.72;min op:;-0.68;max op:;3.12;;CHECK +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayCompare_RAM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 0b 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;63.00;62.00;55.00;62.00;63.00; +baseline stats (ms):;avg:;62.50;min:;55.00;max:;63.00;;;CHECK +operation raw measurements (ms):;0.50;-5.50;-7.50;-1.50;0.50; +operation stats (ms/op):;avg op:;-0.54;min op:;-1.50;max op:;0.10; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayCompare_RAM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 0b 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;62.00;66.00;63.00;62.00;62.00; +baseline stats (ms):;avg:;63.00;min:;62.00;max:;66.00; +operation raw measurements (ms):;4.00;-6.00;-1.00;0.00;0.00; +operation stats (ms/op):;avg op:;-0.12;min op:;-1.20;max op:;0.80; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayCompare_RAM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 0b 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;62.00;63.00;63.00;62.00;69.00; +baseline stats (ms):;avg:;63.80;min:;62.00;max:;69.00;;;CHECK +operation raw measurements (ms):;-3.80;-1.80;-0.80;-0.80;-0.80; +operation stats (ms/op):;avg op:;-0.32;min op:;-0.76;max op:;-0.16; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayCompare_EEPROM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 0c 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;63.00;63.00;62.00;62.00;60.00; +baseline stats (ms):;avg:;62.50;min:;60.00;max:;63.00; +operation raw measurements (ms):;0.50;-0.50;-0.50;0.50;0.50; +operation stats (ms/op):;avg op:;0.02;min op:;-0.10;max op:;0.10;;CHECK +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayCompare_EEPROM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 0c 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;63.00;62.00;62.00;69.00;52.00; +baseline stats (ms):;avg:;64.00;min:;52.00;max:;69.00;;;CHECK +operation raw measurements (ms):;-2.00;-1.00;-1.00;-2.00;-1.00; +operation stats (ms/op):;avg op:;-0.28;min op:;-0.40;max op:;-0.20; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayCompare_EEPROM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 0c 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;63.00;63.00;70.00;64.00;62.00; +baseline stats (ms):;avg:;64.40;min:;62.00;max:;70.00;;;CHECK +operation raw measurements (ms):;-1.40;-1.40;-2.40;-2.40;-1.40; +operation stats (ms/op):;avg op:;-0.36;min op:;-0.48;max op:;-0.28; +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayCompare_EEPROM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 0c 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;62.00;63.00;62.00;63.00;62.00; +baseline stats (ms):;avg:;62.40;min:;62.00;max:;63.00; +operation raw measurements (ms):;-0.40;0.60;0.60;-0.40;-0.40; +operation stats (ms/op):;avg op:;0.00;min op:;-0.08;max op:;0.12;;CHECK +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayCompare_EEPROM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 0c 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;63.00;57.00;47.00;62.00;63.00; +baseline stats (ms):;avg:;61.25;min:;47.00;max:;63.00;;;CHECK +operation raw measurements (ms):;1.75;0.75;0.75;1.75;0.75; +operation stats (ms/op):;avg op:;0.23;min op:;0.15;max op:;0.35;;CHECK +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayCompare_RAM2EEPROM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 0d 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;52.00;53.00;62.00;68.00;62.00; +baseline stats (ms):;avg:;59.40;min:;52.00;max:;68.00;;;CHECK +operation raw measurements (ms):;2.60;3.60;3.60;2.60;2.60; +operation stats (ms/op):;avg op:;0.60;min op:;0.52;max op:;0.72;;CHECK +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayCompare_RAM2EEPROM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 0d 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;57.00;62.00;63.00;63.00;62.00; +baseline stats (ms):;avg:;62.50;min:;57.00;max:;63.00;;;CHECK +operation raw measurements (ms):;-0.50;0.50;7.50;-0.50;0.50; +operation stats (ms/op):;avg op:;0.30;min op:;-0.10;max op:;1.50;;CHECK +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayCompare_RAM2EEPROM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 0d 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;59.00;63.00;62.00;68.00;62.00; +baseline stats (ms):;avg:;62.80;min:;59.00;max:;68.00;;;CHECK +operation raw measurements (ms):;-0.80;0.20;0.20;-0.80;10.20; +operation stats (ms/op):;avg op:;0.36;min op:;-0.16;max op:;2.04;;CHECK +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayCompare_RAM2EEPROM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 0d 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;62.00;62.00;63.00;63.00;71.00; +baseline stats (ms):;avg:;64.20;min:;62.00;max:;71.00;;;CHECK +operation raw measurements (ms):;-2.20;-2.20;-1.20;-1.20;-6.20; +operation stats (ms/op):;avg op:;-0.52;min op:;-1.24;max op:;-0.24; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayCompare_RAM2EEPROM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 0d 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;62.00;54.00;68.00;63.00;62.00; +baseline stats (ms):;avg:;63.75;min:;54.00;max:;68.00;;;CHECK +operation raw measurements (ms):;-1.75;-1.75;-8.75;-1.75;-8.75; +operation stats (ms/op):;avg op:;-0.91;min op:;-1.75;max op:;-0.35; +operation info:;data length;256;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayCompare_EEPROM2RAM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 0e 00 10 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;63.00;63.00;67.00;63.00;62.00; +baseline stats (ms):;avg:;63.60;min:;62.00;max:;67.00;;;CHECK +operation raw measurements (ms):;-1.60;-0.60;-0.60;-6.60;-0.60; +operation stats (ms/op):;avg op:;-0.40;min op:;-1.32;max op:;-0.12; +operation info:;data length;16;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayCompare_EEPROM2RAM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 0e 00 20 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;63.00;63.00;63.00;62.00;62.00; +baseline stats (ms):;avg:;62.60;min:;62.00;max:;63.00; +operation raw measurements (ms):;0.40;0.40;8.40;-14.60;-0.60; +operation stats (ms/op):;avg op:;-0.24;min op:;-2.92;max op:;1.68; +operation info:;data length;32;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayCompare_EEPROM2RAM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 0e 00 40 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;62.00;63.00;63.00;62.00;62.00; +baseline stats (ms):;avg:;62.40;min:;62.00;max:;63.00; +operation raw measurements (ms):;0.60;7.60;-6.40;-0.40;0.60; +operation stats (ms/op):;avg op:;0.08;min op:;-1.28;max op:;1.52;;CHECK +operation info:;data length;64;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayCompare_EEPROM2RAM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 0e 00 80 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;62.00;62.00;62.00;62.00;63.00; +baseline stats (ms):;avg:;62.20;min:;62.00;max:;63.00; +operation raw measurements (ms):;0.80;-20.20;0.80;0.80;-0.20; +operation stats (ms/op):;avg op:;-0.72;min op:;-4.04;max op:;0.16; +operation info:;data length;128;total iterations;25;total invocations;25; + +method name:; UTIL Util_arrayCompare_EEPROM2RAM() +measurement config:;appletPrepareINS;38;appletMeasureINS;50;config;00 21 ff ff ff ff ff ff ff ff 00 0e 01 00 ff ff ff ff 00 05 00 01 +baseline measurements (ms):;62.00;63.00;63.00;62.00;69.00; +baseline stats (ms):;avg:;63.80;min:;62.00;max:;69.00;;;CHECK +operation raw measurements (ms):;-4.80;-19.80;-4.80;-0.80;-1.80; +operation stats (ms/op):;avg op:;-1.28;min op:;-3.96;max op:;-0.16; +operation info:;data length;256;total iterations;25;total invocations;25; + + +UTIL - UTIL - variable data - END + + +UTIL - END + + +SWALGS + + +SWALGS - SWALGS - variable data - BEGIN + + +SWALGS - SWALGS - variable data - END + + +SWALGS - END + + +KEY PAIR + +method name:; ALG_RSA LENGTH_RSA_512 KeyPair_genKeyPair() +measurement config:;appletPrepareINS;36;appletMeasureINS;45;config;00 19 ff ff 00 01 ff ff 02 00 00 01 ff ff ff ff ff ff 00 01 00 01 +baseline measurements (ms):;62.00;83.00;57.00;62.00;78.00; +baseline stats (ms):;avg:;68.40;min:;57.00;max:;83.00;;;CHECK +operation raw measurements (ms):;1978.60;884.60;932.60;865.60;520.60;1197.60;1075.60;481.60;1353.60;1261.60; +operation stats (ms/op):;avg op:;1055.20;min op:;481.60;max op:;1978.60;;CHECK +operation info:;data length;-1;total iterations;10;total invocations;10; + +method name:; ALG_RSA LENGTH_RSA_736 KeyPair_genKeyPair() +measurement config:;appletPrepareINS;36;appletMeasureINS;45;config;00 19 ff ff 00 01 ff ff 02 e0 00 01 ff ff ff ff ff ff 00 01 00 01 +baseline measurements (ms):;62.00;63.00;62.00;63.00;62.00; +baseline stats (ms):;avg:;62.40;min:;62.00;max:;63.00; +operation raw measurements (ms):;1149.60;896.60;2466.60;596.60;922.60;843.60;765.60;2314.60;1612.60;718.60; +operation stats (ms/op):;avg op:;1228.70;min op:;596.60;max op:;2466.60;;CHECK +operation info:;data length;-1;total iterations;10;total invocations;10; + +method name:; ALG_RSA LENGTH_RSA_768 KeyPair_genKeyPair() +measurement config:;appletPrepareINS;36;appletMeasureINS;45;config;00 19 ff ff 00 01 ff ff 03 00 00 01 ff ff ff ff ff ff 00 01 00 01 +baseline measurements (ms):;62.00;63.00;78.00;78.00;62.00; +baseline stats (ms):;avg:;68.60;min:;62.00;max:;78.00;;;CHECK +operation raw measurements (ms):;2234.40;3590.40;1514.40;2363.40;4197.40;1134.40;823.40;992.40;2432.40;936.40; +operation stats (ms/op):;avg op:;2021.90;min op:;823.40;max op:;4197.40;;CHECK +operation info:;data length;-1;total iterations;10;total invocations;10; + +method name:; ALG_RSA LENGTH_RSA_896 KeyPair_genKeyPair() +measurement config:;appletPrepareINS;36;appletMeasureINS;45;config;00 19 ff ff 00 01 ff ff 03 80 00 01 ff ff ff ff ff ff 00 01 00 01 +baseline measurements (ms):;62.00;64.00;78.00;62.00;70.00; +baseline stats (ms):;avg:;67.20;min:;62.00;max:;78.00;;;CHECK +operation raw measurements (ms):;5099.80;2744.80;4614.80;2134.80;2923.80;3977.80;2053.80;4328.80;2173.80;3475.80; +operation stats (ms/op):;avg op:;3352.80;min op:;2053.80;max op:;5099.80;;CHECK +operation info:;data length;-1;total iterations;10;total invocations;10; + +method name:; ALG_RSA LENGTH_RSA_1024 KeyPair_genKeyPair() +measurement config:;appletPrepareINS;36;appletMeasureINS;45;config;00 19 ff ff 00 01 ff ff 04 00 00 01 ff ff ff ff ff ff 00 01 00 01 +baseline measurements (ms):;63.00;62.00;63.00;78.00;63.00; +baseline stats (ms):;avg:;65.80;min:;62.00;max:;78.00;;;CHECK +operation raw measurements (ms):;2669.20;2683.20;1966.20;4088.20;7373.20;2333.20;4134.20;2080.20;1295.20;6512.20; +operation stats (ms/op):;avg op:;3513.50;min op:;1295.20;max op:;7373.20;;CHECK +operation info:;data length;-1;total iterations;10;total invocations;10; + +method name:; ALG_RSA LENGTH_RSA_1280 KeyPair_genKeyPair() +measurement config:;appletPrepareINS;36;appletMeasureINS;45;config;00 19 ff ff 00 01 ff ff 05 00 00 01 ff ff ff ff ff ff 00 01 00 01 +baseline measurements (ms):;63.00;62.00;63.00;80.00;71.00; +baseline stats (ms):;avg:;67.80;min:;62.00;max:;80.00;;;CHECK +operation raw measurements (ms):;7608.20;8644.20;10642.20;3158.20;2393.20;4342.20;3820.20;9312.20;10357.20;4772.20; +operation stats (ms/op):;avg op:;6505.00;min op:;2393.20;max op:;10642.20;;CHECK +operation info:;data length;-1;total iterations;10;total invocations;10; + +method name:; ALG_RSA LENGTH_RSA_1536 KeyPair_genKeyPair() +measurement config:;appletPrepareINS;36;appletMeasureINS;45;config;00 19 ff ff 00 01 ff ff 06 00 00 01 ff ff ff ff ff ff 00 01 00 01 +baseline measurements (ms):;62.00;55.00;63.00;78.00;63.00; +baseline stats (ms):;avg:;64.20;min:;55.00;max:;78.00;;;CHECK +operation raw measurements (ms):;16060.80;6545.80;8408.80;11610.80;7995.80;8009.80;5001.80;9463.80;6329.80;6794.80; +operation stats (ms/op):;avg op:;8622.20;min op:;5001.80;max op:;16060.80;;CHECK +operation info:;data length;-1;total iterations;10;total invocations;10; + +method name:; ALG_RSA LENGTH_RSA_1984 KeyPair_genKeyPair() +measurement config:;appletPrepareINS;36;appletMeasureINS;45;config;00 19 ff ff 00 01 ff ff 07 c0 00 01 ff ff ff ff ff ff 00 01 00 01 +baseline measurements (ms):;63.00;78.00;78.00;63.00;62.00; +baseline stats (ms):;avg:;68.80;min:;62.00;max:;78.00;;;CHECK +operation raw measurements (ms):;31604.20;13975.20;40339.20;14432.20;13946.20;9493.20;53539.20;37267.20;32913.20;13169.20; +operation stats (ms/op):;avg op:;26067.90;min op:;9493.20;max op:;53539.20;;CHECK +operation info:;data length;-1;total iterations;10;total invocations;10; + +method name:; ALG_RSA LENGTH_RSA_2048 KeyPair_genKeyPair() +measurement config:;appletPrepareINS;36;appletMeasureINS;45;config;00 19 ff ff 00 01 ff ff 08 00 00 01 ff ff ff ff ff ff 00 01 00 01 +baseline measurements (ms):;63.00;67.00;68.00;68.00;66.00; +baseline stats (ms):;avg:;67.25;min:;63.00;max:;68.00;;;CHECK +operation raw measurements (ms):;10193.75;30181.75;28413.75;43053.75;14905.75;21385.75;42682.75;7496.75;36065.75;32640.75; +operation stats (ms/op):;avg op:;26702.05;min op:;7496.75;max op:;43053.75;;CHECK +operation info:;data length;-1;total iterations;10;total invocations;10; + +method name:; ALG_RSA LENGTH_RSA_3072 KeyPair_genKeyPair() +measurement config:;appletPrepareINS;36;appletMeasureINS;45;config;00 19 ff ff 00 01 ff ff 0c 00 00 01 ff ff ff ff ff ff 00 01 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA LENGTH_RSA_4096 KeyPair_genKeyPair() +measurement config:;appletPrepareINS;36;appletMeasureINS;45;config;00 19 ff ff 00 01 ff ff 10 00 00 01 ff ff ff ff ff ff 00 01 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_512 KeyPair_genKeyPair() +measurement config:;appletPrepareINS;36;appletMeasureINS;45;config;00 19 ff ff 00 02 ff ff 02 00 00 01 ff ff ff ff ff ff 00 01 00 01 +baseline measurements (ms):;62.00;63.00;63.00;78.00;78.00; +baseline stats (ms):;avg:;68.80;min:;62.00;max:;78.00;;;CHECK +operation raw measurements (ms):;932.20;790.20;1356.20;1051.20;1011.20;572.20;1104.20;440.20;577.20;680.20; +operation stats (ms/op):;avg op:;851.50;min op:;440.20;max op:;1356.20;;CHECK +operation info:;data length;-1;total iterations;10;total invocations;10; + +method name:; ALG_RSA_CRT LENGTH_RSA_736 KeyPair_genKeyPair() +measurement config:;appletPrepareINS;36;appletMeasureINS;45;config;00 19 ff ff 00 02 ff ff 02 e0 00 01 ff ff ff ff ff ff 00 01 00 01 +baseline measurements (ms):;63.00;63.00;78.00;78.00;63.00; +baseline stats (ms):;avg:;69.00;min:;63.00;max:;78.00;;;CHECK +operation raw measurements (ms):;1848.00;1134.00;2666.00;3431.00;1260.00;3138.00;1034.00;1447.00;401.00;3212.00; +operation stats (ms/op):;avg op:;1957.10;min op:;401.00;max op:;3431.00;;CHECK +operation info:;data length;-1;total iterations;10;total invocations;10; + +method name:; ALG_RSA_CRT LENGTH_RSA_768 KeyPair_genKeyPair() +measurement config:;appletPrepareINS;36;appletMeasureINS;45;config;00 19 ff ff 00 02 ff ff 03 00 00 01 ff ff ff ff ff ff 00 01 00 01 +baseline measurements (ms):;62.00;63.00;73.00;62.00;78.00; +baseline stats (ms):;avg:;67.60;min:;62.00;max:;78.00;;;CHECK +operation raw measurements (ms):;1026.40;979.40;1808.40;4912.40;730.40;1342.40;1812.40;4075.40;2600.40;1975.40; +operation stats (ms/op):;avg op:;2126.30;min op:;730.40;max op:;4912.40;;CHECK +operation info:;data length;-1;total iterations;10;total invocations;10; + +method name:; ALG_RSA_CRT LENGTH_RSA_896 KeyPair_genKeyPair() +measurement config:;appletPrepareINS;36;appletMeasureINS;45;config;00 19 ff ff 00 02 ff ff 03 80 00 01 ff ff ff ff ff ff 00 01 00 01 +baseline measurements (ms):;62.00;61.00;53.00;63.00;78.00; +baseline stats (ms):;avg:;63.40;min:;53.00;max:;78.00;;;CHECK +operation raw measurements (ms):;859.60;2917.60;939.60;1599.60;1872.60;1254.60;815.60;3546.60;1396.60;2100.60; +operation stats (ms/op):;avg op:;1730.30;min op:;815.60;max op:;3546.60;;CHECK +operation info:;data length;-1;total iterations;10;total invocations;10; + +method name:; ALG_RSA_CRT LENGTH_RSA_1024 KeyPair_genKeyPair() +measurement config:;appletPrepareINS;36;appletMeasureINS;45;config;00 19 ff ff 00 02 ff ff 04 00 00 01 ff ff ff ff ff ff 00 01 00 01 +baseline measurements (ms):;62.00;72.00;78.00;78.00;57.00; +baseline stats (ms):;avg:;69.40;min:;57.00;max:;78.00;;;CHECK +operation raw measurements (ms):;3773.60;7621.60;2950.60;4517.60;2370.60;2040.60;4851.60;4254.60;5299.60;2593.60; +operation stats (ms/op):;avg op:;4027.40;min op:;2040.60;max op:;7621.60;;CHECK +operation info:;data length;-1;total iterations;10;total invocations;10; + +method name:; ALG_RSA_CRT LENGTH_RSA_1280 KeyPair_genKeyPair() +measurement config:;appletPrepareINS;36;appletMeasureINS;45;config;00 19 ff ff 00 02 ff ff 05 00 00 01 ff ff ff ff ff ff 00 01 00 01 +baseline measurements (ms):;65.00;62.00;63.00;78.00;78.00; +baseline stats (ms):;avg:;69.20;min:;62.00;max:;78.00;;;CHECK +operation raw measurements (ms):;6853.80;4348.80;7230.80;11135.80;8848.80;8871.80;3555.80;1093.80;3202.80;9593.80; +operation stats (ms/op):;avg op:;6473.60;min op:;1093.80;max op:;11135.80;;CHECK +operation info:;data length;-1;total iterations;10;total invocations;10; + +method name:; ALG_RSA_CRT LENGTH_RSA_1536 KeyPair_genKeyPair() +measurement config:;appletPrepareINS;36;appletMeasureINS;45;config;00 19 ff ff 00 02 ff ff 06 00 00 01 ff ff ff ff ff ff 00 01 00 01 +baseline measurements (ms):;63.00;62.00;78.00;78.00;68.00; +baseline stats (ms):;avg:;69.80;min:;62.00;max:;78.00;;;CHECK +operation raw measurements (ms):;4187.20;12705.20;5958.20;22250.20;18293.20;19163.20;11679.20;9476.20;11057.20;4068.20; +operation stats (ms/op):;avg op:;11883.80;min op:;4068.20;max op:;22250.20;;CHECK +operation info:;data length;-1;total iterations;10;total invocations;10; + +method name:; ALG_RSA_CRT LENGTH_RSA_1984 KeyPair_genKeyPair() +measurement config:;appletPrepareINS;36;appletMeasureINS;45;config;00 19 ff ff 00 02 ff ff 07 c0 00 01 ff ff ff ff ff ff 00 01 00 01 +baseline measurements (ms):;63.00;62.00;78.00;65.00;62.00; +baseline stats (ms):;avg:;66.00;min:;62.00;max:;78.00;;;CHECK +operation raw measurements (ms):;11176.00;29490.00;28308.00;14449.00;10886.00;20479.00;16964.00;16526.00;25994.00;43480.00; +operation stats (ms/op):;avg op:;21775.20;min op:;10886.00;max op:;43480.00;;CHECK +operation info:;data length;-1;total iterations;10;total invocations;10; + +method name:; ALG_RSA_CRT LENGTH_RSA_2048 KeyPair_genKeyPair() +measurement config:;appletPrepareINS;36;appletMeasureINS;45;config;00 19 ff ff 00 02 ff ff 08 00 00 01 ff ff ff ff ff ff 00 01 00 01 +baseline measurements (ms):;62.00;78.00;63.00;69.00;73.00; +baseline stats (ms):;avg:;69.00;min:;62.00;max:;78.00;;;CHECK +operation raw measurements (ms):;17796.00;14008.00;41769.00;14948.00;20117.00;28073.00;29527.00;38187.00;20882.00;23841.00; +operation stats (ms/op):;avg op:;24914.80;min op:;14008.00;max op:;41769.00;;CHECK +operation info:;data length;-1;total iterations;10;total invocations;10; + +method name:; ALG_RSA_CRT LENGTH_RSA_3072 KeyPair_genKeyPair() +measurement config:;appletPrepareINS;36;appletMeasureINS;45;config;00 19 ff ff 00 02 ff ff 0c 00 00 01 ff ff ff ff ff ff 00 01 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_RSA_CRT LENGTH_RSA_4096 KeyPair_genKeyPair() +measurement config:;appletPrepareINS;36;appletMeasureINS;45;config;00 19 ff ff 00 02 ff ff 10 00 00 01 ff ff ff ff ff ff 00 01 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_DSA LENGTH_DSA_512 KeyPair_genKeyPair() +measurement config:;appletPrepareINS;36;appletMeasureINS;45;config;00 19 ff ff 00 03 ff ff 02 00 00 01 ff ff ff ff ff ff 00 01 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_DSA LENGTH_DSA_768 KeyPair_genKeyPair() +measurement config:;appletPrepareINS;36;appletMeasureINS;45;config;00 19 ff ff 00 03 ff ff 03 00 00 01 ff ff ff ff ff ff 00 01 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_DSA LENGTH_DSA_1024 KeyPair_genKeyPair() +measurement config:;appletPrepareINS;36;appletMeasureINS;45;config;00 19 ff ff 00 03 ff ff 04 00 00 01 ff ff ff ff ff ff 00 01 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_EC_F2M LENGTH_EC_F2M_113 KeyPair_genKeyPair() +measurement config:;appletPrepareINS;36;appletMeasureINS;45;config;00 19 ff ff 00 04 ff ff 00 71 00 01 ff ff ff ff ff ff 00 01 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_EC_F2M LENGTH_EC_F2M_131 KeyPair_genKeyPair() +measurement config:;appletPrepareINS;36;appletMeasureINS;45;config;00 19 ff ff 00 04 ff ff 00 83 00 01 ff ff ff ff ff ff 00 01 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_EC_F2M LENGTH_EC_F2M_163 KeyPair_genKeyPair() +measurement config:;appletPrepareINS;36;appletMeasureINS;45;config;00 19 ff ff 00 04 ff ff 00 a3 00 01 ff ff ff ff ff ff 00 01 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_EC_F2M LENGTH_EC_F2M_193 KeyPair_genKeyPair() +measurement config:;appletPrepareINS;36;appletMeasureINS;45;config;00 19 ff ff 00 04 ff ff 00 c1 00 01 ff ff ff ff ff ff 00 01 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_EC_FP LENGTH_EC_FP_112 KeyPair_genKeyPair() +measurement config:;appletPrepareINS;36;appletMeasureINS;45;config;00 19 ff ff 00 05 ff ff 00 70 00 01 ff ff ff ff ff ff 00 01 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_EC_FP LENGTH_EC_FP_128 KeyPair_genKeyPair() +measurement config:;appletPrepareINS;36;appletMeasureINS;45;config;00 19 ff ff 00 05 ff ff 00 80 00 01 ff ff ff ff ff ff 00 01 00 01 +NO_SUCH_ALGORITHM + +method name:; ALG_EC_FP LENGTH_EC_FP_160 KeyPair_genKeyPair() +measurement config:;appletPrepareINS;36;appletMeasureINS;45;config;00 19 ff ff 00 05 ff ff 00 a0 00 01 ff ff ff ff ff ff 00 01 00 01 +baseline measurements (ms):;63.00;62.00;62.00;67.00;68.00; +baseline stats (ms):;avg:;64.40;min:;62.00;max:;68.00;;;CHECK +operation raw measurements (ms):;405.60;262.60;259.60;263.60;252.60;245.60;258.60;243.60;266.60;249.60; +operation stats (ms/op):;avg op:;270.80;min op:;243.60;max op:;405.60;;CHECK +operation info:;data length;-1;total iterations;10;total invocations;10; + +method name:; ALG_EC_FP LENGTH_EC_FP_192 KeyPair_genKeyPair() +measurement config:;appletPrepareINS;36;appletMeasureINS;45;config;00 19 ff ff 00 05 ff ff 00 c0 00 01 ff ff ff ff ff ff 00 01 00 01 +baseline measurements (ms):;63.00;78.00;68.00;74.00;78.00; +baseline stats (ms):;avg:;72.20;min:;63.00;max:;78.00;;;CHECK +operation raw measurements (ms):;490.80;301.80;317.80;317.80;317.80;317.80;320.80;317.80;317.80;318.80; +operation stats (ms/op):;avg op:;333.90;min op:;301.80;max op:;490.80;;CHECK +operation info:;data length;-1;total iterations;10;total invocations;10; + +method name:; ALG_EC_FP LENGTH_EC_FP_224 KeyPair_genKeyPair() +measurement config:;appletPrepareINS;36;appletMeasureINS;45;config;00 19 ff ff 00 05 ff ff 00 e0 00 01 ff ff ff ff ff ff 00 01 00 01 +baseline measurements (ms):;63.00;78.00;63.00;63.00;78.00; +baseline stats (ms):;avg:;69.00;min:;63.00;max:;78.00;;;CHECK +operation raw measurements (ms):;571.00;368.00;354.00;351.00;363.00;369.00;367.00;368.00;370.00;371.00; +operation stats (ms/op):;avg op:;385.20;min op:;351.00;max op:;571.00;;CHECK +operation info:;data length;-1;total iterations;10;total invocations;10; + +method name:; ALG_EC_FP LENGTH_EC_FP_256 KeyPair_genKeyPair() +measurement config:;appletPrepareINS;36;appletMeasureINS;45;config;00 19 ff ff 00 05 ff ff 01 00 00 01 ff ff ff ff ff ff 00 01 00 01 +baseline measurements (ms):;62.00;63.00;78.00;63.00;68.00; +baseline stats (ms):;avg:;66.80;min:;62.00;max:;78.00;;;CHECK +operation raw measurements (ms):;683.20;449.20;438.20;443.20;439.20;440.20;436.20;449.20;433.20;444.20; +operation stats (ms/op):;avg op:;465.60;min op:;433.20;max op:;683.20;;CHECK +operation info:;data length;-1;total iterations;10;total invocations;10; + +method name:; ALG_EC_FP LENGTH_EC_FP_384 KeyPair_genKeyPair() +measurement config:;appletPrepareINS;36;appletMeasureINS;45;config;00 19 ff ff 00 05 ff ff 01 80 00 01 ff ff ff ff ff ff 00 01 00 01 +baseline measurements (ms):;295.00;78.00;62.00;71.00;78.00; +baseline stats (ms):;avg:;116.80;min:;62.00;max:;295.00;;;CHECK +operation raw measurements (ms):;1401.20;911.20;904.20;902.20;905.20;901.20;904.20;905.20;900.20;890.20; +operation stats (ms/op):;avg op:;952.50;min op:;890.20;max op:;1401.20;;CHECK +operation info:;data length;-1;total iterations;10;total invocations;10; + +method name:; ALG_EC_FP LENGTH_EC_FP_521 KeyPair_genKeyPair() +measurement config:;appletPrepareINS;36;appletMeasureINS;45;config;00 19 ff ff 00 05 ff ff 02 09 00 01 ff ff ff ff ff ff 00 01 00 01 +baseline measurements (ms):;63.00;62.00;62.00;60.00;62.00; +baseline stats (ms):;avg:;62.25;min:;60.00;max:;63.00; +operation raw measurements (ms):;2814.75;1927.75;1934.75;1929.75;1933.75;1933.75;1940.75;1922.75;1932.75;1927.75; +operation stats (ms/op):;avg op:;2019.85;min op:;1922.75;max op:;2814.75;;CHECK +operation info:;data length;-1;total iterations;10;total invocations;10; + + +KEY PAIR - END + + +KEYAGREEMENT + + +KEYAGREEMENT - ALG_EC_FP LENGTH_EC_FP_112 ALG_EC_SVDP_DH - variable data - BEGIN +For KeyAgreement, variable length perf test is not supported + + +KEYAGREEMENT - ALG_EC_FP LENGTH_EC_FP_112 ALG_EC_SVDP_DH - variable data - END + + +KEYAGREEMENT - ALG_EC_FP LENGTH_EC_FP_128 ALG_EC_SVDP_DH - variable data - BEGIN +For KeyAgreement, variable length perf test is not supported + + +KEYAGREEMENT - ALG_EC_FP LENGTH_EC_FP_128 ALG_EC_SVDP_DH - variable data - END + + +KEYAGREEMENT - ALG_EC_FP LENGTH_EC_FP_160 ALG_EC_SVDP_DH - variable data - BEGIN +For KeyAgreement, variable length perf test is not supported + + +KEYAGREEMENT - ALG_EC_FP LENGTH_EC_FP_160 ALG_EC_SVDP_DH - variable data - END + + +KEYAGREEMENT - ALG_EC_FP LENGTH_EC_FP_192 ALG_EC_SVDP_DH - variable data - BEGIN +For KeyAgreement, variable length perf test is not supported + + +KEYAGREEMENT - ALG_EC_FP LENGTH_EC_FP_192 ALG_EC_SVDP_DH - variable data - END + + +KEYAGREEMENT - ALG_EC_FP LENGTH_EC_FP_224 ALG_EC_SVDP_DH - variable data - BEGIN +For KeyAgreement, variable length perf test is not supported + + +KEYAGREEMENT - ALG_EC_FP LENGTH_EC_FP_224 ALG_EC_SVDP_DH - variable data - END + + +KEYAGREEMENT - ALG_EC_FP LENGTH_EC_FP_256 ALG_EC_SVDP_DH - variable data - BEGIN +For KeyAgreement, variable length perf test is not supported + + +KEYAGREEMENT - ALG_EC_FP LENGTH_EC_FP_256 ALG_EC_SVDP_DH - variable data - END + + +KEYAGREEMENT - ALG_EC_FP LENGTH_EC_FP_384 ALG_EC_SVDP_DH - variable data - BEGIN +For KeyAgreement, variable length perf test is not supported + + +KEYAGREEMENT - ALG_EC_FP LENGTH_EC_FP_384 ALG_EC_SVDP_DH - variable data - END + + +KEYAGREEMENT - ALG_EC_FP LENGTH_EC_FP_521 ALG_EC_SVDP_DH - variable data - BEGIN +For KeyAgreement, variable length perf test is not supported + + +KEYAGREEMENT - ALG_EC_FP LENGTH_EC_FP_521 ALG_EC_SVDP_DH - variable data - END + + +KEYAGREEMENT - ALG_EC_F2M LENGTH_EC_F2M_113 ALG_EC_SVDP_DH - variable data - BEGIN +For KeyAgreement, variable length perf test is not supported + + +KEYAGREEMENT - ALG_EC_F2M LENGTH_EC_F2M_113 ALG_EC_SVDP_DH - variable data - END + + +KEYAGREEMENT - ALG_EC_F2M LENGTH_EC_F2M_131 ALG_EC_SVDP_DH - variable data - BEGIN +For KeyAgreement, variable length perf test is not supported + + +KEYAGREEMENT - ALG_EC_F2M LENGTH_EC_F2M_131 ALG_EC_SVDP_DH - variable data - END + + +KEYAGREEMENT - ALG_EC_F2M LENGTH_EC_F2M_163 ALG_EC_SVDP_DH - variable data - BEGIN +For KeyAgreement, variable length perf test is not supported + + +KEYAGREEMENT - ALG_EC_F2M LENGTH_EC_F2M_163 ALG_EC_SVDP_DH - variable data - END + + +KEYAGREEMENT - ALG_EC_F2M LENGTH_EC_F2M_193 ALG_EC_SVDP_DH - variable data - BEGIN +For KeyAgreement, variable length perf test is not supported + + +KEYAGREEMENT - ALG_EC_F2M LENGTH_EC_F2M_193 ALG_EC_SVDP_DH - variable data - END + + +KEYAGREEMENT - END + + +Total test time:; 1524384662 seconds. + +Total human interventions (retries with physical resets etc.):; 0 + +Total reconnects to card:; 0 \ No newline at end of file