Subversion Repositories php_utils

Rev

Rev 49 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 49 Rev 50
Line 16... Line 16...
16
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17
 * See the License for the specific language governing permissions and
17
 * See the License for the specific language governing permissions and
18
 * limitations under the License.
18
 * limitations under the License.
19
 */
19
 */
20
 
20
 
-
 
21
// Definition of Application Identifiers (AID):
-
 
22
// - ISO 7816-05:1994 (1st ed.), clause 5.2
-
 
23
// - ISO 7816-04:2005 (2nd ed.), clause 8.2.1.2, Annex A.1, Annex D
-
 
24
// - ISO 7816-04:2013 (3rd ed.), clause 12.2.3, Annex A.1, Annex D
-
 
25
// - ISO 7816-04:2020 (4th ed.), clause 12.3.4, Annex A.1, Annex D
-
 
26
 
21
include_once __DIR__ . '/gmp_supplement.inc.php';
27
include_once __DIR__ . '/gmp_supplement.inc.php';
22
include_once __DIR__ . '/misc_functions.inc.php';
28
include_once __DIR__ . '/misc_functions.inc.php';
23
 
29
 
24
# ---
30
# ---
25
 
31
 
Line 811... Line 817...
811
                                        // is the part in case of a multi-part standard).
817
                                        // is the part in case of a multi-part standard).
812
                                        $e8_minmax_measure = 'ARC';
818
                                        $e8_minmax_measure = 'ARC';
813
                                        $e8_min = 3; // 1.0.aaaa   (ISO AAAA)
819
                                        $e8_min = 3; // 1.0.aaaa   (ISO AAAA)
814
                                        $e8_max = 4; // 1.0.aaaa.b (ISO AAAA-B)
820
                                        $e8_max = 4; // 1.0.aaaa.b (ISO AAAA-B)
815
                                } else {
821
                                } else {
816
                                        // This is the inofficial usage of E8+OID
822
                                        // This is the inofficial usage of E8+OID, i.e. using an OID outside of arc 1.0
817
                                        $e8_minmax_measure = 'ARC';
823
                                        $e8_minmax_measure = 'ARC';
818
                                        $e8_min = 2;  // At least 2 arcs (OID x.y)
824
                                        $e8_min = 2;  // At least 2 arcs (OID x.y)
819
                                        $e8_max = -1; // no limit
825
                                        $e8_max = -1; // no limit
820
                                }
826
                                }
821
                        }
827
                        }