From 5f8de423f190bbb79a62f804151bc24824fa32d8 Mon Sep 17 00:00:00 2001 From: "Matt A. Tobin" Date: Fri, 2 Feb 2018 04:16:08 -0500 Subject: Add m-esr52 at 52.6.0 --- dom/secureelement/gonk/se_consts.js | 68 +++++++++++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 dom/secureelement/gonk/se_consts.js (limited to 'dom/secureelement/gonk/se_consts.js') diff --git a/dom/secureelement/gonk/se_consts.js b/dom/secureelement/gonk/se_consts.js new file mode 100644 index 000000000..13489b7ae --- /dev/null +++ b/dom/secureelement/gonk/se_consts.js @@ -0,0 +1,68 @@ +/* Copyright 2012 Mozilla Foundation and Mozilla contributors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/* Copyright © 2014, Deutsche Telekom, Inc. */ + +// Set to true to debug SecureElement (SE) stack +this.DEBUG_ALL = false; + +// Set individually to debug specific layers +this.DEBUG_CONNECTOR = DEBUG_ALL || false; +this.DEBUG_ACE = DEBUG_ALL || false ; +this.DEBUG_SE = DEBUG_ALL || false ; + +// Maximun logical channels per session. +// For 'uicc' SE type this value is 3, as opening a basic channel' : 0 +// is not allowed for security reasons. In such scenarios, possible +// supplementary logical channels available are : [1, 2, or 3]. +// However,Other SE types may support upto max 4 (including '0'). +this.MAX_CHANNELS_ALLOWED_PER_SESSION = 4; + +this.BASIC_CHANNEL = 0; + +// According GPCardSpec 2.2 +this.MAX_APDU_LEN = 255; // including APDU header + +// CLA (1 byte) + INS (1 byte) + P1 (1 byte) + P2 (1 byte) +this.APDU_HEADER_LEN = 4; + +this.LOGICAL_CHANNEL_NUMBER_LIMIT = 4; +this.SUPPLEMENTARY_LOGICAL_CHANNEL_NUMBER_LIMIT = 20; + +this.MIN_AID_LEN = 5; +this.MAX_AID_LEN = 16; + +this.CLA_GET_RESPONSE = 0x00; + +this.INS_SELECT = 0xA4; +this.INS_MANAGE_CHANNEL = 0x70; +this.INS_GET_RESPONSE = 0xC0; + +// Match the following errors with SecureElement.webidl's SEError enum values +this.ERROR_NONE = ""; +this.ERROR_SECURITY = "SESecurityError"; +this.ERROR_IO = "SEIoError"; +this.ERROR_BADSTATE = "SEBadStateError"; +this.ERROR_INVALIDCHANNEL = "SEInvalidChannelError"; +this.ERROR_INVALIDAPPLICATION = "SEInvalidApplicationError"; +this.ERROR_GENERIC = "SEGenericError"; +this.ERROR_NOTPRESENT = "SENotPresentError"; +this.ERROR_ILLEGALPARAMETER = "SEIllegalParameterError"; + +this.TYPE_UICC = "uicc"; +this.TYPE_ESE = "eSE"; + +// Allow this file to be imported via Components.utils.import(). +this.EXPORTED_SYMBOLS = Object.keys(this); -- cgit v1.2.3