From cf7935629ec7ce0fa77d6ec36e8ae356dcc2adb2 Mon Sep 17 00:00:00 2001 From: Adam Janovsky Date: Fri, 16 Apr 2021 16:32:42 +0200 Subject: document on manual labeling, add examples --- README.md | 8 +- cc_oop_demo.py | 61 - examples/cc_cpe_labeling.py | 32 + examples/cc_oop_demo.py | 61 + examples/fips_oop_demo.py | 75 + .../my_debug_datset/web/cc_products_archived.html | 160253 ++++++++++++++++++ examples/readme.md | 44 + fips_oop_demo.py | 75 - 8 files changed, 160472 insertions(+), 137 deletions(-) delete mode 100644 cc_oop_demo.py create mode 100644 examples/cc_cpe_labeling.py create mode 100644 examples/cc_oop_demo.py create mode 100644 examples/fips_oop_demo.py create mode 100644 examples/my_debug_datset/web/cc_products_archived.html create mode 100644 examples/readme.md delete mode 100644 fips_oop_demo.py diff --git a/README.md b/README.md index 552750ab..91663bb6 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ Tool for analysis of security certificates and their security targets (Common Cr This project is developed by the [Centre for Research On Cryptography and Security](https://crocs.fi.muni.cz) at Faculty of Informatics, Masaryk University. -## Usage (CC) +## Install (CC) The tool requires several Python packages as well as the `pdftotext` binary somewhere on the `PATH`. The easiest way to setup the tool is to install it in a virtual environment, e.g.: @@ -20,6 +20,12 @@ python3 -m venv virt pip install -e . ``` +## Examples + +Some examples are documented in [examples](https://github.com/crocs-muni/sec-certs/blob/master/examples/) + +## Old API + The following steps will do a full extraction and analysis of CC certificates: 1. Make a directory in which the certificates will be downloaded and processing will take place. diff --git a/cc_oop_demo.py b/cc_oop_demo.py deleted file mode 100644 index a78fe147..00000000 --- a/cc_oop_demo.py +++ /dev/null @@ -1,61 +0,0 @@ -from sec_certs.dataset import CCDataset -from sec_certs.serialization import CustomJSONEncoder, CustomJSONDecoder -import sec_certs.constants as constants -from pathlib import Path -from datetime import datetime -import logging -import json -import pandas as pd - -logger = logging.getLogger(__name__) - - -def main(): - file_handler = logging.FileHandler(constants.LOGS_FILENAME) - stream_handler = logging.StreamHandler() - formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s') - file_handler.setFormatter(formatter) - stream_handler.setFormatter(formatter) - logging.basicConfig(level=logging.INFO, handlers=[file_handler, stream_handler]) - start = datetime.now() - - # Create empty dataset - dset = CCDataset({}, Path('./debug_dataset'), 'cc_full_dataset', 'sample dataset description') - - # Load metadata for certificates from CSV and HTML sources - dset.get_certs_from_web(to_download=True) - - # explicitly dump to json - dset.to_json(dset.json_path) - - # Load dataset from JSON - new_dset = CCDataset.from_json('./debug_dataset/cc_full_dataset.json') - assert dset == new_dset - - # Download pdfs and update json - dset.download_all_pdfs(update_json=True) - - # Convert pdfs to text and update json - dset.convert_all_pdfs(update_json=True) - - # Extract data from txt files and update json - dset.extract_data(update_json=True) - - # transform to pandas DataFrame - df = dset.to_pandas() - - # Compute heuristics on the dataset - dset.compute_heuristics(update_json=True) - - # Manually verify CPE findings and compute related cves - # dset.manually_verify_cpe_matches(update_json=True) - # dset.compute_related_cves() - - - - end = datetime.now() - logger.info(f'The computation took {(end-start)} seconds.') - - -if __name__ == '__main__': - main() diff --git a/examples/cc_cpe_labeling.py b/examples/cc_cpe_labeling.py new file mode 100644 index 00000000..dcf1e068 --- /dev/null +++ b/examples/cc_cpe_labeling.py @@ -0,0 +1,32 @@ +from datetime import datetime +import logging +from pathlib import Path + +from sec_certs.dataset import CCDataset +import sec_certs.constants as constants + +logger = logging.getLogger(__name__) + + +def main(): + file_handler = logging.FileHandler(constants.LOGS_FILENAME) + stream_handler = logging.StreamHandler() + formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s') + file_handler.setFormatter(formatter) + stream_handler.setFormatter(formatter) + logging.basicConfig(level=logging.INFO, handlers=[file_handler, stream_handler]) + start = datetime.now() + + dset = CCDataset({}, Path('./my_debug_datset'), 'cc_full_dataset', 'Full CC dataset') + dset.get_certs_from_web(to_download=True, update_json=True) + dset.compute_heuristics() + dset.manually_verify_cpe_matches() + + logger.info(f'{dset.json_path} should now contain fully labeled dataset.') + + end = datetime.now() + logger.info(f'The computation took {(end-start)} seconds.') + + +if __name__ == '__main__': + main() diff --git a/examples/cc_oop_demo.py b/examples/cc_oop_demo.py new file mode 100644 index 00000000..a78fe147 --- /dev/null +++ b/examples/cc_oop_demo.py @@ -0,0 +1,61 @@ +from sec_certs.dataset import CCDataset +from sec_certs.serialization import CustomJSONEncoder, CustomJSONDecoder +import sec_certs.constants as constants +from pathlib import Path +from datetime import datetime +import logging +import json +import pandas as pd + +logger = logging.getLogger(__name__) + + +def main(): + file_handler = logging.FileHandler(constants.LOGS_FILENAME) + stream_handler = logging.StreamHandler() + formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s') + file_handler.setFormatter(formatter) + stream_handler.setFormatter(formatter) + logging.basicConfig(level=logging.INFO, handlers=[file_handler, stream_handler]) + start = datetime.now() + + # Create empty dataset + dset = CCDataset({}, Path('./debug_dataset'), 'cc_full_dataset', 'sample dataset description') + + # Load metadata for certificates from CSV and HTML sources + dset.get_certs_from_web(to_download=True) + + # explicitly dump to json + dset.to_json(dset.json_path) + + # Load dataset from JSON + new_dset = CCDataset.from_json('./debug_dataset/cc_full_dataset.json') + assert dset == new_dset + + # Download pdfs and update json + dset.download_all_pdfs(update_json=True) + + # Convert pdfs to text and update json + dset.convert_all_pdfs(update_json=True) + + # Extract data from txt files and update json + dset.extract_data(update_json=True) + + # transform to pandas DataFrame + df = dset.to_pandas() + + # Compute heuristics on the dataset + dset.compute_heuristics(update_json=True) + + # Manually verify CPE findings and compute related cves + # dset.manually_verify_cpe_matches(update_json=True) + # dset.compute_related_cves() + + + + end = datetime.now() + logger.info(f'The computation took {(end-start)} seconds.') + + +if __name__ == '__main__': + main() diff --git a/examples/fips_oop_demo.py b/examples/fips_oop_demo.py new file mode 100644 index 00000000..7015574e --- /dev/null +++ b/examples/fips_oop_demo.py @@ -0,0 +1,75 @@ +from pathlib import Path +from datetime import datetime +import logging +import click +from sec_certs.dataset import FIPSDataset, FIPSAlgorithmDataset +from sec_certs.configuration import config +from sec_certs.helpers import analyze_matched_algs + +@click.command() +@click.option('--config-file', help='Path to config file') +@click.option('--json-file', help='Path to dataset json file') +@click.option('--no-download-algs', help='don\'t download algs', is_flag=True) +def main(config_file, json_file, no_download_algs): + logging.basicConfig(level=logging.INFO) + start = datetime.now() + + # Load config + config.load(config_file if config_file else 'sec_certs/settings.yaml') + + # Create empty dataset + dset = FIPSDataset({}, Path('./fips_dataset'), 'sample_dataset', 'sample dataset description') + + # this is for creating test dataset, usually with small number of pdfs + # dset = FIPSDataset({}, Path('./fips_test_dataset'), 'small dataset', 'small dataset for keyword testing') + + # Load metadata for certificates from CSV and HTML sources + dset.get_certs_from_web(json_file=json_file, redo=True) + + logging.info(f'Finished parsing. Have dataset with {len(dset)} certificates.') + # Dump dataset into JSON + dset.to_json(dset.root_dir / 'fips_full_dataset.json') + logging.info(f'Dataset saved to {dset.root_dir}/fips_full_dataset.json') + + logging.info("Converting pdfs") + dset.convert_all_pdfs() + dset.to_json(dset.root_dir / 'fips_full_dataset.json') + + logging.info("Extracting keywords now.") + dset.extract_keywords(redo=True) + + logging.info(f'Finished extracting certificates for {len(dset.certs)} items.') + logging.info("Dumping dataset again...") + dset.to_json(dset.root_dir / 'fips_full_dataset.json') + + logging.info("Searching for tables in pdfs") + + not_decoded_files = dset.extract_certs_from_tables() + + logging.info(f"Done. Files not decoded: {not_decoded_files}") + dset.to_json(dset.root_dir / 'fips_mentioned.json') + logging.info("Parsing algorithms") + if not no_download_algs: + aset = FIPSAlgorithmDataset({}, Path('fips_dataset/web/algorithms'), 'algorithms', 'sample algs') + aset.get_certs_from_web() + + dset.algorithms = aset + + logging.info("finalizing results.") + + dset.finalize_results() + + logging.info('dump again') + dset.to_json(dset.root_dir / 'fips_full_dataset.json') + + dset.get_dot_graph('different_new') + + data = dset.match_algs() + analyze_matched_algs(data) + + end = datetime.now() + logging.info(f'The computation took {(end - start)} seconds.') + + +if __name__ == '__main__': + main() diff --git a/examples/my_debug_datset/web/cc_products_archived.html b/examples/my_debug_datset/web/cc_products_archived.html new file mode 100644 index 00000000..6c1c1e16 --- /dev/null +++ b/examples/my_debug_datset/web/cc_products_archived.html @@ -0,0 +1,160253 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Archived Certified Products : CC Portal + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + +
+
+ + + +
+ + +
+ +
+ +
+ + +
+ + +

Archived Certified Products

+ + + + + + + + + + + + + + + + + + + + + +

+ expand/collapse all categories +

+ + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ProductVendorProduct
Certificate
Date Certificate
Issued
Certificate
Validity
Expiration
Date
(Archived)
ComplianceScheme
+ This list was generated on Friday, April 16, 2021, at 10:31 AM +
+ Access Control Devices and Systems – 114 Certified Products +
+ + Thycotic Secret Server Government Edition v10.1   + + + Thycotic + + + CCRA Certificate + + 2018-12-212020-12-21 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + BeyondTrust PowerBroker ® UNIX® + Linux® Edition V9.1   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2018-07-27 – BeyondTrust PowerBroker UNIX® + Linux® Edition V10.0
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ BeyondTrust Software, Inc. + + + CCRA Certificate + + 2016-08-302018-08-30 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Fortress Mesh Point ES210, ES520, ES820, ES2440 version 5.4.5   + + + General Dynamics C4 Systems + + + CCRA Certificate + + 2016-05-312018-05-31 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + TightGate-Pro (CC) Version 1.4   + + + m-privacy GmbH + + +   + + 2015-12-022020-12-02 + + + EAL3+ +
ALC_CMS.4 +
ALC_FLR.3 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + SAMSUNG SDS FIDO Server Solution V1.1   +
+ +
+ + + + + + +
+
+ Samsung SDS + + +   + + 2015-09-102020-09-10 + + + EAL2 + + + KR – IT Security Certification Center(ITSCC)
KR
+
+ + Oracle Identity Manager 11g Release 2   + + + Oracle Corporation + + + CCRA Certificate + + 2015-08-282017-08-28 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Citrix XenApp 7.6 Platinum Edition   +
+ +
+ + + + + + +
+
+ Citrix Systems, Inc. + + +   + + 2015-03-192020-03-19 + + + EAL2+ +
ALC_FLR.2 +
+ + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + Citrix XenDesktop 7.6 Platinum Edition   +
+ +
+ + + + + + +
+
+ Citrix Systems, Inc. + + +   + + 2015-03-192020-03-19 + + + EAL2+ +
ALC_FLR.2 +
+ + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + Aruba Mobility Controllers and Access Points 6.3.1.5   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2015-06-02 – Aruba Mobility Controller and Access Point Series
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Aruba Networks + + + CCRA Certificate + + 2014-10-222018-05-31 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + SCAN S3 Security Manager Console Release 14556 (v2.0) integrated with Scan S3 Agent (v2.0.1.6.2)   +
+ +
+ + + + + + +
+
+ Scan Associates Berhad + + +   + + 2014-07-092019-09-01 + + + EAL2 + + + MY – CyberSecurity Malaysia
MY
+
+ + CA Layer 7 SecureSpan SOA Gateway v8.0   + + + CA Technologies + + +   + + 2014-05-302016-05-30 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Symantec™ Security Information Manager v4.8.1   +
+ +
+ + + + + + +
+
+ Symantec Corporation + + + CCRA Certificate + + 2014-02-262019-03-24 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + MQAssureTM NetSignOn v3.0   +
+ +
+ + + + + + +
+
+ MagnaQuest Solutions Sdn Bhd + + +   + + 2013-12-172019-09-01 + + + EAL2 + + + MY – CyberSecurity Malaysia
MY
+
+ + Tivoli Security Policy Manager Version 7.1   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2013-12-162019-09-01 + + + EAL2+ +
ALC_FLR.3 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Hitachi Unified Storage 110 Microprogram Version:0917/A   +
+ +
+ + + + + + +
+
+ Hitachi, Ltd. + + +   + + 2013-12-122019-01-09 + + + EAL2 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Hitachi Unified Storage 130 Microprogram Version:0917/A   +
+ +
+ + + + + + +
+
+ Hitachi, Ltd. + + +   + + 2013-12-122019-01-09 + + + EAL2 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Hitachi Unified Storage 150 Microprogram Version:0917/A   +
+ +
+ + + + + + +
+
+ Hitachi, Ltd. + + +   + + 2013-12-112019-01-09 + + + EAL2 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Centrify Suite version 2013.2   +
+ +
+ + + + + + +
+
+ Centrify Corporation + + + CCRA Certificate + + 2013-10-232018-10-23 + + + EAL2+ +
ALC_FLR.1 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + IBM Logical Partition Architecture for Power7 operating on IBM Power Systems hardware with AH730_087 or AM740_088   +
+ +
+ + + + + + +
+
+ International Business Machine (IBM) Corporation + + +   + + 2013-05-312019-09-01 + + + EAL4+ +
ALC_FLR.2 +
+ + MY – CyberSecurity Malaysia
MY
+
+ + Novell Identity Manager 4.0.2   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2015-03-06 – NetIQ® Identity Manager™ 4.5
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ NetIQ, Incorporated + + +   + + 2013-03-062018-04-19 + + + EAL3+ +
ALC_FLR.1 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + ZTE Access System Series C30X   +
+ +
+ + + + + + +
+
+ ZTE Corporation + + +   + + 2013-03-042019-09-01 + + + EAL2+ +
ALC_FLR.2 +
+ + NO – SERTIT
NO
+
+ + Citrix XenDesktop Version 5.6 Platinum Edition   +
+ +
+ + + + + + +
+
+ Citrix Systems, Inc. + + +   + + 2012-11-302016-01-05 + + + EAL2+ +
ALC_FLR.2 +
+ + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + Brocade Director Models: DCX, DCX-4S, DCX 8510-4, DCX 8510-8; Switch Appliance Models: 300, 5100, 5300, 6510, 7800, 8000, BES; Embedded Blades: 5410, 5424, 5450, 5460, 5470, 5480; Director Blade Models: FC10-6, FC8-16, FC8-32, FC8-48, FC8-64, FC16-32, FC16-48, CP8, CR8, CR4S-8, CR16-4, CR16-8, FCOE10-24, FS8-18, FX8-24   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2013-11-22 – Brocade FOS 7.1 Version 1.0, Dated March 9, 2013
    + Maintenance Report + +
  2. + +
    +
  3. + 2014-02-06 – Brocade Communications Systems, Inc. Directors and Switches w/FOS 7.2.0a Version 3.1, Dated November 26, 2013
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ Brocade Communications Systems, Inc. + + +   + + 2012-09-282015-06-05 + + + EAL4+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + ZTE Base Station Controller Series   +
+ +
+ + + + + + +
+
+ ZTE Corporation + + +   + + 2012-09-142019-09-01 + + + EAL2+ +
ALC_FLR.2 +
+ + NO – SERTIT
NO
+
+ + ZTE Access System Series   +
+ +
+ + + + + + +
+
+ ZTE Corporation + + +   + + 2012-08-172019-09-01 + + + EAL2+ +
ALC_FLR.2 +
+ + NO – SERTIT
NO
+
+ + IBM Tivoli Access Manager for e-business version 6.1.1 FP4 with IBM Tivoli Federated Identity Manager version 6.2.1 FP2   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2012-06-222019-09-01 + + + EAL4+ +
ALC_FLR.3 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + SafeGuard Enterprise – Device Encryption, Version 5.60 for Microsoft Windows XP Professional and Microsoft Windows 7   +
+ +
+ + + + + + +
+
+ Utimaco Safeware AG + + +   + + 2012-06-182019-09-01 + + + EAL4 + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Active Directory Federation Services 2.0   +
+ +
+ + + + + + +
+
+ Microsoft + + +   + + 2012-05-022019-09-01 + + + EAL4+ +
ALC_FLR.3 +
+ + AU – Australasian Certification Authority (ACA)
AU
+
+ + Forefront Identity Manager (FIM) 2010   +
+ +
+ + + + + + +
+
+ Microsoft Corporation + + +   + + 2012-05-022019-09-01 + + + EAL4+ +
ALC_FLR.3 +
+ + AU – Australasian Certification Authority (ACA)
AU
+
+ + NetSignOn Version 2.0   +
+ +
+ + + + + + +
+
+ MagnaQuest Solutions Sdn Bhd + + +   + + 2012-04-162019-09-01 + + + EAL1 + + + MY – CyberSecurity Malaysia
MY
+
+ + Oracle Identity Manager, Release 9.1.0.2   +
+ +
+ + + + + + +
+
+ Oracle Corporation + + +   + + 2012-01-132017-01-13 + + + EAL4+ +
ALC_FLR.3 +
+ + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + Chakra Max Core v2.0   +
+ +
+ + + + + + +
+
+ Warevalley Co., Ltd. + + +   + + 2011-12-292019-06-01 + + + EAL4 + + + KR – IT Security Certification Center(ITSCC)
KR
+
+ + Gigamon LLC GigaVUE 7.2.29 running on GigaVUE-212, GigaVUE-420, and GigaVUE-2404   +
+ +
+ + + + + + +
+
+ Gigamon LLC + + +   + + 2011-11-142014-11-01 + + + EAL2+ +
ALC_FLR.1 +
+ + US – National Information Assurance Partnership
US
+
+ + ForeScout CounterACT v6.3.3-309 with Hotfix v6.11070   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2012-11-13 – ForeScout Technologies, Inc. CounterACT v6.3.4.1
    + Maintenance Report + +
  2. + +
    +
  3. + 2013-03-13 – CounterACT v7.0.0 with Hotfix v1.2
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ ForeScout Technologies, Inc. + + +   + + 2011-10-112015-04-07 + + + EAL4+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Hitachi Virtual Storage Platform, Hitachi Virtual Storage Platform VP9500 Control Program Version: 70-02-05-00/00(R7-02-06A)   +
+ +
+ + + + + + +
+
+ Hitachi, Ltd. + + +   + + 2011-09-302016-10-03 + + + EAL2 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + HP StorageWorks P9500 Disk Array control program Version: 70-02-05-00/00   +
+ +
+ + + + + + +
+
+ Hewlett-Packard Company + + +   + + 2011-09-302016-10-03 + + + EAL2 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Hitachi Command Suite Common Component Version: 7.0.1-00   +
+ +
+ + + + + + +
+
+ Hitachi, Ltd. + + +   + + 2011-08-152016-09-01 + + + EAL2+ +
ALC_FLR.1 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + HP StorageWorks P9000 Command View Advanced Edition Software Common Component Version: 7.0.1-00   +
+ +
+ + + + + + +
+
+ Hewlett-Packard Company + + +   + + 2011-08-152016-09-01 + + + EAL2+ +
ALC_FLR.1 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Concepteers Teleconsole™ Version 2.0   +
+ +
+ + + + + + +
+
+ Concepteers LLC + + +   + + 2011-07-182017-05-15 + + + EAL3 + + + CA – Canadian Common Criteria Scheme
CA
+
+ + Cisco Adaptive Security Appliances (ASA) Firewall and Virtual Private Network (VPN) Platform   + + + Cisco Systems, Inc. + + +   + + 2011-07-112014-11-01 + + + EAL4+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Microsoft Forefront Unified Access Gateway 2010 (CC), Version / Build 4.0.1752.10000   +
+ +
+ + + + + + +
+
+ Microsoft Corporation + + +   + + 2011-06-292019-09-01 + + + EAL2+ +
ALC_FLR.3 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + RSA Adaptive Authentication System v6.0.2.1 with Service Pack 3   +
+ +
+ + + + + + +
+
+ RSA, The Security Division of EMC + + +   + + 2011-04-132015-09-28 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Enterasys Netsight/Network Access Control v3.2.2   +
+ +
+ + + + + + +
+
+ Enterasys Networks, Inc + + +   + + 2011-04-112017-05-15 + + + EAL2+ +
ALC_FLR.1 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + MQAssure™/AppShield v1.2_CR6 Integrated with MQAssure™/IAM v1.0_CR6   +
+ +
+ + + + + + +
+
+ MagnaQuest Solutions Sdn Bhd + + +   + + 2011-04-112019-09-01 + + + EAL4 + + + MY – CyberSecurity Malaysia
MY
+
+ + CA Technologies ACF2 r14 SP1 for z/OS   +
+ +
+ + + + + + +
+
+ CA Technologies + + +   + + 2011-04-042014-11-01 + + + EAL4+ +
ALC_FLR.1 +
ASE_TSS.2 +
+ + US – National Information Assurance Partnership
US
+
+ + CA Technologies Top Secret r14 SP1 for z/OS   +
+ +
+ + + + + + +
+
+ CA Technologies + + +   + + 2011-04-042014-11-01 + + + EAL4+ +
ALC_FLR.1 +
ASE_TSS.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Citrix XenApp 6.0 for Windows Server 2008 R2 - Platinum Edition   +
+ +
+ + + + + + +
+
+ Citrix Systems, Inc. + + +   + + 2011-02-282016-02-28 + + + EAL2+ +
ALC_FLR.2 +
+ + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + Bit9 Parity Version 6.0   +
+ +
+ + + + + + +
+
+ Bit9, Inc. + + +   + + 2011-02-232014-11-01 + + + EAL2+ +
ALC_FLR.1 +
ASE_TSS.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Citrix XenDesktop 4 Platinum Edition   +
+ +
+ + + + + + +
+
+ Citrix Systems, Inc. + + +   + + 2010-08-202016-01-05 + + + EAL2+ +
ALC_FLR.2 +
+ + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + CA Identity Manager r12.5   +
+ +
+ + + + + + +
+
+ CA Technologies + + +   + + 2010-07-272014-11-01 + + + EAL3+ +
ALC_FLR.1 +
+ + US – National Information Assurance Partnership
US
+
+ + CA SiteMinder Federation Security Services r12 sp1 CR3   +
+ +
+ + + + + + +
+
+ CA Technologies + + +   + + 2010-06-282014-11-01 + + + EAL3+ +
ALC_FLR.1 +
+ + US – National Information Assurance Partnership
US
+
+ + CA Access Control r12 sp1   +
+ +
+ + + + + + +
+
+ CA Technologies + + +   + + 2009-12-162014-05-08 + + + EAL3+ + + + US – National Information Assurance Partnership
US
+
+ + RSA® Access Manager v6.1   + + + RSA, The Security Division of EMC + + +   + + 2009-11-162015-09-28 + + + EAL3+ + + + CA – Canadian Common Criteria Scheme
CA
+
+ + SafeGuard Enterprise Device Encryption, Version 5.30   +
+ +
+ + + + + + +
+
+ Utimaco Safeware AG + + +   + + 2009-10-022019-09-01 + + + EAL3+ +
ACM_AUT.1 +
ACM_CAP.4 +
ACM_SCP.2 +
ADO_DEL.2 +
ADV_FSP.2 +
ALC_LCD.1 +
AVA_MSU.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Prodotto gestionale per il Controllo Accessi del Palazzo Esercito v. 2.33   +
+ +
+ + + + + + +
+
+ Siemens IT Solutions & Services S.p.A. + + +   + + 2009-09-232019-09-01 + + + EAL4 + + + IT – OCSI - Organismo di Certificazione della Sicurezza Informatica
IT
+
+ + Motorola RFS7000 RF Switch   + + + Motorola, Inc. + + +   + + 2009-07-092019-09-01 + + + EAL4+ +
ALC_FLR.2 +
+ + NO – SERTIT
NO
+
+ + Motorola WS5100 Wireless Switch   + + + Motorola, Inc. + + +   + + 2009-07-092019-09-01 + + + EAL4+ +
ALC_FLR.2 +
+ + NO – SERTIT
NO
+
+ + Hitachi Adaptable Modular Storage 2300 Microprogram Version:0862/ A-M   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2010-09-28 – Hitachi Adaptable Modular Storage Microprogram Version:0862/A
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ Hitachi, Ltd. + + +   + + 2009-06-292013-01-11 + + + EAL2 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + CA Siteminder Web Access Manager r12 SP1-CR3   +
+ +
+ + + + + + +
+
+ CA Technologies + + +   + + 2009-06-122012-07-20 + + + EAL3+ +
ALC_FLR.1 +
ASE_TSS.2 +
+ + US – National Information Assurance Partnership
US
+
+ + IBM Tivoli Identity Manager, Version 5.0   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2009-06-082019-09-01 + + + EAL3+ +
ALC_FLR.1 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Brocade Director Models: 48000 and DCX; Brocade Switch Models: 200E, 300, 4100, 4900, 5000, 5100, 5300, 7500 and 7500E; Director Blede Models: FC2-16, FC4-16, FC4-32, FC4-46, FC4-18, FC4-32, FC4-48, FR4-18I, FC8-16, FC8-32, FC8-48, CP4, CP8, CR8; Embedded Bledes: 4012, 4016, 4018, 4020 and 4024   +
+ +
+ + + + + + +
+
+ Brocade Communications Systems, Inc. + + +   + + 2009-03-312012-07-20 + + + EAL3+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Check Point VPN-1 Power/UTM NGX R65   + + + Check Point Software Technologies Ltd. + + +   + + 2009-03-252012-07-20 + + + EAL4+ +
ALC_FLR.3 +
+ + US – National Information Assurance Partnership
US
+
+ + nCipher nShield Family of Hardware Security Modules (HSMs) Firmware Version 2.33.60   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2009-06-15 – nCipher nShieldTM Family of Hardware Security Modules Firmware Version 2.33.82
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ nCipher Corporation Ltd. + + +   + + 2009-03-252015-09-28 + + + EAL4+ +
ALC_FLR.1 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + RSA Adaptive Authentication System v6.0.2.1 with Service Pack 1   +
+ +
+ + + + + + +
+
+ RSA, The Security Division of EMC + + +   + + 2009-02-102015-09-28 + + + EAL2+ +
ALC_FLR.1 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Hitachi Storage Command Suite Common Component Version: 6.0.0-01   +
+ +
+ + + + + + +
+
+ Hitachi, Ltd. + + +   + + 2008-12-242014-04-08 + + + EAL2+ +
ALC_FLR.1 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Hitachi Universal Storage Platform V, Hitachi Universal Storage Platform H24000, Hitachi Universal Storage Platform VM, Hitachi Universal Storage Platform H20000 Control Program Version: 60-02-32-00/00(R6-02A-14)   +
+ +
+ + + + + + +
+
+ Hitachi, Ltd. + + +   + + 2008-12-242014-04-08 + + + EAL2 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + AhnLab Suhoshin Absolute v3.0   +
+ +
+ + + + + + +
+
+ AhnLab, Inc. + + +   + + 2008-12-222019-06-01 + + + EAL4 + + + KR – IT Security Certification Center(ITSCC)
KR
+
+ + RedCastle v2.0 for Windows   +
+ +
+ + + + + + +
+
+ REDGATE + + +   + + 2008-12-212019-06-01 + + + EAL3+ +
ADV_IMP.2 +
ALC_TAT.1 +
ATE_DPT.2 +
ADV_LLD.1 +
AVA_VLA.2 +
+ + KR – IT Security Certification Center(ITSCC)
KR
+
+ + Passlogix v-GO Access Accelerator Suite   +
+ +
+ + + + + + +
+
+ Passlogix Inc. + + +   + + 2008-12-162019-09-01 + + + EAL3+ +
ALC_FLR.1 +
+ + AU – Australasian Certification Authority (ACA)
AU
+
+ + Gestione dei dati sanitari, infermerie e CMD   +
+ +
+ + + + + + +
+
+ Blustaff S.p.A. + + +   + + 2008-10-302019-09-01 + + + EAL3 + + + IT – OCSI - Organismo di Certificazione della Sicurezza Informatica
IT
+
+ + OfficeServ 7400 GWIMC   + + + SAMSUNG ELECTRONICS INC. + + +   + + 2008-07-162019-06-01 + + + EAL3+ + + + KR – IT Security Certification Center(ITSCC)
KR
+
+ + Symantec™ Network Access Control Version 11.0   +
+ +
+ + + + + + +
+
+ Symantec Corporation + + +   + + 2008-07-152015-09-28 + + + EAL2+ +
ALC_FLR.2 +
AVA_MSU.1 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + ET 500 Plus   +
+ +
+ + + + + + +
+
+ ITALDATA Ingegneria dell'idea S.p.A. + + +   + + 2008-07-142019-09-01 + + + EAL3 + + + IT – OCSI - Organismo di Certificazione della Sicurezza Informatica
IT
+
+ + IronPort Messaging Gateway Version 5.1.2   +
+ +
+ + + + + + +
+
+ IronPort Systems + + +   + + 2008-06-282012-07-20 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + Oracle Identity and Access Management 10g Release 10.1.4.0.1   +
+ +
+ + + + + + +
+
+ Oracle Corporation UK Limited + + +   + + 2008-06-272013-08-23 + + + EAL4+ +
ALC_FLR.3 +
+ + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + eXshield V1.0.1.R   + + + SAMSUNG NETWORKS INC. + + +   + + 2008-06-132019-06-01 + + + EAL4 + + + KR – IT Security Certification Center(ITSCC)
KR
+
+ + Cisco Systems (1100, 1200, 1300, 1400 series Wireless Devices running IOS 12.3 (8JA2; 3200 series Wireless Router running IOS 12..4(6)XE3; AS5350, 5400, 5850 Universal Gateway running IOS 12.4(17); IAD2430 Integrated Access Device running IOS 12.4(17) with Cisco Secure Access Control Server (ACS) version 4.1.4.13 for Microsoft Windows Server   +
+ +
+ + + + + + +
+
+ Cisco Systems, Inc. + + +   + + 2008-06-092012-07-20 + + + EAL3+ +
ALC_FLR.1 +
+ + US – National Information Assurance Partnership
US
+
+ + Hitachi ID Management Suite Version 3.2   +
+ +
+ + + + + + +
+
+ Hitachi ID Systems, Inc. + + +   + + 2008-05-162015-09-29 + + + EAL2 + + + CA – Canadian Common Criteria Scheme
CA
+
+ + RedCastle v3.0 for Asianux   +
+ +
+ + + + + + +
+
+ REDGATE + + +   + + 2008-04-302019-06-01 + + + EAL4 + + + KR – IT Security Certification Center(ITSCC)
KR
+
+ + SNIPER IPS V6.0.e   + + + NOWCOM co., Ltd + + +   + + 2008-04-112019-06-01 + + + EAL4 + + + KR – IT Security Certification Center(ITSCC)
KR
+
+ + Citrix Presentation Server 4.5   +
+ +
+ + + + + + +
+
+ Citrix Systems, Inc. + + +   + + 2007-07-012013-03-05 + + + EAL2+ +
ALC_FLR.2 +
+ + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + SANRISE Universal Storage Platform CHA/DKA Program, TagmaStore Universal Storage Platform CHA/DKA Program SANRISE Network Storage Controller CHA/DKA Program TagmaStore Network Storage Controller CHA/DKA Program SANRISE H12000 CHA/DKA Program SANRISE H10000 CHA/DKA Program 50-04-34-00/00   +
+ +
+ + + + + + +
+
+ Hitachi, Ltd. + + +   + + 2007-06-272013-10-07 + + + EAL2 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + NXG IPS 6000 V1.6   + + + Secui.com Corp. + + +   + + 2007-06-222019-06-01 + + + EAL4 + + + KR – IT Security Certification Center(ITSCC)
KR
+
+ + REDOWL SecuOS V4.0 for MS   +
+ +
+ + + + + + +
+
+ TSonNET Co., ltd + + +   + + 2007-06-222019-06-01 + + + EAL3+ +
ADV_IMP.2 +
ALC_TAT.1 +
ATE_DPT.2 +
ADV_LLD.1 +
AVA_VLA.2 +
+ + KR – IT Security Certification Center(ITSCC)
KR
+
+ + SECUINXG V1.6   + + + Secui.com Corp. + + +   + + 2007-06-222019-06-01 + + + EAL4 + + + KR – IT Security Certification Center(ITSCC)
KR
+
+ + CA Access Control for Windows r8   +
+ +
+ + + + + + +
+
+ CA Technologies + + +   + + 2007-06-202012-09-06 + + + EAL3 + + + US – National Information Assurance Partnership
US
+
+ + Citrix Password Manager, Enterprise Edition, v4.5   +
+ +
+ + + + + + +
+
+ Citrix Systems, Inc. + + +   + + 2007-06-012013-03-05 + + + EAL2+ +
ALC_FLR.2 +
+ + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + HiCommand Suite Common Component Version: 05-51-01   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2007-12-26 – HiCommand Suite Common Component Version: 05-70-01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Hitachi, Ltd. + + +   + + 2007-05-302013-10-07 + + + EAL2+ +
ALC_FLR.1 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Boeing Secure Network Server (SNS-3010 and SNS-3210)   +
+ +
+ + + + + + +
+
+ The Boeing Company + + +   + + 2007-05-102012-07-20 + + + EAL3+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Xceedium GateKeeper Version 4.0   +
+ +
+ + + + + + +
+
+ Xceedium, Inc. + + +   + + 2007-04-052012-09-07 + + + EAL3 + + + US – National Information Assurance Partnership
US
+
+ + uCosminexus Application Server 07-00   +
+ +
+ + + + + + +
+
+ Hitachi, Ltd. + + +   + + 2007-03-222013-10-07 + + + EAL2+ +
ALC_FLR.1 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + IBM Tivoli Access Manager for e-Business Version 6.0 with Fixpack 3   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2007-03-122019-09-01 + + + EAL3+ +
ALC_FLR.1 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + VoiceIdent Unit 1.0   +
+ +
+ + + + + + +
+
+ Deutsche Telekom AG / T-COM + + +   + + 2007-01-102019-09-01 + + + EAL2+ +
ADV_SPM.1 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + REDOWL secuOS V4.0 for RHEL4   +
+ +
+ + + + + + +
+
+ TSonNET Co., ltd + + +   + + 2007-01-052019-06-01 + + + EAL3+ +
ALC_TAT.1 +
ATE_DPT.2 +
ADV_IMP.2 +
ADV_LLD.1 +
AVA_VLA.2 +
+ + KR – IT Security Certification Center(ITSCC)
KR
+
+ + RedCastle V2.0 for Asianux   +
+ +
+ + + + + + +
+
+ REDGATE + + +   + + 2006-12-222019-06-01 + + + EAL3+ +
ALC_TAT.1 +
ATE_DPT.2 +
ADV_IMP.2 +
ADV_LLD.1 +
AVA_VLA.2 +
+ + KR – IT Security Certification Center(ITSCC)
KR
+
+ + RedCastle V2.0 for RedHat   +
+ +
+ + + + + + +
+
+ REDGATE + + +   + + 2006-12-222019-06-01 + + + EAL3+ +
ADV_IMP.2 +
ALC_TAT.1 +
ATE_DPT.2 +
ADV_LLD.1 +
AVA_VLA.2 +
+ + KR – IT Security Certification Center(ITSCC)
KR
+
+ + SNIPER IPS V5.0(E2000)   +
+ +
+ + + + + + +
+
+ WINS Technet CO., Ltd + + +   + + 2006-10-272019-06-01 + + + EAL4 + + + KR – IT Security Certification Center(ITSCC)
KR
+
+ + SNIPER IPS V5.0(E4000)   +
+ +
+ + + + + + +
+
+ WINS Technet CO., Ltd + + +   + + 2006-10-272019-06-01 + + + EAL4 + + + KR – IT Security Certification Center(ITSCC)
KR
+
+ + IBM Tivoli Access Manager for Operating Systems Version 5.1 with Fixpack 17   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2006-03-242019-09-01 + + + EAL3+ +
ALC_FLR.1 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + IBM Tivoli Identity Manager, Version 4.6   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2006-02-162019-09-01 + + + EAL3+ +
ALC_FLR.1 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Computer Associates eTrust® Admin Version 8.0 with CAM v1.11 patch   +
+ +
+ + + + + + +
+
+ CA Technologies + + +   + + 2006-02-032012-09-06 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + Siebel eBusiness Platform V7.8.2   +
+ +
+ + + + + + +
+
+ Siebel Systems. Inc. + + +   + + 2006-01-012012-09-07 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + Computer Associates eTrust Single Sign-On V7.0 with patch QO67747   +
+ +
+ + + + + + +
+
+ CA Technologies + + +   + + 2005-10-242012-09-06 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + Computer Associates eTrust Single Sign-On V7.0 patch Q067747   +
+ +
+ + + + + + +
+
+ CA Technologies + + +   + + 2005-10-182012-09-06 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + Secutor Systems Inc. Data Vault X4 v1.0   +
+ +
+ + + + + + +
+
+ Secutor Systems Inc + + +   + + 2005-09-232012-09-07 + + + EAL4 + + + US – National Information Assurance Partnership
US
+
+ + Sun Java™ System Identity Manager   +
+ +
+ + + + + + +
+
+ Sun Microsystems, Inc. + + +   + + 2005-08-242012-09-07 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + Citrix MetaFrame Presentation Server 4.0   +
+ +
+ + + + + + +
+
+ Citrix Systems, Inc. + + +   + + 2005-08-012013-03-05 + + + EAL2 + + + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + IBM Tivoli Access Manager for e-Business Version 5.1 with Fixpack 6   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2005-07-272019-09-01 + + + EAL3+ +
ALC_FLR.1 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Tarantella Enterprise 3 Version 3.40.911 with Tarantella Security Pack, Version 3.41.211   +
+ +
+ + + + + + +
+
+ Tarantella LTD + + +   + + 2005-05-132013-03-05 + + + EAL2 + + + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + Reflex Disknet Pro   +
+ +
+ + + + + + +
+
+ Reflex Magnetics Ltd + + +   + + 2005-04-282013-03-05 + + + EAL2 + + + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + SafeGuard Easy 3.20 für Windows 2000   +
+ +
+ + + + + + +
+
+ Utimaco Safeware AG + + +   + + 2004-09-242019-09-01 + + + EAL3 + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + IBM WebSphere Portal Version 5.0.2   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2004-08-232012-09-06 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + Citrix Presentation Server with Feature Release 3   +
+ +
+ + + + + + +
+
+ Citrix Systems, Inc. + + +   + + 2004-04-012013-03-05 + + + EAL2 + + + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + Sentinel Model III   +
+ +
+ + + + + + +
+
+ Delta Security Technologies + + +   + + 2002-09-012012-09-06 + + + EAL4 + + + US – National Information Assurance Partnership
US
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ProductVendorProduct
Certificate
Date Certificate
Issued
Certificate
Validity
Expiration
Date
(Archived)
ComplianceScheme
+ This list was generated on Friday, April 16, 2021, at 10:31 AM +
+ Biometric Systems and Devices – 3 Certified Products +
+ + MorphoSmart Optic 301 Version 1.0   + + + Safran Morpho + + +   + + 2013-01-312019-09-01 + + + PP Compliant +
ADV_ARC.1 +
ADV_FSP.2 +
ADV_TDS.1 +
AGD_OPE.1 +
AGD_PRE.1 +
ALC_CMC.2 +
ALC_CMS.2 +
ALC_DEL.1 +
ALC_FLR.1 +
ASE_CCL.1 +
ASE_ECD.1 +
ASE_INT.1 +
ASE_OBJ.2 +
ASE_REQ.2 +
ASE_SPD.1 +
ASE_TSS.1 +
ATE_COV.1 +
ATE_FUN.1 +
ATE_IND.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Authentest Server v1.2.6   +
+ +
+ + + + + + +
+
+ Authenware Corp. + + +   + + 2010-10-012019-09-01 + + + EAL2+ +
ALC_FLR.1 +
+ + ES – Organismo de Certificación de la Seguridad de las Tecnologías de la Información
ES
+
+ + PalmSecure SDK Version 24 Premium   +
+ +
+ + + + + + +
+
+ Fujitsu Limited + + +   + + 2008-12-302019-09-01 + + + EAL2 + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ProductVendorProduct
Certificate
Date Certificate
Issued
Certificate
Validity
Expiration
Date
(Archived)
ComplianceScheme
+ This list was generated on Friday, April 16, 2021, at 10:31 AM +
+ Boundary Protection Devices and Systems – 184 Certified Products +
+ + DigiSAFE Data Diode model 3282 version 2.2, model 3283 version 2.2, and model 3284 version 2.2   +
+ +
+ + + + + + +
+
+ ST Engineering Electronics + + + CCRA Certificate + + 2019-06-172020-06-10 + + + EAL2 + + + SG – Cyber Security Agency of Singapore
SG
+
+ + genuscreen 5.0   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2016-03-11 – genuscreen 5.0
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ GeNUA mbH + + +   + + 2015-12-032020-12-03 + + + EAL4+ +
ALC_FLR.2 +
ASE_TSS.2 +
AVA_VAN.4 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Cisco Integrated Services Routers (ISR) 4000 Family v3.13.2   + + + Cisco Systems, Inc. + + + CCRA Certificate + + 2015-09-032020-09-03 + + + PP Compliant + + + CA – Canadian Common Criteria Scheme
CA
+
+ + Sophos UTM V9 Packet Filter Version 1.000   +
+ +
+ + + + + + +
+
+ Sophos Technology GmbH + + +   + + 2015-04-212020-04-20 + + + EAL4+ +
ALC_FLR.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Samsung Galaxy S6 & S6 Edge VPN Client   + + + Samsung Electronics Co., Ltd. + + +   + + 2015-04-092017-04-09 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Samsung Galaxy Note 4 with Android 5 VPN Client   + + + Samsung Electronics Co., Ltd. + + +   + + 2015-04-082017-04-08 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Trend Micro Deep Security 9.5 SP1   +
+ +
+ + + + + + +
+
+ Trend Micro Inc. + + + CCRA Certificate + + 2015-03-272020-03-27 + + + EAL2+ +
ALC_FLR.1 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Fortigate UTM appliances running FortiOS 5.0 Patch Release 10   + + + Fortinet, Inc. + + + CCRA Certificate + + 2015-03-242020-04-14 + + + PP Compliant + + + CA – Canadian Common Criteria Scheme
CA
+
+ + Owl DualDiode Communication Cards v.7   +
+ +
+ + + + + + +
+
+ Owl Cyber Defense Solutions, LLC + + + CCRA Certificate + + 2014-12-232019-12-23 + + + EAL2 + + + CA – Canadian Common Criteria Scheme
CA
+
+ + Logiciel Mistral IP +version 2.0.84   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2015-06-10 – ANSSI-CC-2014/91-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Thales Communications & Security + + +   + + 2014-12-222019-12-22 + + + EAL3+ +
ALC_FLR.3 +
AVA_VAN.3 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + TheGreenBow VPN Client(Version : 5.22.005)   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2016-06-03 – ANSSI-CC-2014/89-M02
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ TheGreenBow + + +   + + 2014-10-122019-10-12 + + + EAL3+ +
ALC_FLR.3 +
AVA_VAN.3 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + IAI/MLM Autonomous Air Combat Maneuvering Instrumentation (AACMI) Trusted Data Guard (TDG) v1.0   +
+ +
+ + + + + + +
+
+ Israel Aircraft Industries Ltd / MLM Division + + +   + + 2014-08-132019-08-13 + + + EAL4+ +
ASE_TSS.2 +
+ + NL – NSCIB operated by
NL
+
+ + Pravail APS 2100 Series Appliances Version 5.4   +
+ +
+ + + + + + +
+
+ Arbor Networks Inc + + +   + + 2014-04-112019-09-01 + + + EAL2 + + + TR – TSE (Turkish Standards Institution) Common Criteria Certification Scheme
TR
+
+ + Cisco Integrated Service Routers Generation 2 (ISR G2)   + + + Cisco Systems, Inc. + + +   + + 2014-03-272016-03-27 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + SonicWALL SonicOS Enhanced v5.9.0 on NSA Series and TZ Series Appliances   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2015-04-28 – SonicWALL SonicOS Enhanced v6.2.0 on NSA Series and SM Series Appliances
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ SonicWALL, Inc + + + CCRA Certificate + + 2014-02-052019-07-02 + + + PP Compliant + + + CA – Canadian Common Criteria Scheme
CA
+
+ + Check Point Security Appliances with Security Management and Security Gateway R77 on GAiA   + + + Check Point Software Technologies Ltd. + + +   + + 2013-12-202015-12-20 + + + EAL4+ +
ALC_FLR.3 +
+ + US – National Information Assurance Partnership
US
+
+ + genugate firewall 8.0   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2015-12-09 – genugate firewall 8.0
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ GeNUA mbH + + +   + + 2013-12-172019-09-01 + + + EAL4+ +
ALC_FLR.2 +
ASE_TSS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + McAfee Enterprise Security Manager with Event Receiver, Enterprise Log Manager, Advanced Correlation Engine, Application Data Monitor and Database Event Monitor 9.1   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2014-06-04 – McAfee Enterprise Security Manager avec Event Receiver, Enterprise Log Manager, Advanced Correlation Engine, Application Data Monitor et Database Event Monitor 9.3 (June 2014)
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ McAfee, Inc. + + + CCRA Certificate + + 2013-11-272018-11-27 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + McAfee Nitro Intrusion Prevention System 9.1   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2014-06-27 – McAfee Nitro Intrusion Prevention System 9.3
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ McAfee, Inc. + + + CCRA Certificate + + 2013-11-272018-11-27 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Curtiss-Wright VPX3-685 Secure Routers v2.0.0   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2015-03-24 – Curtiss-Wright VPX3-685/CCA-685 Secure Routers v2.0.0 & 2.1.0
    + Maintenance Report + + Maintenance ST + +
  2. + +
    +
  3. + 2015-03-24 – Curtiss-Wright VPX3-685/CCA-685 Secure Routers v2.0.0 & 2.1.0
    + Maintenance Report + + Maintenance ST + +
  4. + +
+
+ + +
+
+ Curtiss-Wright + + + CCRA Certificate + + 2013-11-052018-11-05 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Cyberoam Firmware v10.5.3   +
+ +
+ + + + + + +
+
+ Cyberoam Technologies + + +   + + 2013-11-052019-09-01 + + + EAL4+ +
ALC_FLR.2 +
+ + ES – Organismo de Certificación de la Seguridad de las Tecnologías de la Información
ES
+
+ + iDeras Unified Threat Management (UTM) v5.02   +
+ +
+ + + + + + +
+
+ Infosys Gateway Sdn Bhd + + +   + + 2013-11-042019-09-01 + + + EAL2 + + + MY – CyberSecurity Malaysia
MY
+
+ + McAfee Network Security Platform 7.1 (M-series Sensors)   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2013-10-25 – McAfee Network Security Platform v7.1.15.2
    + Maintenance Report + +
  2. + +
    +
  3. + 2013-11-29 – McAfee Network Security Platform v7.1.15.2 (November 2013)
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ McAfee, Inc. + + + CCRA Certificate + + 2013-09-102018-09-10 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + AhnLab TrusGuard V2.2   +
+ +
+ + + + + + +
+
+ AhnLab, Inc. + + +   + + 2013-08-122019-06-01 + + + EAL2 + + + KR – IT Security Certification Center(ITSCC)
KR
+
+ + SNIPER IPS-G V8.0   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2014-07-08 – [KECS-NISS-0455a-2013]Maientenance Report(SNIPER IPS-G V8.0)
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ WINS Co., Ltd. + + +   + + 2013-06-212019-06-01 + + + EAL4 + + + KR – IT Security Certification Center(ITSCC)
KR
+
+ + Suite logicielle IPS-Firewall pour boîtiers NETASQ   +
+ +
+ + + + + + +
+
+ Netasq + + +   + + 2013-04-162019-09-01 + + + EAL3+ +
ALC_CMC.4 +
ALC_CMS.4 +
ALC_FLR.3 +
AVA_VAN.3 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Palo Alto Networks PA-500, PA-2000 Series, PA-4000 Series, and PA-5000 Series Next-Generation Firewall with PAN-OS 4.0.12-h2 and User Identification Agent v3.1.2   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2014-09-09 – Palo Alto Networks PA-200, PA-500, PA-2000 Series, PA-3000 Series, PA-4000 Series, and PA-5000 Series Next-Generation Firewall running PAN-OS 5.0.11
    + Maintenance Report + +
  2. + +
    +
  3. + 2015-02-21 – Palo Alto Networks PA-500, PA-2000 Series, PA-4000 Series, and PA-5000 Series Next-Generation Firewall with PAN-OS 4.0.12-h2 and User Identification Agent v3.1.2
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ Palo Alto Networks + + +   + + 2013-04-112015-04-22 + + + EAL4+ +
ALC_FLR.2 +
ATE_DPT.3 +
+ + US – National Information Assurance Partnership
US
+
+ + RioRey Perimeter Protection Platform RE500, RE1500, RX1800, RX2300, RX4400 and RG Series   +
+ +
+ + + + + + +
+
+ RIOREY Incorporated + + +   + + 2013-03-152017-03-27 + + + EAL4+ +
ALC_FLR.1 +
+ + TR – TSE (Turkish Standards Institution) Common Criteria Certification Scheme
TR
+
+ + gateProtect Firewall Packet-Filtering-Core Version 10.3   +
+ +
+ + + + + + +
+
+ gateProtect AG Germany + + +   + + 2013-02-212019-09-01 + + + EAL4+ +
ALC_FLR.1 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Fort Fox Hardware Data Diode (FFHDD), Version: FFHDD2   +
+ +
+ + + + + + +
+
+ Fox-IT B.V. + + +   + + 2012-12-182019-09-01 + + + EAL4+ +
AVA_VAN.4 +
ALC_DVS.2 +
+ + IN – Indian Common Criteria Certification Scheme (IC3S)
IN
+
+ + Check Point Software Blades R7x   + + + Check Point Software Technologies Ltd. + + +   + + 2012-11-262014-12-31 + + + EAL4+ +
ALC_FLR.3 +
+ + US – National Information Assurance Partnership
US
+
+ + McAfee® Web Gateway Version 7.2.0.1   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2013-12-06 – McAfee® Web Gateway version 7.3.2.3
    + Maintenance Report + + Maintenance ST + +
  2. + +
    +
  3. + 2014-12-08 – McAfee Web Gateway version 7.3.2.3.4
    + Maintenance Report + + Maintenance ST + +
  4. + +
    +
  5. + 2014-12-08 – McAfee Web Gateway version 7.4.2.5
    + Maintenance Report + + Maintenance ST + +
  6. + +
+
+ + +
+
+ McAfee, Inc. + + +   + + 2012-11-202018-04-19 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + WAPPLES v4.0   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2013-03-18 – WAPPLES v4.0(WAPPLES-100 eco, WAPPLES-100 eco 1Q266N02, WAPPLES-500, WAPPLES-1000 Type2, WAPPLES-1000 Type2 Plus, WAPPLES-1000 Type2 Plus 2Q250N02, WAPPLES-2000, WAPPLES-2000 2Q266N02)
    + Maintenance Report + + Maintenance ST + +
  2. + +
    +
  3. + 2013-05-31 – WAPPLES v4.0(WAPPLES-50, WAPPLES-50 1D250N02, WAPPLES-5000, WAPPLES-5000 2H306N02, WAPPLES-1200, WAPPLES-1200 1Q320N02, WAPPLES-1200 1Q320N03, WAPPLES-1200 1Q320N04, WAPPLES-2200, WAPPLES-2200 1Q350N02, WAPPLES-2200 1Q350N03, WAPPLES-2200 1Q350N04, WAPPLES-2200 1Q350N05, WAPPLES-2200 1Q350N06) Maintenance Report
    + Maintenance Report + + Maintenance ST + +
  4. + +
    +
  5. + 2014-07-15 – WAPPLES v4.0(WAPPLES-50 1D250N03, WAPPLES-100, WAPPLES-500 1D360N02, WAPPLES-10000, WAPPLES-10000 2T280N02, WAPPLES-1200 1Q320N05, WAPPLES-1200 1Q320N06, WAPPLES-2200 1Q350N07, WAPPLES-2200 1Q350N08, WAPPLES-5200, WAPPLES-5200 2T220N02)1Q350N05, WAPPLES-2200 1Q350N06) Maintenance Report
    + Maintenance Report + + Maintenance ST + +
  6. + +
    +
  7. + 2015-11-30 – WAPPLES v4.0(WAPPLES-1200 1Q320N07, WAPPLES-2200 1Q350N09, WAPPLES-5200 2T220N03, WAPPLES-10000 2T280N03) Maintenance Report
    + Maintenance Report + + Maintenance ST + +
  8. + +
+
+ + +
+
+ PENTA SECURITY SYSTEMS INC. + + +   + + 2012-11-192019-06-01 + + + EAL4 + + + KR – IT Security Certification Center(ITSCC)
KR
+
+ + Check Point IP Appliances with VPN-1 NGX   + + + Check Point Software Technologies Ltd. + + +   + + 2012-11-012014-11-01 + + + EAL4+ +
ALC_FLR.3 +
AVA_VLA.3 +
+ + US – National Information Assurance Partnership
US
+
+ + Check Point VPN-1 NGX   + + + Check Point Software Technologies Ltd. + + +   + + 2012-11-012014-11-01 + + + EAL4+ +
ALC_FLR.3 +
AVA_VLA.3 +
+ + US – National Information Assurance Partnership
US
+
+ + McAfee® Email Gateway (MEG) software v7.0.1, running on appliance models 4000-B, 4500-B, 5000(B, C & C-2U), 5500(B & C), and the Content Security Blade Server   + + + McAfee, Inc. + + +   + + 2012-10-162013-08-21 + + + EAL1 +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Secure Audio Switch (iSAS) Version 1.0   +
+ +
+ + + + + + +
+
+ Frequentis Nachrichtentechnik GmbH + + +   + + 2012-07-272019-09-01 + + + EAL4+ +
ADV_INT.3 +
ASE_TSS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Networks Appliances: ISG 1000, ISG2000, NetScreen 5200, NetScreen 5400, SSG5, SSG20, SSG140, SSG320M, SSG350M, SSG520M and SSG550M with ScreenOS Version 6.3   +
+ +
+ + + + + + +
+
+ Juniper Networks, Inc. + + +   + + 2012-06-282014-11-01 + + + EAL2+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Suite logicielle IPS-Firewall pour boîtiers appliances NETASQ   +
+ +
+ + + + + + +
+
+ Netasq + + +   + + 2012-06-252019-09-01 + + + EAL3+ +
ALC_CMC.4 +
ALC_CMS.4 +
ALC_FLR.3 +
AVA_VAN.3 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Check Point VSX R67 with Provider-1 R71   + + + Check Point Software Technologies Ltd. + + +   + + 2012-06-112014-11-01 + + + EAL4+ +
ALC_FLR.3 +
+ + US – National Information Assurance Partnership
US
+
+ + WatchGuard XTM Firewalls and Fireware XTM Operating System v11.5.1   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2012-09-15 – WatchGuard Technologies, Inc. XTM Firewalls and Fireware XTM Operating System v11.5.5
    + Maintenance Report + + Maintenance ST + +
  2. + +
    +
  3. + 2013-11-28 – WatchGuard XTM Firewalls and Fireware XTM Operating System v11.6.5
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ WatchGuard Technologies, Inc. + + +   + + 2012-05-042017-05-15 + + + EAL4+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + McAfee Firewall Enterprise v8.2.0 and McAfee Firewall Enterprise Control Center v5.2.0   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2012-06-15 – McAfee Firewall Enterprise v8.2.1 and McAfee Firewall Enterprise Control Center v5.2.1 (June 2012)
    + Maintenance Report + +
  2. + +
    +
  3. + 2013-06-28 – McAfee Firewall Enterprise v8.3.1 and McAfee Firewall Enterprise Control Center v5.3.1 Patch 01
    + Maintenance Report + +
  4. + +
    +
  5. + 2014-03-03 – McAfee Firewall Enterprise 8.3.2 and McAfee Firewall Enterprise Control Center v5.3.2 (December 2013)
    + Maintenance Report + + Maintenance ST + +
  6. + +
+
+ + +
+
+ McAfee, Inc. + + +   + + 2012-01-272017-05-15 + + + EAL4+ +
ALC_FLR.3 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + StoneGate Firewall v5.2.5   +
+ +
+ + + + + + +
+
+ Stonesoft Corporation + + +   + + 2012-01-242019-09-01 + + + EAL4+ +
ALC_FLR.1 +
+ + SE – Swedish Certification Body for IT Security FMV/CSEC
SE
+
+ + Fortinet FortiGate™ Unified Threat Management Solutions and FortiOS 4.0™ CC Compliant Firmware   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2013-03-11 – Fortinet FortiGate™ Unified Threat Management Solutions and FortiOS 4.0 MR3 CC Compliant Firmware
    + Maintenance Report + + Maintenance ST + +
  2. + +
    +
  3. + 2013-07-29 – Fortinet FortiGate-VM Unified Threat Management Solutions and FortiOS 4.0 MR3 CC Compliant Firmware
    + Maintenance Report + + Maintenance ST + +
  4. + +
    +
  5. + 2014-01-15 – Fortinet FortiGate™ Unified Threat Management Solutions and FortiOS 4.0™ MR3 CC Compliant Firmware (January 2014)
    + Maintenance Report + + Maintenance ST + +
  6. + +
+
+ + +
+
+ Fortinet, Inc. + + +   + + 2012-01-232017-05-15 + + + EAL4+ +
ALC_FLR.3 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Websense V10000 G2 Web Gateway Appliance v7.6   +
+ +
+ + + + + + +
+
+ Websense, Inc. + + +   + + 2012-01-182017-05-15 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + GeNUGate Firewall 7.0   +
+ +
+ + + + + + +
+
+ GeNUA mbH + + +   + + 2012-01-172019-09-01 + + + EAL4+ +
ALC_FLR.2 +
ASE_TSS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + McAfee Network Security Platform Release 6.1   +
+ +
+ + + + + + +
+
+ McAfee, Inc. + + +   + + 2012-01-132014-11-01 + + + EAL2+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Cisco Aggregation Services Router (ASR) 9000 series with Carrier Routing System (CSR) routers CRS-1 and CRS-3, version 4.1.1   +
+ +
+ + + + + + +
+
+ Cisco Systems, Inc. + + +   + + 2011-12-092014-11-01 + + + EAL3+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Logiciel FAST360   + + + Arkoon Network security + + +   + + 2011-10-252019-09-01 + + + EAL3+ +
ALC_FLR.3 +
AVA_VLA.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Palo Alto Networks, Inc. PA-2000 Series and PA-4000 Series Firewall   +
+ +
+ + + + + + +
+
+ Palo Alto Networks + + +   + + 2011-10-172014-11-01 + + + EAL2 +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Intel® SOA Expressway v2.7.0.4 and Intel® SOA Expressway v2.7.0.4 for Healthcare   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2013-11-29 – Intel® Expressway Service Gateway Version 5.2.0 and Intel® Expressway Service Gateway Version 5.2.0 for Healthcare
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Intel Corporation + + +   + + 2011-09-302017-05-15 + + + EAL4+ +
ALC_FLR.1 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Deep Security 7.5 SP2   + + + Trend Micro Inc. + + +   + + 2011-09-022017-05-15 + + + EAL4+ +
ALC_FLR.1 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Avocent Cybex SwitchView SC680 Model 520-865-501 and Avocent Cybex SwitchView SC780 Model 520-867-501   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2014-08-18 – Cybex SwitchView SC Series Switches for models SC680 and SC780 with revised firmware and hardware
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Avocent Corporation + + +   + + 2011-08-192014-11-01 + + + EAL2 +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Cisco 800, 1900, 2900, 3900 Series Integrated Service Routers (ISR)   + + + Cisco Systems, Inc. + + +   + + 2011-07-312012-07-20 + + + EAL4+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Cisco 5940 Series Embedded Services Router   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2013-04-05 – Cisco ESR 5940 running IOS version 15.2(3)GC
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ Cisco Systems, Inc. + + +   + + 2011-07-052015-04-07 + + + EAL2+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Cisco Aggregation Services Router (ASR) 1000 Series running IOS XE version 2.4.2t   +
+ +
+ + + + + + +
+
+ Cisco Systems, Inc. + + +   + + 2011-06-272014-11-01 + + + EAL4+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Avocent Cybex SwitchView SC Series Switches - SC620 Model 520-866-501, SC640 Model 520-869-501, and SC740 Model 520-868-501   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2013-03-07 – Avocent Cybex SwitchView SC Series Switches (Models SC620 (part number 520-866-502), SC640 (part number 520-869-502), and SC740 (part number 520-868-502))
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Avocent Corporation + + +   + + 2011-06-062015-04-07 + + + EAL2+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Astaro Security Gateway V8 Packet Filter Version 1.000, secunet wall 2 packet filter Version 1.000   +
+ +
+ + + + + + +
+
+ Astaro GmbH & Co. KG + + +   + + 2011-06-032019-09-01 + + + EAL4+ +
ALC_FLR.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Juniper Networks, Inc. STRM Release 2010.0   + + + Juniper Networks, Inc. + + +   + + 2011-04-252014-11-01 + + + EAL2+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Boeing Secure Network Server (SNS-3010/3110/3210)   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2012-02-01 – Boeing Secure Network Server (SNS-3010/3110/3210)
    + Maintenance Report + +
  2. + +
    +
  3. + 2013-10-09 – Boeing Secure Network Server (SNS-3010/3110/3210), Dated 26 March 2013
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ Bodacion Technologies + + +   + + 2011-04-182015-06-05 + + + EAL5+ +
ACM_AUT.2 +
ACM_CAP.5 +
ADO_DEL.3 +
ADV_HLD.4 +
ADV_IMP.3 +
ADV_INT.3 +
ADV_LLD.2 +
ADV_RCR.3 +
ALC_DVS.1 +
ALC_FLR.2 +
ALC_LCD.3 +
ALC_TAT.3 +
ATE_COV.3 +
ATE_DPT.3 +
ATE_FUN.2 +
AVA_CCA.2 +
AVA_MSU.3 +
+ + US – National Information Assurance Partnership
US
+
+ + Fortinet FortiGate™-1240B Unified Threat Management Solutions and FortiOS 4.0 CC Compliant Firmware   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2014-01-29 – Fortinet FortiGate™ Unified Threat Management Solutions and FortiOS 4.0 MR3 CC Compliant Firmware
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ Fortinet, Inc. + + +   + + 2011-03-232017-05-15 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + TechGuard Security PoliWall-CCF v. 2.01.01   +
+ +
+ + + + + + +
+
+ Techguard Security LLC + + +   + + 2011-03-232014-11-01 + + + EAL4+ +
ALC_FLR.2 +
ASE_TSS.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Microsoft Forefront Threat Management Gateway 2010 Version / Build 7.0.7734.100   +
+ +
+ + + + + + +
+
+ Microsoft Corporation + + +   + + 2011-03-142019-09-01 + + + EAL4+ +
ALC_FLR.3 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Fortinet FortiGate™-200B and 620B Unified Threat Management Solution and FortiOS 4.0 CC Compliant Firmware   + + + Fortinet, Inc. + + +   + + 2011-03-022017-05-15 + + + EAL4+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Symantec Brightmail™ Gateway 9.0.1   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2012-02-17 – SymantecTM Messaging Gateway version 9.5.2
    + Maintenance Report + +
  2. + +
    +
  3. + 2012-10-19 – Symantec Messaging Gateway 10.0
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ Symantec Corporation + + +   + + 2011-01-262017-05-15 + + + EAL2 + + + CA – Canadian Common Criteria Scheme
CA
+
+ + McAfee Firewall Enterprise v7.0.1.02HW02   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2011-11-11 – McAfee Firewall Enterprise v7.0.1.03
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ McAfee, Inc. + + +   + + 2011-01-212016-01-21 + + + EAL4+ +
ALC_FLR.3 +
+ + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + Avocent Cybex SwitchView SC320 Model 520-633-501, Avocent Cybex SwitchView SC340 Model 520-634-501 and Avocent Cybex SwitchView SC380 Model 520-635-501   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2014-08-19 – Cybex SwitchView SC Series Switches for models SC320, SC340 and SC380 with revised firmware and hardware
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Avocent Corporation + + +   + + 2010-12-152014-11-01 + + + EAL4+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + McAfee Web Gateway v7.0.1.1   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2011-04-26 – McAfee® Web Gateway v7.1
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ McAfee, Inc. + + +   + + 2010-11-292017-05-15 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + McAfee Email And Web Security Appliance Version 5.5 Patch 2   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2011-03-21 – McAfee® Email and Web Security Appliance v5.6
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ McAfee, Inc. + + +   + + 2010-10-132017-05-15 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + GeNUGate Firewall 6.3   +
+ +
+ + + + + + +
+
+ GeNUA mbH + + +   + + 2010-09-292019-09-01 + + + EAL4+ +
ALC_FLR.3 +
AVA_VAN.5 +
ASE_TSS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + secunet wall packet filter Version 3.0.3   +
+ +
+ + + + + + +
+
+ Secunet Security Networks AG + + +   + + 2010-09-202019-09-01 + + + EAL4+ +
ALC_FLR.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Layer 7 SecureSpan Product Suite v4.1   +
+ +
+ + + + + + +
+
+ Layer 7 Technologies, Inc. + + +   + + 2010-08-132014-11-01 + + + EAL4+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Prism Microsystems EventTracker Version 6.3 Build 93   +
+ +
+ + + + + + +
+
+ Prism Microsystems, Inc. + + +   + + 2010-08-112015-09-29 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Fort Fox Hardware Data Diode, versie FFHDD2+   +
+ +
+ + + + + + +
+
+ Fox-IT B.V. + + +   + + 2010-06-162019-09-07 + + + EAL7+ +
ALC_FLR.3 +
ASE_TSS.2 +
+ + NL – NSCIB operated by
NL
+
+ + Fortinet FortiMail™ v3.0 MR5 Secure Messaging Platform   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2011-10-05 – FortiMail™ V4.0 MR2 Patch 2 Secure Messaging Platform
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Fortinet, Inc. + + +   + + 2010-06-042015-09-29 + + + EAL2+ +
ALC_FLR.1 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + McAfee Network Security Platform Release 5.1   +
+ +
+ + + + + + +
+
+ McAfee, Inc. + + +   + + 2010-05-252014-11-01 + + + EAL2+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Alcatel-Lucent Service Router Operating System (SR OS) v7.0   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2012-06-19 – Alcatel-Lucent 7-Series Service Router Operating System (SROS) v10.0; Service Aggregation Router Operating System (SAR OS) v5.0; and Service Access Switch Operating System (SAS OS) v4.0
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ Alcatel-Lucent + + +   + + 2010-05-072015-09-28 + + + EAL2+ + + + CA – Canadian Common Criteria Scheme
CA
+
+ + Juniper Networks Security Appliances (Netscreen Models ISG 1000, ISG 2000, 5200, and 5400 with Firmware Version 6.2.0r3a; Secure Services Gateway Models SSG5, SSG20, SSG140, SSG320M, SSG350M; SSG520M, and SSG550M with Firmware Version 6.2.0r3)   +
+ +
+ + + + + + +
+
+ Juniper Networks, Inc. + + +   + + 2010-03-262014-11-01 + + + EAL4+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + RSA enVision® platform v4.0 SP 1   +
+ +
+ + + + + + +
+
+ RSA, The Security Division of EMC + + +   + + 2010-01-222015-09-29 + + + EAL3+ + + + CA – Canadian Common Criteria Scheme
CA
+
+ + SECUI NXS W V2.0   +
+ +
+ + + + + + +
+
+ Secui.com Corp. + + +   + + 2009-11-032019-06-01 + + + EAL4 + + + KR – IT Security Certification Center(ITSCC)
KR
+
+ + GeNUScreen 2.0   +
+ +
+ + + + + + +
+
+ GeNUA Gesellschaft für Netzwerk- und UNIX-Administration mbH + + +   + + 2009-10-122019-09-01 + + + EAL4+ +
ALC_FLR.2 +
ASE_TSS.2 +
AVA_VAN.4 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Fort Fox Hardware Data Diode, versie FFHDD2   +
+ +
+ + + + + + +
+
+ Fox-IT B.V. + + +   + + 2009-09-072019-09-07 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + NL – NSCIB operated by
NL
+
+ + IPS-Firewall software suite for NETASQ appliances version 8.0.1.1   +
+ +
+ + + + + + +
+
+ Netasq + + +   + + 2009-08-032019-09-01 + + + EAL4+ + + + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + IPS-Firewall software suite for NETASQ appliances, version 8.0.1.1   +
+ +
+ + + + + + +
+
+ Netasq + + +   + + 2009-07-292019-09-01 + + + EAL3+ + + + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Check Point IPSO 4.2 Build 051c05 (formerly Nokia) with Check Point VPN-1 Power/UTM NGX R65 HFA 30 running on the following platforms: IP150, IP260, IP290, IP390, IP560, IP1220, IP1260, IP1280 and IP2450   + + + Nokia Corporation + + +   + + 2009-03-252012-07-20 + + + EAL4+ +
ALC_FLR.3 +
+ + US – National Information Assurance Partnership
US
+
+ + StoneGate Firewall/VPN   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2010-03-23 – Stonegate Firewall/VPN Version 4.2.2, Build 5708.cc.3.1
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ Stonesoft Corporation + + +   + + 2009-03-132014-03-13 + + + EAL4+ +
ALC_FLR.1 +
+ + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + SECUI NXG W V2.0   +
+ +
+ + + + + + +
+
+ Secui.com Corp. + + +   + + 2009-03-112019-06-01 + + + EAL4 + + + KR – IT Security Certification Center(ITSCC)
KR
+
+ + Microsoft Internet Security and Acceleration Server 2006 Standard / Enterprise Edition, Build 5.0.5720.100   +
+ +
+ + + + + + +
+
+ Microsoft Corporation + + +   + + 2009-02-092019-09-01 + + + EAL4+ +
ALC_FLR.3 +
AVA_VLA.3 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + IntruShield Product Family Intrusion Detection System   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2009-06-02 – (IntruShield I-1200/I-1400 Appliances, Rev. 3 or earlier; I-2600/I-4000 Appliances, Rev. 7 or earlier; I-2700 Appliances, Rev. 1; I-3000/I-4010 Appliances, Rev. 6 or earlier, M-6050/M-8000, Rev. 1.6; IntruShield Security Management System Version 4.1.7.5; The Sensor Builds I-Series Version 4.1.5.27 and M-Series Version 4.1.7.8)
    + Maintenance Report + +
  2. + +
    +
  3. + 2009-11-03 – McAfee IntruShield Intrusion Prevention System Product Family (IntruShield I-1200/I-1400 Appliances, Rev. 3.1 or earlier; I-2600/I-3000/I-4010 Appliances, Rev. 8.0 or earlier; I-2700 Appliance, Rev 2.0 or earlier; I-4000 Appliance, Rev. 10.0 or earlier; M-6050/M-8000 Appliances, Rev. 1.6; IntruShield Security Management System Version 4.1.7.5; The Sensor Builds: I-Series Version 4.1.5.27 and M-Series Version 4.1.7.8)
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ McAfee, Inc. + + +   + + 2009-01-132012-07-20 + + + EAL3 + + + US – National Information Assurance Partnership
US
+
+ + SECUI NXG W V1.0.1   +
+ +
+ + + + + + +
+
+ Secui.com Corp. + + +   + + 2008-12-222019-06-01 + + + EAL4 + + + KR – IT Security Certification Center(ITSCC)
KR
+
+ + WEBS-RAY V2.5   +
+ +
+ + + + + + +
+
+ TSonNET Co., ltd + + +   + + 2008-12-222019-06-01 + + + EAL4 + + + KR – IT Security Certification Center(ITSCC)
KR
+
+ + Fortinet FortiGate™-50B, 200A, 300A, 310B, 500A, 800, 1000A, 3016B, 3600, 3600A, 3810A-E4, 5001SX, 5001FA2, 5001A-DW and FortiWiFi-50B Unified Threat Management Solutions and FortiOSTM 3.0 CC Compliant Firmware   + + + Fortinet, Inc. + + +   + + 2008-11-282015-09-29 + + + EAL4+ +
ALC_FLR.3 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Proofpoint Protection Server® v5.0.4   +
+ +
+ + + + + + +
+
+ Proofpoint, Inc. + + +   + + 2008-09-292015-09-29 + + + EAL2+ +
ALC_FLR.1 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + SonicOS v5.0.1 on NSA Series and TZ Series Appliances   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2010-06-04 – SonicWALL SonicOS v5.5.1
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ SonicWALL, Inc + + +   + + 2008-05-162015-09-29 + + + EAL4+ +
ALC_FLR.1 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + APPGate Security Server   +
+ +
+ + + + + + +
+
+ APPGate Network Security AB + + +   + + 2008-05-052019-09-01 + + + EAL2+ +
ALC_FLR.1 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Tutus Farist 2.5.2 and 2.5.2-R   +
+ +
+ + + + + + +
+
+ Tutus Data AB + + +   + + 2008-02-282019-09-01 + + + EAL4+ +
ALC_FLR.1 +
+ + SE – Swedish Certification Body for IT Security FMV/CSEC
SE
+
+ + Cybex SwitchView SC Series Switches   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2009-04-07 – Cybex SwitchView SC Series Switches adding part numbers 520-563-503, 520-564-503, 520-565-503, 520-566-503, 520-679-502, and 520-680-502
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Avocent Corporation + + +   + + 2008-01-302012-07-20 + + + EAL4+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Sidewinder 7.0.0.02   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2009-12-09 – McAfee Firewall Enterprise (Sidewinder) Security Appliance Models 210, 410, 510, 1100, 2100, 2150, 4150, RM700 (all D, E, and F versions) plus 110D, CR9, and TNG and McAfee Firewall Enterprise (Sidewinder) Software Version 7.0.0.02H11
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Secure Computing Corporation + + +   + + 2007-11-092012-07-20 + + + EAL4+ +
ALC_FLR.3 +
+ + US – National Information Assurance Partnership
US
+
+ + Fortress Wireless Secure Gateway Version 1.0   +
+ +
+ + + + + + +
+
+ Fortress Technologies, Inc. + + +   + + 2007-10-232009-10-23 + + + EAL3 + + + US – National Information Assurance Partnership
US
+
+ + Symantec Mail Security 8300 Series Appliances Version 5.0   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2009-01-14 – Maintenance Addendum SymantecTM Mail Security 8300 Series Appliances and Mail Security Virtual Edition Version 7.7
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ Symantec Corporation + + +   + + 2007-08-222015-09-29 + + + EAL2 + + + CA – Canadian Common Criteria Scheme
CA
+
+ + GeNUScreen 1.0   +
+ +
+ + + + + + +
+
+ GeNUA Gesellschaft für Netzwerk- und UNIX-Administration mbH + + +   + + 2007-07-042019-09-01 + + + EAL4+ +
ALC_FLR.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Outbound Downgrade Filter of ASDE Link-1 Forward Filter version 1.5   +
+ +
+ + + + + + +
+
+ NATO C3 Agency + + +   + + 2007-06-142019-09-01 + + + EAL4 + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + WEBS-RAY 2.0   +
+ +
+ + + + + + +
+
+ TrinitySoft Co.,Ltd + + +   + + 2007-05-112019-06-01 + + + EAL4 + + + KR – IT Security Certification Center(ITSCC)
KR
+
+ + Sidewinder G2 Firewall Version 6.1.2.03 (Sidewinder G2 Security Appliance Model 2150D and Sidewinder G2 Software v6.1.2.03)   + + + Secure Computing Corporation + + +   + + 2007-05-012013-03-05 + + + EAL4+ +
ALC_FLR.3 +
+ + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + IPCOM EX Series Firmware Security Component V1.0.00   +
+ +
+ + + + + + +
+
+ Fujitsu Limited + + +   + + 2007-03-222013-01-07 + + + EAL1 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Microsoft Internet Security and Acceleration Server 2004 – Enterprise Edition – Service Pack 2 – Version 4.0.3443.594   +
+ +
+ + + + + + +
+
+ Microsoft Corporation + + +   + + 2007-03-212019-09-01 + + + EAL4+ +
AVA_VLA.3 +
ALC_FLR.1 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Cisco ASA 5510, 5520, and 5540 Adaptive Security Appliances and Cisco PIX 515, 515E, 525, 535 Security Appliances, Version 7.0(6)   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2008-11-25 – Cisco PIX Security Appliances 515/515E, PIX 525, PIX 535 and Adaptive Security Appliances (ASA) 5510, ASA 5520, and ASA 5540 Version 7.2(2.27)
    + Maintenance Report + +
  2. + +
    +
  3. + 2009-05-15 – Cisco PIX Security Appliances 515/515E, PIX 525, PIX 535 and Adaptive Security Appliances (ASA) 5505, 5510, 5520, 5540, and 5550 Version 7.2(4)18
    + Maintenance Report + +
  4. + +
    +
  5. + 2009-05-15 – Cisco PIX Security Appliances 515/515E, PIX 525, PIX 535 and Adaptive Security Appliances (ASA) 5510, ASA 5520, and ASA 5540 Version 7.2(4.30)
    + Maintenance Report + +
  6. + +
+
+ + +
+
+ Cisco Systems, Inc. + + +   + + 2007-03-092012-09-06 + + + EAL4+ + + + US – National Information Assurance Partnership
US
+
+ + netfence firewall Version 3.0-2   +
+ +
+ + + + + + +
+
+ phion information technologies GmbH + + +   + + 2007-03-082019-09-01 + + + EAL4+ +
AVA_VLA.3 +
ALC_FLR.1 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Cisco Firewall Services Module (FWSM) Version 3.1.(3.17) for: Cisco Catalyst 6500 Switches and Cisco 7600 Series routers   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2007-03-05 – Cisco Firewall Services Module (FWSM) Version 3.1.(4) for Cisco Catalyst 6500 Switches and Cisco 7600 Series Routers with IOS 12.2 (18) SXF5
    + Maintenance Report + +
  2. + +
    +
  3. + 2009-04-08 – Cisco Firewall Services Module (FWSM) Version 3.1(7) for Cisco Catalyst 6500 switches and Cisco 7600 Series routers with IOS 12.2(18)SXF5
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ Cisco Systems, Inc. + + +   + + 2007-03-052012-09-06 + + + EAL4+ + + + US – National Information Assurance Partnership
US
+
+ + Cisco IOS Firewall Version 12.3(14)T and 12.4(4)T   +
+ +
+ + + + + + +
+
+ Cisco Systems, Inc. + + +   + + 2006-11-272012-09-06 + + + EAL4+ +
ALC_FLR.1 +
+ + US – National Information Assurance Partnership
US
+
+ + Vforce 1700 V1.0   +
+ +
+ + + + + + +
+
+ NexG Co., Ltd + + +   + + 2006-10-272019-06-01 + + + EAL3+ +
ADV_IMP.2 +
ADV_LLD.1 +
ALC_TAT.1 +
ATE_DPT.2 +
AVA_VLA.2 +
+ + KR – IT Security Certification Center(ITSCC)
KR
+
+ + Vforce 2200 V1.0   +
+ +
+ + + + + + +
+
+ NexG Co., Ltd + + +   + + 2006-10-272019-06-01 + + + EAL3+ +
ADV_IMP.2 +
ADV_LLD.1 +
ALC_TAT.1 +
ATE_DPT.2 +
AVA_VLA.2 +
+ + KR – IT Security Certification Center(ITSCC)
KR
+
+ + Astaro Security Gateway (ASG) Version 6.300   +
+ +
+ + + + + + +
+
+ Astaro AG + + +   + + 2006-09-252019-09-01 + + + EAL2+ +
ALC_FLR.1 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + 3eTI 3e-525A-3 Access System   +
+ +
+ + + + + + +
+
+ 3e Technologies International, Inc. + + +   + + 2006-09-152012-09-06 + + + EAL2+ +
ACM_CAP.3 +
ACM_SCP.1 +
ALC_FLR.2 +
AVA_MSU.1 +
+ + US – National Information Assurance Partnership
US
+
+ + 3eTI Client CryptoClient Software (3e-10F-C-2 or 3e-10F-A-2)   +
+ +
+ + + + + + +
+
+ 3e Technologies International, Inc. + + +   + + 2006-09-152012-09-06 + + + EAL2+ +
ACM_CAP.3 +
ACM_SCP.1 +
ALC_FLR.2 +
AVA_MSU.1 +
+ + US – National Information Assurance Partnership
US
+
+ + GeNUGate Firewall 6.0   +
+ +
+ + + + + + +
+
+ GeNUA Gesellschaft für Netzwerk- und UNIX-Administration mbH + + +   + + 2006-09-122019-09-01 + + + EAL4+ +
AVA_VLA.4 +
ALC_FLR.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + SafezoneIPS V3.0(SZ-4000)   +
+ +
+ + + + + + +
+
+ LG N-Sys + + +   + + 2006-08-302019-06-01 + + + EAL4 + + + KR – IT Security Certification Center(ITSCC)
KR
+
+ + SECUREWORKS IPSWall 1000 V4.0   +
+ +
+ + + + + + +
+
+ Oullim Inc. + + +   + + 2006-08-302019-06-01 + + + EAL4 + + + KR – IT Security Certification Center(ITSCC)
KR
+
+ + Check Point VPN-1/FireWall-1 NGX   +
+ +
+ + + + + + +
+
+ Check Point Software Technologies Ltd. + + +   + + 2006-08-252012-09-06 + + + EAL4+ +
ALC_FLR.3 +
+ + US – National Information Assurance Partnership
US
+
+ + DeepSecure Release 2.1   +
+ +
+ + + + + + +
+
+ Deep-Secure + + +   + + 2006-08-102013-03-05 + + + EAL4 + + + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + CyberGuard Firewall/VPN 6.2.1   +
+ +
+ + + + + + +
+
+ Secure Computing Corporation + + +   + + 2006-05-312012-09-06 + + + EAL4+ +
ALC_FLR.3 +
AVA_VLA.3 +
+ + US – National Information Assurance Partnership
US
+
+ + Symantec Gateway Security (SGS) v3.0 5000 Series (Firewall Engine Only)   +
+ +
+ + + + + + +
+
+ Symantec Corporation + + +   + + 2006-04-072013-04-30 + + + EAL4 + + + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + Sidewinder G2 Security Appliance Model 2150C with Sidewinder G2 Software v 6.1.0.05.E51   +
+ +
+ + + + + + +
+
+ Secure Computing Corporation + + +   + + 2006-02-162012-09-07 + + + EAL4+ +
ALC_FLR.3 +
AVA_VLA.3 +
+ + US – National Information Assurance Partnership
US
+
+ + Lucent VPN Firewall V7.2 (Patch 292)   +
+ +
+ + + + + + +
+
+ Lucent Technologies + + +   + + 2006-01-192012-09-06 + + + EAL4 + + + US – National Information Assurance Partnership
US
+
+ + Juniper Networks Security Appliances Evaluation Platforms: Juniper Networks NetScreen-5GT, -5XT, -25, -50, -204, -208, -500; Juniper Networks ISG 1000 and 2000; Juniper Networks NetScreen 5200 and 5400. 5GT runs ScreenOS 5.0.0r9.r; ISG 1000 and 2000   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2007-05-14 – Juniper Network Security Appliances, firmware version 5.4.0r4
    + Maintenance Report + +
  2. + +
    +
  3. + 2007-10-30 – Juniper Network Security Appliances, firmware version 5.4.0r4
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ Juniper Networks, Inc. + + +   + + 2005-12-252012-09-06 + + + EAL4+ + + + US – National Information Assurance Partnership
US
+
+ + CyberGuard Firewall/VPN v6.2.1   +
+ +
+ + + + + + +
+
+ CyberGuard Corporation + + +   + + 2005-12-062012-09-06 + + + EAL4+ +
ALC_FLR.3 +
+ + US – National Information Assurance Partnership
US
+
+ + CyberGuard Firewall/VPN Version 6.2.1 Models 1150, 1250, 3100, 3400, 3600, 5100, 7100   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2007-03-06 – Part Number 00-0946396-A Version date 17 November 2006
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ CyberGuard Corporation + + +   + + 2005-12-062012-09-06 + + + EAL4+ +
ALC_FLR.3 +
+ + US – National Information Assurance Partnership
US
+
+ + SecureLogix Corporation™ ETM™ (Enterprise Telephony Management) System Version 5.0.1   +
+ +
+ + + + + + +
+
+ SecureLogix Corporation + + +   + + 2005-11-042015-09-29 + + + EAL2+ +
ALC_DVS.1 +
ACM_CAP.3 +
ACM_SCP.1 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Sidewinder G2 Security Appliance Model 410 with Sidewinder G2 Software v 6.1.0.05.E51   +
+ +
+ + + + + + +
+
+ Secure Computing Corporation + + +   + + 2005-10-272012-09-07 + + + EAL4+ +
ALC_FLR.3 +
AVA_VLA.3 +
+ + US – National Information Assurance Partnership
US
+
+ + Microsoft Internet Security and Acceleration Server 2004 - Standard Edition - Version 4.0.2161.50   +
+ +
+ + + + + + +
+
+ Microsoft Corporation + + +   + + 2005-09-202019-09-01 + + + EAL4+ +
AVA_VLA.3 +
ALC_FLR.1 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Nokia IP130, IP350, and IP380 Firewall/VPN Appliances with Check Point VPN-1/FireWall-1 NG FP2   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2005-11-10 – Nokia IP260, IP265, IP350, IP355, IP380, IP1220, IP1260, IP2250 Firewall/VPN Appliances with Check Point Software Technologies Incorporated VPN-1/FireWall-1 Next Generation AI R55 with HFA_14
    + Maintenance Report + + Maintenance ST + +
  2. + +
    +
  3. + 2005-11-16 – Nokia IP260, IP265, IP350, IP355, IP380, IP1220, IP1260, IP2250 Firewall/VPN Appliances with Check Point Software Technologies Incorporated VPN-1/FireWall-1 NGX (R60)
    + Maintenance Report + + Maintenance ST + +
  4. + +
    +
  5. + 2006-11-10 – IP260, IP265, IP390, IP560, IP1220, IP1260, IP2255 Firewall/VPN Appliances with IPSO v4.1 and Check Point VPN-1/FireWall-1 NGX (R60)
    + Maintenance Report + + Maintenance ST + +
  6. + +
+
+ + +
+
+ Nokia Corporation + + +   + + 2005-09-162015-09-29 + + + EAL4 + + + CA – Canadian Common Criteria Scheme
CA
+
+ + SurfControl E-mail Filter for SMTP Version 5.0, Service Pack 2   +
+ +
+ + + + + + +
+
+ SurfControl plc + + +   + + 2005-09-162015-09-29 + + + EAL2 + + + CA – Canadian Common Criteria Scheme
CA
+
+ + Alteon Switched Firewall Version 2.0.3 with Hotfix 315/NG_FP3_HFA_315   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2005-09-13 – Nortel Switched Firewall version 4.0.3 with Check Point VPN-1/FireWall-1 R55
    + Maintenance Report + + Maintenance ST + +
  2. + +
    +
  3. + 2007-02-07 – Nortel Switched Firewall 5100 Series Version 2.3.5
    + Maintenance Report + + Maintenance ST + +
  4. + +
+
+ + +
+
+ Nortel Networks + + +   + + 2005-09-122015-09-28 + + + EAL4 + + + CA – Canadian Common Criteria Scheme
CA
+
+ + Check Point Software Technologies Incorporated VPN-1/FireWall-1 Next Generation Feature Pack 1   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2005-09-15 – Check Point VPN-1/FireWall-1 Next Generation AI R55 with HFA_14
    + Maintenance Report + +
  2. + +
    +
  3. + 2005-10-13 – Check Point VPN-1/FireWall-1 NGX (R60)
    + Maintenance Report + +
  4. + +
    +
  5. + 2005-11-04 – Check Point VPN-1/FireWall-1 Next Generation AI R55 with HFA_14 on Crossbeam Security Services Switches
    + Maintenance Report + +
  6. + +
    +
  7. + 2006-11-23 – Check Point VPN-1/FireWall-1 NGX (R60) on Crossbeam Systems C-Series & X-Series Security Services Switches
    + Maintenance Report + + Maintenance ST + +
  8. + +
    +
  9. + 2007-07-17 – Check Point Software Technologies Ltd. VPN-1/FireWall-1 Version NGX R65
    + Maintenance Report + + Maintenance ST + +
  10. + +
    +
  11. + 2007-09-07 – Maintenance Addendum Check Point VPN-1/FireWall-1 NGX Version R65 on Crossbeam Systems C-Series & X-Series Security Services Switches
    + Maintenance Report + + Maintenance ST + +
  12. + +
+
+ + +
+
+ Check Point Software Technologies Incorporated + + +   + + 2005-09-122015-09-29 + + + EAL4 + + + CA – Canadian Common Criteria Scheme
CA
+
+ + Firebox® X Family: Core™ and Peak™ Series with Fireware™ Version 8.0   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2006-08-31 – Firebox® X Family: Core™ and Peak™ Series with Fireware™ Version 8.3
    + Maintenance Report + + Maintenance ST + +
  2. + +
    +
  3. + 2007-07-06 – WatchGuard Firebox® X Family: Core™ / Peak™Series and Core™ / Peak™ e-Series with Fireware™ v9.0
    + Maintenance Report + + Maintenance ST + +
  4. + +
+
+ + +
+
+ WatchGuard Technologies, Inc. + + +   + + 2005-07-082015-09-29 + + + EAL4 + + + CA – Canadian Common Criteria Scheme
CA
+
+ + CyberGuard Firewall/VPN Version 6.1.2   +
+ +
+ + + + + + +
+
+ CyberGuard Corporation + + +   + + 2005-06-242012-09-06 + + + EAL4+ +
ALC_FLR.3 +
+ + US – National Information Assurance Partnership
US
+
+ + Sidewinder G2 Security Appliance Model 2150 with Sidewinder G2 Software v 6.1.0.05.E51   +
+ +
+ + + + + + +
+
+ Secure Computing Corporation + + +   + + 2005-05-102012-09-07 + + + EAL4+ +
ALC_FLR.3 +
AVA_VLA.3 +
+ + US – National Information Assurance Partnership
US
+
+ + Symantec Gateway Security 400 Series v2.1 (Firewall Engine Only)   +
+ +
+ + + + + + +
+
+ Symantec Corporation + + +   + + 2005-05-012013-03-05 + + + EAL2 + + + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + Suite logicielle IPS-Firewall Netasq version 5   +
+ +
+ + + + + + +
+
+ Netasq + + +   + + 2005-03-252019-09-01 + + + EAL2+ +
ADV_IMP.1 +
ALC_DVS.1 +
ADV_HLD.2 +
ADV_LLD.1 +
ALC_FLR.3 +
ALC_TAT.1 +
AVA_MSU.1 +
AVA_VLA.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Fortinet FortiGate™ -50A, 60, 100A, 200A, 300A, 800, 3000, 3600,5001 Antivirus Firewalls and FortiOS™ 2.80 Firmware   +
+ +
+ + + + + + +
+
+ Fortinet, Inc. + + +   + + 2005-02-282015-09-29 + + + EAL4+ +
ALC_FLR.3 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + DeepSecure Release 2.0.0 E2   +
+ +
+ + + + + + +
+
+ Deep-Secure + + +   + + 2005-02-222013-03-05 + + + EAL4 + + + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + Arkoon Fast Firewall v3.0/11 (configurations A200, A500, A2000 et A5000)   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2007-06-07 – Rapport de maintenance M-2007/11
    + Maintenance Report + +
  2. + +
    +
  3. + 2008-06-11 – Rapport de maintenance DCSSI-2004/33-M02
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ Arkoon Network security + + +   + + 2004-11-232019-09-01 + + + EAL2+ +
ALC_FLR.3 +
AVA_VLA.2 +
AVA_MSU.1 +
ADV_HLD.2 +
ALC_DVS.1 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + BorderWare MXtreme Mail Firewall Version 3.1   +
+ +
+ + + + + + +
+
+ Borderware Technologies + + +   + + 2004-07-302013-03-05 + + + EAL4+ +
ALC_FLR.1 +
AVA_VLA.3 +
+ + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + Marconi SA-400 Firewall Version 1.3   +
+ +
+ + + + + + +
+
+ Marconi Corporation plc + + +   + + 2004-07-072012-09-06 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + Sidewinder G2 Security Appliance Models 210, 310, 315, 410, 415, 510, 515, 1100, 1150, 2150, 4150 and Sidewinder G2 Software v6.1   +
+ +
+ + + + + + +
+
+ McAfee, Inc. + + +   + + 2004-07-012013-03-05 + + + EAL4+ +
ALC_FLR.3 +
+ + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + Symantec Enterprise Firewall v8.0   +
+ +
+ + + + + + +
+
+ Symantec Corporation + + +   + + 2004-07-012013-03-05 + + + EAL4 +
ALC_FLR.1 +
+ + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + Symantec Gateway Security v2.0 5400 Series (Firewall Engine Only)   +
+ +
+ + + + + + +
+
+ Symantec Corporation + + +   + + 2004-04-012013-03-05 + + + EAL4 + + + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + SecureLogix Corporation™ ETM™ (Enterprise Telephony Management) System Version 4.1   +
+ +
+ + + + + + +
+
+ SecureLogix Corporation + + +   + + 2004-03-012015-09-29 + + + EAL2+ +
ALC_DVS.1 +
ACM_CAP.3 +
ACM_SCP.1 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + NetScreen Appliance Models 25, 50, 5XP, and 5XT with ScreenOS 4.0.2r7.0   +
+ +
+ + + + + + +
+
+ NetScreen Technologies, Inc. + + +   + + 2004-01-012012-09-07 + + + EAL4+ +
AVA_VLA.3 +
+ + US – National Information Assurance Partnership
US
+
+ + NetScreen Appliance Model 500, 208, 204 with ScreenOS 4.0.2r7.0   +
+ +
+ + + + + + +
+
+ NetScreen Technologies, Inc. + + +   + + 2003-12-012012-09-07 + + + EAL4+ +
AVA_VLA.3 +
+ + US – National Information Assurance Partnership
US
+
+ + Symantec Enterprise Firewall, v 7.0   + + + Symantec Corporation + + +   + + 2003-11-172013-03-05 + + + EAL4 + + + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + Lucent Technologies Lucent VPN Firewall V7.0 (Patch 531)   +
+ +
+ + + + + + +
+
+ Lucent Technologies + + +   + + 2003-10-012012-09-06 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + NetScreen Appliance Model 5200 with ScreenOS 4.0.2r7.0   +
+ +
+ + + + + + +
+
+ NetScreen Technologies, Inc. + + +   + + 2003-10-012012-09-07 + + + EAL4+ +
AVA_VLA.3 +
+ + US – National Information Assurance Partnership
US
+
+ + Symantec Enterprise Firewall, v 7.0.4 running on Windows 2000 SP3 and on Solaris 7 & 8   +
+ +
+ + + + + + +
+
+ Symantec Corporation + + +   + + 2003-09-172013-03-05 + + + EAL4 + + + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + Check Point VPN-1/FireWall-1© NG on Nokia IPSO   +
+ +
+ + + + + + +
+
+ Nokia Corporation + + +   + + 2003-09-012013-03-05 + + + EAL4 + + + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + ISA Server 2000 with Service Pack 1 and Feature Pack 1, Firewall   +
+ +
+ + + + + + +
+
+ Microsoft Corporation + + +   + + 2003-09-012019-09-01 + + + EAL2 + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Stonesoft StoneGate Firewall V2.0.5   +
+ +
+ + + + + + +
+
+ Stonesoft Corporation + + +   + + 2003-09-012012-09-07 + + + EAL4+ +
ALC_FLR.1 +
+ + US – National Information Assurance Partnership
US
+
+ + Nortel Networks Alteon Switched Firewall Version 2.0.3   +
+ +
+ + + + + + +
+
+ Nortel Networks + + +   + + 2003-08-012013-03-05 + + + EAL4 + + + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + Cybex SwitchView SC, Model 520-147-004/Model 520-319-003   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2004-02-20 – Cybex SwitchView SC, Model 520-147-005
    + Maintenance Report + +
  2. + +
    +
  3. + 2005-12-15 – Cybex SwitchView SC Series Switches Model 520-446-001
    + Maintenance Report + +
  4. + +
    +
  5. + 2006-04-14 – Cybex SwitchView SC Series Switches Model 520-457-501
    + Maintenance Report + +
  6. + +
    +
  7. + 2006-06-20 – Cybex SwitchView SC, Model 520-456-502
    + Maintenance Report + +
  8. + +
    +
  9. + 2006-06-20 – Cybex SwitchView SC, Model 520-456-502
    + Maintenance Report + +
  10. + +
    +
  11. + 2007-01-29 – Cybex SwitchView SC, Model 520-446-501
    + Maintenance Report + +
  12. + +
    +
  13. + 2007-01-29 – Cybex SwitchView SC, Model 520-456-504
    + Maintenance Report + +
  14. + +
+
+ + +
+
+ Avocent Corporation + + +   + + 2003-07-012012-09-06 + + + EAL4 + + + US – National Information Assurance Partnership
US
+
+ + 3Com© Embedded Firewall V1.5.1   +
+ +
+ + + + + + +
+
+ Secure Computing Corporation + + +   + + 2003-06-012013-03-05 + + + EAL2 + + + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + Bastion II   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2004-11-05 – Clearswift Bastion II
    + Maintenance Report + + Maintenance ST + +
  2. + +
    +
  3. + 2006-08-01 – Clearswift Bastion II
    + Maintenance Report + + Maintenance ST + +
  4. + +
+
+ + +
+
+ Deep-Secure + + +   + + 2003-06-012013-03-05 + + + EAL4 + + + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + Netscreen Appliances includes models, 5XP, 5XT, 25, 50, 204, 208, 500, and 5200 each with ScreenOS 4.0.2r6   +
+ +
+ + + + + + +
+
+ NetScreen Technologies, Inc. + + +   + + 2003-06-012012-09-07 + + + EAL4 + + + US – National Information Assurance Partnership
US
+
+ + Sidewinder® G2 Firewall, V6.0   +
+ +
+ + + + + + +
+
+ McAfee, Inc. + + +   + + 2003-05-192013-03-05 + + + EAL4+ +
ALC_FLR.2 +
+ + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + SecureLogix Corporation™ ETM™ (Enterprise Telephony Management) System Version 4.0.1   +
+ +
+ + + + + + +
+
+ SecureLogix Corporation + + +   + + 2003-04-012015-09-29 + + + EAL2+ +
ALC_DVS.1 +
ACM_CAP.3 +
ACM_SCP.1 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + CyberGuard Firewall for Unix Ware Release 4.3/KnightStar Premium Appliance Firewall 4.3   +
+ +
+ + + + + + +
+
+ McAfee, Inc. + + +   + + 2003-02-252013-03-05 + + + EAL4+ +
ALC_FLR.1 +
+ + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + Cisco Secure PIX Firewall V6.2(2)   +
+ +
+ + + + + + +
+
+ Cisco Systems, Inc. + + +   + + 2002-12-012013-02-27 + + + EAL4 + + + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + Netscreen Appliances includes models, 5XP, 5XT, 25, 50, 100, 204, 208, 500, and 5200 each with ScreenOS 4.0.0r7.0   +
+ +
+ + + + + + +
+
+ NetScreen Technologies, Inc. + + +   + + 2002-11-012012-09-07 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + Owl Computing Technologies Data Diode Version 1 and Owl Computing Technologies Data Diode Version 2   +
+ +
+ + + + + + +
+
+ Owl Computing Technologies, Inc. + + +   + + 2002-11-012012-09-07 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + Sidewinder Firewall, V5.2.1   +
+ +
+ + + + + + +
+
+ McAfee, Inc. + + +   + + 2002-09-302013-03-05 + + + EAL2+ +
ALC_FLR.2 +
+ + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + Check Point VPN-1/FireWall-1© NG   +
+ +
+ + + + + + +
+
+ Check Point Software Technologies Ltd. + + +   + + 2002-06-012013-02-27 + + + EAL4 + + + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + Gauntlet Firewall Version 6.0 on Sun Solaris, V2.8   +
+ +
+ + + + + + +
+
+ Secure Computing Corporation Australia Pty Ltd + + +   + + 2002-04-012019-09-01 + + + EAL4 + + + AU – Australasian Certification Authority (ACA)
AU
+
+ + SecureLogix Corporation™ Enterprise Telephony Management (ETM™) Platform Version 3.0.1   +
+ +
+ + + + + + +
+
+ SecureLogix Corporation + + +   + + 2002-02-012015-09-29 + + + EAL2+ +
ALC_DVS.1 +
ACM_CAP.3 +
ACM_SCP.1 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + BorderWare Firewall Server Version 6.5   +
+ +
+ + + + + + +
+
+ Borderware Technologies + + +   + + 2002-01-012013-02-27 + + + EAL4+ +
ALC_FLR.1 +
AVA_VLA.3 +
+ + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + SecureSwitch Dual Network Switch Model #5000600   +
+ +
+ + + + + + +
+
+ Market Central, Inc. + + +   + + 2001-10-012014-05-08 + + + EAL4 + + + US – National Information Assurance Partnership
US
+
+ + Cisco Secure PIX Firewall V5.2(3)   +
+ +
+ + + + + + +
+
+ Cisco Systems, Inc. + + +   + + 2001-02-282013-03-05 + + + EAL4+ +
ALC_FLR.1 +
+ + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + SecureLogix Corporation™ TeleWall™ System Version 2.0   +
+ +
+ + + + + + +
+
+ SecureLogix Corporation + + +   + + 2000-10-012015-09-29 + + + EAL2+ +
ALC_DVS.1 +
ACM_CAP.3 +
ACM_SCP.1 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Watchguard LiveSecurity System w/Firebox II   +
+ +
+ + + + + + +
+
+ WatchGuard Technologies, Inc. + + +   + + 2000-08-012016-04-05 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + Safegate Firewall, Version 2.0.2   +
+ +
+ + + + + + +
+
+ Fujitsu Limited + + +   + + 2000-03-022013-02-27 + + + EAL3 + + + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + Borderware, V6.1.1 Firewall Server   +
+ +
+ + + + + + +
+
+ Borderware Technologies + + +   + + 2000-01-012013-02-27 + + + EAL4+ + + + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + DragonFly Companion, V3.02, Build 129   +
+ +
+ + + + + + +
+
+ ITT Industries + + +   + + 1999-10-012016-04-05 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + ConSeal Private Desktop Version 1.4   +
+ +
+ + + + + + +
+
+ Signal9 Solutions + + +   + + 1999-05-012015-09-29 + + + EAL1 + + + CA – Canadian Common Criteria Scheme
CA
+
+ + VCS Firewall Version 3.0   +
+ +
+ + + + + + +
+
+ The Knowledge Group + + +   + + 1999-03-312013-03-05 + + + EAL1 + + + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + DragonFly Guard Model G1.2   +
+ +
+ + + + + + +
+
+ ITT Industries + + +   + + 1998-10-012016-04-05 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + Milkyway Networks Black Hole Firewall V.3.01E2   +
+ +
+ + + + + + +
+
+ SLM (Milkyway) Networks Corporation + + +   + + 1997-08-012015-09-29 + + + EAL3+ + + + CA – Canadian Common Criteria Scheme
CA
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ProductVendorProduct
Certificate
Date Certificate
Issued
Certificate
Validity
Expiration
Date
(Archived)
ComplianceScheme
+ This list was generated on Friday, April 16, 2021, at 10:31 AM +
+ Data Protection – 140 Certified Products +
+ + DTS1 Hardware Encryption Layer v1.0   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2019-05-02 – Curtiss-Wright Defense Solutions Data Transport System 1-Slot Hardware Encryption Layer
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ Curtiss-Wright + + + CCRA Certificate + + 2018-10-192020-10-19 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + DTS1 Software Encryption Layer v1.0   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2019-05-02 – Curtiss-Wright Defense Solutions Data Transport System 1-Slot Software Encryption Layer
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ Curtiss-Wright + + + CCRA Certificate + + 2018-08-212020-08-21 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Palo Alto Networks PA-200 Series, PA-500, PA-800 Series, PA-3000 Series, PA-5000 Series, PA-5200 Series, PA-7000 Series, and VM Series Next-Generation Firewall with PAN-OS v8.0.6   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2018-12-21 – Palo Alto Networks PA-200 Series, PA-500, PA-800 Series, PA-3000 Series, PA-3200 Series, PA-5000 Series, PA-5200 Series, PA-7000 Series, VM Series, Next-Generation Firewall with PAN-OS v8.0.12 and v8.1.3
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ Palo Alto Networks + + + CCRA Certificate + + 2018-04-302020-04-30 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Seagate Secure TCG SSC Self-Encrypting Drives   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2018-11-14 – Seagate Secure TCG SSC Self-Encrypting Drives
    + Maintenance Report + +
  2. + +
    +
  3. + 2019-03-01 – Seagate Secure TCG SSC Self-Encrypting Drives
    + Maintenance Report + + Maintenance ST + +
  4. + +
    +
  5. + 2019-07-15 – Seagate Secure TCG SSC Self-Encrypting Drives
    + Maintenance Report + + Maintenance ST + +
  6. + +
    +
  7. + 2019-10-21 – Seagate Secure TCG SSC Self-Encrypting Drives
    + Maintenance Report + + Maintenance ST + +
  8. + +
    +
  9. + 2019-12-11 – Seagate Secure ® TCG SSC Self-Encrypting Drives
    + Maintenance Report + + Maintenance ST + +
  10. + +
    +
  11. + 2020-06-03 – Seagate Secure TCG SSC Self-Encrypting Drives
    + Maintenance Report + + Maintenance ST + +
  12. + +
    +
  13. + 2020-07-20 – Seagate Secure ® TCG SSC Self-Encrypting Drives
    + Maintenance Report + + Maintenance ST + +
  14. + +
    +
  15. + 2020-09-28 – Seagate Secure TCG SSC Self-Encrypting Drives
    + Maintenance Report + + Maintenance ST + +
  16. + +
    +
  17. + 2020-12-21 – Seagate Secure TCG SSC Self-Encrypting Drives
    + Maintenance Report + + Maintenance ST + +
  18. + +
+
+ + +
+
+ Seagate Technology + + + CCRA Certificate + + 2018-04-112020-04-11 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Forcepoint NGFW 6.3.1   + + + Forcepoint LLC + + + CCRA Certificate + + 2018-03-122020-03-12 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + D4 Secure VPN Client for the HTC A9 Secured by Cog Systems   + + + Cog Systems + + + CCRA Certificate + + 2017-11-162019-11-16 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Cisco ASA and FXOS on Firepower 4100/9300   + + + Cisco Systems, Inc. + + + CCRA Certificate + + 2017-09-112019-09-11 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + MicroCloud X4   + + + Bluechip Systems LLC + + + CCRA Certificate + + 2017-08-292019-08-29 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + ASURRE-Stor™ Solid State Self-Encrypting Drive, Hardware revision 3.0, Firmware revision 1.5.0   + + + Mercury Systems + + + CCRA Certificate + + 2017-08-252019-08-25 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Trivalent Android Data Protection SDK v2.0   + + + Trivalent + + + CCRA Certificate + + 2017-04-132019-04-13 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Cisco Adaptive Security Appliances and ASA Virtual Version 9.6   + + + Cisco Systems, Inc. + + + CCRA Certificate + + 2017-04-042019-04-04 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Oceus Networks® VPN Client v2   + + + Oceus Networks, Inc. + + + CCRA Certificate + + 2017-02-032019-02-03 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + AnyConnect Secure Mobility Client v4.3 for Windows 10   + + + Cisco Systems, Inc. + + + CCRA Certificate + + 2017-01-032019-01-03 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Microsoft Windows 10 (Anniversary Update) and Windows Server 2016 IPsec VPN Client   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2017-11-27 – Microsoft Windows 10 IPsec VPN Client (VPNPP14)
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Microsoft Corporation + + + CCRA Certificate + + 2016-12-292018-12-29 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Samsung Galaxy VPN Client on Android 6   + + + Samsung Electronics Co., Ltd. + + + CCRA Certificate + + 2016-06-132018-06-13 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + McAfee Database Security 5.1 with ePolicy Orchestrator 5.3.1   +
+ +
+ + + + + + +
+
+ Intel Corporation + + + CCRA Certificate + + 2016-02-162021-02-16 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Trivalent Data at Rest Service (Inside) Version 1.0.0 (Version Code 2)   + + + Trivalent + + + CCRA Certificate + + 2015-12-232017-09-23 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + McAfee Policy Auditor 6.2 and McAfee ePolicy Orchestrator® 5.1.3   +
+ +
+ + + + + + +
+
+ Intel Corporation + + + CCRA Certificate + + 2015-12-082020-12-08 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + McAfee Data Loss Prevention Endpoint 9.4 and ePolicy Orchestrator 5.1.3   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2016-10-11 – McAfee Data Loss Prevention Endpoint 10.0 with ePolicy Orchestrator 5.1.3
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ Intel Corporation + + + CCRA Certificate + + 2015-12-072020-12-07 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + CRC Data At Rest Service (256-bit)   + + + Cyber Reliant Corporation + + + CCRA Certificate + + 2015-10-292017-10-29 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + CloudMask Engine v2.0   +
+ +
+ + + + + + +
+
+ CloudMask Corporation + + + CCRA Certificate + + 2015-10-272020-10-27 + + + EAL2 + + + CA – Canadian Common Criteria Scheme
CA
+
+ + Cisco AnyConnect Secure Mobility Desktop Client Version: 4.1   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2016-04-14 – Maintenance Report Supplementing Certificate Report 2015/96
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ Cisco Systems, Inc. + + +   + + 2015-10-082021-04-14 + + + PP Compliant + + + AU – Australasian Certification Authority (ACA)
AU
+
+ + McAfee File and Removable Media Protection 4.3.1 and ePolicy Orchestrator 5.1.2   +
+ +
+ + + + + + +
+
+ Intel Corporation + + + CCRA Certificate + + 2015-09-252020-09-25 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Trustwave DbProtect Version 6.4.3   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2017-02-17 – Trustwave DbProtect Version 6.4.9
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ Trustwave Holdings, Inc. + + + CCRA Certificate + + 2015-07-212020-07-21 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Trustwave AppDetectivePRO Version 8.3.1   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2017-02-13 – Trustwave AppDetectivePRO Version 8.7
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ Trustwave Holdings, Inc. + + + CCRA Certificate + + 2015-07-172020-07-17 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Cisco 5921 Embedded Services Router Running IOS 15.5(2)T   + + + Cisco Systems, Inc. + + +   + + 2015-06-222017-06-22 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Aruba VIA Client 2.3   + + + Aruba Networks + + +   + + 2015-05-272017-05-27 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Cisco Integrated Services Router 4400 Series (ISR-4400), IOS XE 3.13.0   + + + Cisco Systems, Inc. + + +   + + 2015-02-122017-02-12 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Hewlett-Packard Company Wireless LAN Access Controllers and Access Points with Comware Version 5.2.109   + + + Hewlett-Packard Company + + +   + + 2014-12-152016-12-15 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Fortress Mesh Point ES210   + + + General Dynamics C4 Systems + + +   + + 2014-12-042016-12-04 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Fortress Mesh Point ES2440   + + + General Dynamics C4 Systems + + +   + + 2014-12-042016-12-04 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Fortress Mesh Point ES520, ES820   + + + General Dynamics C4 Systems + + +   + + 2014-12-042016-12-04 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Cisco Integrated Services Router (ISR) 800 Series   + + + Cisco Systems, Inc. + + +   + + 2014-11-242016-10-07 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + McAfee Change Control and Application Control 6.1.3 with ePolicy Orchestrator 5.1.1   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2015-05-14 – McAfee Change Control and Application Control 6.2.0 with ePolicy Orchestrator 5.1.1
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ McAfee, Inc. + + + CCRA Certificate + + 2014-11-242019-11-24 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Cisco 5915 and 5940 Embedded Services Router   + + + Cisco Systems, Inc. + + +   + + 2014-11-172016-10-07 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Cisco X-ES Xpedite5205 Embedded Services Router   + + + Cisco Systems, Inc. + + +   + + 2014-11-172016-11-17 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Samsung Galaxy Note 4, Galaxy Note Edge, Galaxy Alpha, Galaxy Tab S & Galaxy Tab Active VPN Client   + + + Samsung Electronics Co., Ltd. + + +   + + 2014-11-172016-11-17 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Cisco Integrated Services Routers Series (ISR-4400), IOS XE 3.10.2tS   + + + Cisco Systems, Inc. + + +   + + 2014-11-102016-10-07 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Samsung Galaxy Devices VPN Client   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2014-06-16 – Samsung Galaxy Devices VPN Client (IVPNCPP14)
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Samsung Electronics Co., Ltd. + + +   + + 2014-05-312016-06-13 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + ZonePoint   +
+ +
+ + + + + + +
+
+ PrimX Technologies + + +   + + 2014-04-222019-09-01 + + + EAL3+ +
ALC_FLR.3 +
AVA_VAN.3 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ZonePoint version 3.0, build 330   +
+ +
+ + + + + + +
+
+ PrimX Technologies + + +   + + 2014-04-222019-09-01 + + + EAL3+ +
ALC_FLR.3 +
AVA_VAN.3 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Windows 8 and Windows Server 2012 - BitLocker   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2015-07-11 – Microsoft Windows 8.1, Microsoft Windows RT 8.1, Microsoft Windows Server 2012 R2
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Microsoft Corporation + + +   + + 2014-04-072017-07-11 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Windows 8, Windows RT, Windows Server 2012 IPsec VPN Client   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2015-07-11 – Microsoft Windows 8.1, Microsoft Windows RT 8.1, Microsoft Windows Server 2012 R2
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Microsoft Corporation + + +   + + 2014-01-312017-07-21 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Check Point Endpoint Security E80.30 (Build 8.1.327)   +
+ +
+ + + + + + +
+
+ Check Point Software Technologies Ltd. + + +   + + 2014-01-292016-01-29 + + + EAL2+ +
ALC_FLR.3 +
+ + US – National Information Assurance Partnership
US
+
+ + EMC® NetWorker® v8.0.1.4   +
+ +
+ + + + + + +
+
+ EMC Corporation + + + CCRA Certificate + + 2013-11-272018-11-27 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + McAfee Database Security 4.4   +
+ +
+ + + + + + +
+
+ McAfee, Inc. + + + CCRA Certificate + + 2013-09-162018-09-16 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Kermen Portable v1.0   +
+ +
+ + + + + + +
+
+ TÜBİTAK BİLGEM UEKAE + + +   + + 2013-09-052017-03-27 + + + EAL4+ +
ALC_FLR.2 +
+ + TR – TSE (Turkish Standards Institution) Common Criteria Certification Scheme
TR
+
+ + Good for Enterprise System   +
+ +
+ + + + + + +
+
+ Good Technology, Inc. + + +   + + 2013-08-122019-09-01 + + + EAL4+ +
ALC_FLR.1 +
+ + NO – SERTIT
NO
+
+ + HERMES-ARGOS v1.0   +
+ +
+ + + + + + +
+
+ INDRA Sistemas S.A. + + +   + + 2013-01-032019-09-01 + + + EAL2+ +
ADV_FSP.4 +
ADV_IMP.1 +
ADV_TDS.3 +
ALC_TAT.1 +
AVA_VAN.5 +
+ + ES – Organismo de Certificación de la Seguridad de las Tecnologías de la Información
ES
+
+ + AccessData Cyber Intelligence and Response Technology v2.1.2   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2014-12-05 – AccessData ResolutionOne™ Platform Cyber Intelligence and Response Technology 5.5.0.88
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ AccessData Group, LLC + + +   + + 2012-11-222018-04-19 + + + EAL3+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + RSA® Data Loss Prevention Suite v9.0   +
+ +
+ + + + + + +
+
+ RSA, The Security Division of EMC + + +   + + 2012-10-152018-04-19 + + + EAL2+ +
ALC_FLR.1 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Verdasys Digital Guardian v6.0.1   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2014-09-26 – Maintenance Report Verdasys Digital Guardian v6.2.1 (September 2014)
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ Verdasys Inc + + +   + + 2012-10-122018-04-19 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + McAfee MOVE AV 2.5 and ePolicy Orchestrator 4.6   +
+ +
+ + + + + + +
+
+ McAfee, Inc. + + +   + + 2012-09-142014-11-01 + + + EAL2+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + McAfee Endpoint Encryption 6.2 with ePolicy Orchestrator 4.6   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2013-05-13 – McAfee Endpoint Encryption PC v7.0 with McAfee ePolicy Orchestrator 4.6
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ McAfee, Inc. + + +   + + 2012-09-102015-05-13 + + + EAL2+ +
ALC_FLR.3 +
+ + US – National Information Assurance Partnership
US
+
+ + Tripwire Enterprise 8.1   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2014-10-20 – Tripwire Enterprise Version 8.3
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Tripwire, Inc. + + +   + + 2012-08-312014-11-01 + + + EAL2+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + McAfee Policy Auditor 6.0 with ePolicy Orchestrator 4.6   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2014-02-27 – McAfee Policy Auditor 6.2 and McAfee ePolicy Orchestrator 4.6
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ McAfee, Inc. + + +   + + 2012-05-052015-06-05 + + + EAL2+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Security BOX Enterprise 8.0 - Fonctionnalité de chiffrement transparent de fichiers   +
+ +
+ + + + + + +
+
+ Arkoon Network security + + +   + + 2012-04-042019-09-01 + + + EAL3+ +
ALC_FLR.3 +
AVA_VAN.3 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + McAfee Host Data Loss Prevention 9.2 and ePolicy Orchestrator 4.6   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2013-07-26 – McAfee Data Loss Prevention Endpoint 9.3 and ePolicy Orchestrator 4.6 (July 2013)
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ McAfee, Inc. + + +   + + 2012-03-142017-05-15 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + McAfee Network Data Loss Prevention 9.2   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2013-10-25 – McAfee Network Data Loss Prevention 9.3
    + Maintenance Report + +
  2. + +
    +
  3. + 2013-11-29 – McAfee Network Data Loss Prevention 9.3 (November 2013)
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ McAfee, Inc. + + +   + + 2012-03-142017-05-15 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Symantec™ Data Loss Prevention Version 11.1.1   +
+ +
+ + + + + + +
+
+ Symantec Corporation + + +   + + 2012-03-052017-05-15 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + ZoneCentral   +
+ +
+ + + + + + +
+
+ PrimX Technologies + + +   + + 2012-02-132019-09-01 + + + EAL3+ +
ALC_FLR.3 +
AVA_VAN.3 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Blancco Erasure Software for x86 architecture, version 5.1.0   +
+ +
+ + + + + + +
+
+ Blancco Oy Ltd. + + +   + + 2012-01-272019-09-01 + + + EAL3+ +
ALC_FLR.3 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + HERMES-PI3 v1.0   +
+ +
+ + + + + + +
+
+ INDRA Sistemas S.A. + + +   + + 2012-01-032019-09-01 + + + EAL2+ +
ADV_FSP.4 +
ADV_IMP.1 +
ADV_TDS.3 +
ALC_TAT.1 +
+ + ES – Organismo de Certificación de la Seguridad de las Tecnologías de la Información
ES
+
+ + McAfee Endpoint Encryption for PC v5.2.6 with McAfee Endpoint Encryption Manager v5.2.6   +
+ +
+ + + + + + +
+
+ McAfee, Inc. + + +   + + 2011-10-172014-11-01 + + + EAL4+ +
ALC_FLR.3 +
+ + US – National Information Assurance Partnership
US
+
+ + USBK Cryptobridge v2.0 For Model A101 and Model A103   +
+ +
+ + + + + + +
+
+ Tamara Elektronik Ltd.Şti + + +   + + 2011-10-132017-03-27 + + + EAL2 + + + TR – TSE (Turkish Standards Institution) Common Criteria Certification Scheme
TR
+
+ + Cryhod   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2013-07-12 – Rapport de maintenance ANSSI-CC-2011/20-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ PrimX Technologies + + +   + + 2011-07-132019-09-01 + + + EAL3+ +
ALC_FLR.3 +
AVA_VAN.3 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Secure Audit Vault v1.3.6   +
+ +
+ + + + + + +
+
+ Kinamik Data Integrity S.L. + + +   + + 2011-06-142019-09-01 + + + EAL1 + + + ES – Organismo de Certificación de la Seguridad de las Tecnologías de la Información
ES
+
+ + EraseIT Core v1.0.3   +
+ +
+ + + + + + +
+
+ Recovery Labs S.A. + + +   + + 2011-05-122019-09-01 + + + EAL1+ +
ASE_OBJ.2 +
ASE_REQ.2 +
ASE_SPD.1 +
ALC_FLR.1 +
+ + ES – Organismo de Certificación de la Seguridad de las Tecnologías de la Información
ES
+
+ + Xceedium GateKeeper Version 5.2.1   +
+ +
+ + + + + + +
+
+ Xceedium, Inc. + + +   + + 2011-03-252014-11-01 + + + EAL4+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Secure Objects incorporating Secure Envelopes, Version: 1.5.1, Auth Server Component: Build 1.5.1.6 All Other Components: Build 1.5.1.5   +
+ +
+ + + + + + +
+
+ Defence and Government, Cocoon Data Holdings + + +   + + 2011-03-222019-09-01 + + + EAL4+ +
ALC_FLR.1 +
+ + AU – Australasian Certification Authority (ACA)
AU
+
+ + McAfee Policy Auditor 5.2, and ePolicy Orchestrator 4.5   +
+ +
+ + + + + + +
+
+ McAfee, Inc. + + +   + + 2011-03-072014-11-01 + + + EAL2+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Mobile Armor PolicyServer 3.1 and DataArmor 3.1   +
+ +
+ + + + + + +
+
+ Mobile Armor, Inc. + + +   + + 2011-01-312014-11-01 + + + EAL4+ +
ALC_FLR.3 +
+ + US – National Information Assurance Partnership
US
+
+ + McAfee Application Control v5.0, Change Control v5.0, and Integrity Monitor v5.0 with McAfee Agent v4.5 and ePolicy Orchestrator v4.5   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2011-06-16 – Maintenance Report for McAfee Application Control v5.1, Change Control v5.1, and Integrity Monitor v5.1 with McAfee Agent v4.5 and ePolicy Orchestrator v4.5
    + Maintenance Report + +
  2. + +
    +
  3. + 2012-03-23 – McAfee Application Control v6.0 and Change Control v6.0 with McAfee Agent v4.6 and ePolicy Orchestrator v4.6
    + Maintenance Report + +
  4. + +
    +
  5. + 2012-12-27 – McAfee Application Control v6.1 and Change Control v6.1 with McAfee Agent v4.6 and ePolicy Orchestrator v4.6
    + Maintenance Report + +
  6. + +
+
+ + +
+
+ McAfee, Inc. + + +   + + 2011-01-142017-05-15 + + + EAL3+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + WhiteCanyon WipeDrive Version 6.1   +
+ +
+ + + + + + +
+
+ WhiteCanyon Software + + +   + + 2010-12-142014-11-01 + + + EAL4+ +
ALC_FLR.2 +
ASE_TSS.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Mobile Armor PolicyServer 3.1 and FileArmor 3.0   +
+ +
+ + + + + + +
+
+ Mobile Armor, Inc. + + +   + + 2010-11-292014-11-01 + + + EAL4+ +
ALC_FLR.3 +
+ + US – National Information Assurance Partnership
US
+
+ + CRYPTOSEC+Firmware PKCS#11 v1.0   +
+ +
+ + + + + + +
+
+ Realia Technologies + + +   + + 2010-10-012019-09-01 + + + EAL4+ +
ALC_FLR.1 +
+ + ES – Organismo de Certificación de la Seguridad de las Tecnologías de la Información
ES
+
+ + EraseIT Loop v1.73   +
+ +
+ + + + + + +
+
+ Recovery Labs S.A. + + +   + + 2010-10-012019-09-01 + + + EAL1+ +
ASE_OBJ.2 +
ASE_REQ.2 +
ASE_SPD.1 +
ALC_FLR.1 +
+ + ES – Organismo de Certificación de la Seguridad de las Tecnologías de la Información
ES
+
+ + Zed!, version 4.0, build 820   +
+ +
+ + + + + + +
+
+ PrimX Technologies + + +   + + 2010-07-302019-09-01 + + + EAL3+ +
ALC_FLR.3 +
AVA_VAN.3 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + CIMCOR CimTrak for Servers Version 2.0.6 (F)   +
+ +
+ + + + + + +
+
+ Cimcor, Inc. + + +   + + 2010-07-262014-11-01 + + + EAL4+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Check Point Endpoint Security Media Encryption   +
+ +
+ + + + + + +
+
+ Check Point Software Technologies Incorporated + + +   + + 2010-07-162014-11-01 + + + EAL4+ +
ALC_FLR.3 +
+ + US – National Information Assurance Partnership
US
+
+ + BSA Borrado Seguro Anova v1.2.0   +
+ +
+ + + + + + +
+
+ Anova IT Consulting S.L. + + +   + + 2010-06-252019-09-01 + + + EAL1+ +
ASE_SPD.1 +
ASE_OBJ.2 +
ASE_REQ.2 +
ALC_FLR.1 +
+ + ES – Organismo de Certificación de la Seguridad de las Tecnologías de la Información
ES
+
+ + PGP Desktop: Enterprise Whole Disk Encryption Only Edition, Version 9.10.0   +
+ +
+ + + + + + +
+
+ PGP Corporation + + +   + + 2010-04-272015-09-28 + + + EAL4+ + + + CA – Canadian Common Criteria Scheme
CA
+
+ + Trusted Client v2.3   +
+ +
+ + + + + + +
+
+ Becrypt Limited + + +   + + 2009-11-052019-09-01 + + + EAL2 + + + AU – Australasian Certification Authority (ACA)
AU
+
+ + Cisco IronPort S-Series Web Security Appliance (WSA) (S160, S360, S660) running AsyncOS 5.6.1   +
+ +
+ + + + + + +
+
+ Cisco Systems, Inc. + + +   + + 2009-10-202014-05-08 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + Cruzer Enterprise FIPS Edition, firmware v6.612 and v6.615   +
+ +
+ + + + + + +
+
+ SanDisk + + +   + + 2009-09-282011-08-04 + + + EAL2+ +
ALC_FLR.1 +
+ + AU – Australasian Certification Authority (ACA)
AU
+
+ + IBM WebSpherePortal 6.0.0.0 (with APAR PK67104 and APAR PK79436)   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2009-09-252014-05-08 + + + EAL4 + + + US – National Information Assurance Partnership
US
+
+ + ERUCES Tricryption Key Server and Agent 6.2   +
+ +
+ + + + + + +
+
+ ERUCES, Inc. + + +   + + 2009-09-152014-05-08 + + + EAL2+ +
ALC_FLR.2 +
AVA_MSU.1 +
+ + US – National Information Assurance Partnership
US
+
+ + Becrypt DISK Protect   +
+ +
+ + + + + + +
+
+ Becrypt Limited + + +   + + 2009-08-122017-07-13 + + + EAL2 + + + AU – Australasian Certification Authority (ACA)
AU
+
+ + Check Point Endpoint Security Full Disk Encryption, Pointsec PC 6.3.1   +
+ +
+ + + + + + +
+
+ Check Point Software Technologies Ltd. + + +   + + 2009-08-012014-05-08 + + + EAL4+ +
ALC_FLR.1 +
+ + US – National Information Assurance Partnership
US
+
+ + Tripwire Manager version 4.6.1 and Tripwire for Servers version 4.6.1   +
+ +
+ + + + + + +
+
+ Tripwire, Inc. + + +   + + 2009-06-292012-07-20 + + + EAL3+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + IBM Tivoli Storage Manager V 5.5.1   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2009-05-222017-07-13 + + + EAL3+ +
ALC_FLR.1 +
+ + AU – Australasian Certification Authority (ACA)
AU
+
+ + RSA® Data Loss Prevention Suite v6.5   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2011-04-05 – RSA® Data Loss Prevention Suite v8.5
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ RSA, The Security Division of EMC + + +   + + 2009-05-122015-09-29 + + + EAL2+ +
ALC_FLR.1 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Eaglehawk SBX Enigma Version: 4.2.4   +
+ +
+ + + + + + +
+
+ Eaglehawk Limited + + +   + + 2009-04-302017-07-13 + + + EAL2+ +
ALC_FLR.1 +
+ + AU – Australasian Certification Authority (ACA)
AU
+
+ + Thales e-Security Datacryptor SONET/SDH Release 4.0 with Element Manager and Thales e-Security Datacryptor Gigabit Ethernet Release 4.0 with Element Manager   +
+ +
+ + + + + + +
+
+ Thales e-Security, Inc + + +   + + 2009-04-072012-07-20 + + + EAL3 + + + US – National Information Assurance Partnership
US
+
+ + Tripwire Enterprise Version 5.2   +
+ +
+ + + + + + +
+
+ Tripwire, Inc. + + +   + + 2009-04-032012-07-20 + + + EAL3+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + NetApp DataFort FC520 v2, LKM 2.5.1   +
+ +
+ + + + + + +
+
+ NetApp, Inc. + + +   + + 2009-04-012012-07-20 + + + EAL4+ +
ALC_FLR.1 +
+ + US – National Information Assurance Partnership
US
+
+ + AquaLogic Interaction Collaboration 4.2   +
+ +
+ + + + + + +
+
+ BEA Systems, Inc. + + +   + + 2009-02-202012-07-20 + + + EAL2+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + AquaLogic Interaction Publisher 6.4   +
+ +
+ + + + + + +
+
+ BEA Systems, Inc. + + +   + + 2009-02-202014-05-08 + + + EAL2+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + DataPower XS40 XML Security Gateway and X150 Appliance on Firewall v3.5   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2009-11-04 – IBM WebSphere DataPower SOA XS40 XML Security Gateway and X150 Integration Appliance Version 3.8
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ DataPower Technology, Inc. a wholly owned subsidiary of IBM Corporation + + +   + + 2008-12-302012-07-20 + + + EAL4+ +
ALC_FLR.1 +
+ + US – National Information Assurance Partnership
US
+
+ + GuardianEdge Data Protection Framework 9.0.1 with GuardianEdge Hard Disk Encryption 9.0.1 and GuardianEdge Removable Storage Encryption 3.0.1   +
+ +
+ + + + + + +
+
+ GuardianEdge Technologies, Inc. + + +   + + 2008-12-182012-07-20 + + + EAL4+ +
ALC_FLR.3 +
+ + US – National Information Assurance Partnership
US
+
+ + Symantec Endpoint Encryption Full Disk Edition 9.0.1 and Removable Removable Storage Encryption 9.0.1 (formerly known as GuardianEdge)   +
+ +
+ + + + + + +
+
+ Symantec Corporation + + +   + + 2008-12-182012-07-20 + + + EAL4+ +
ALC_FLR.3 +
+ + US – National Information Assurance Partnership
US
+
+ + ZoneCentral v3.1, build 533   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2009-04-22 – Rapport de maintenance DCSSI-2008/46-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ PrimX Technologies + + +   + + 2008-12-182019-09-01 + + + EAL2+ +
AVA_VLA.2 +
AVA_MSU.1 +
ADV_HLD.2 +
ADV_LLD.1 +
ADV_IMP.1 +
ALC_DVS.1 +
ALC_FLR.3 +
ALC_TAT.1 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + PGP Universal Server with Gateway and Key Management v2.9 running on Fedora Core 6   +
+ +
+ + + + + + +
+
+ PGP Corporation + + +   + + 2008-11-212015-09-29 + + + EAL2 + + + CA – Canadian Common Criteria Scheme
CA
+
+ + Applied Identity ID-Enforce Hardware Appliance (models 5000, 7000, and 10000) with ID-Enforce Gateway, Version 3.3 including the ID-Enforce Client ID-Mark v3.3 and the Identisphere Manager (ID-Policy v3.3)   +
+ +
+ + + + + + +
+
+ Applied Identity + + +   + + 2008-10-062012-07-20 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + Safend Protector Version 3.0   +
+ +
+ + + + + + +
+
+ Safend Ltd + + +   + + 2008-08-132012-07-20 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + SafeNet ProtectDrive Enterprise V8.1.1   +
+ +
+ + + + + + +
+
+ SafeNet Inc. + + +   + + 2008-08-112017-07-13 + + + EAL4 + + + AU – Australasian Certification Authority (ACA)
AU
+
+ + Cisco Security MARS 110 and 110R, Cisco Security MARS 210, and Cisco Security MARS GC2, with Software Version 5.2.4.2487   +
+ +
+ + + + + + +
+
+ Cisco Systems, Inc. + + +   + + 2008-08-072012-07-20 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + AquaLogic Interaction 6.1 with AquaLogic Interaction Development Kit   +
+ +
+ + + + + + +
+
+ BEA Systems, Inc. + + +   + + 2008-05-122012-07-20 + + + EAL2+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Lancope StealthWatch NC Appliance (Model numbers M45, M250, M250X, G1, G1C, G1X, G1CX, and G1CFX) and StealthWatch Xe   + + + Lancope, Inc. + + +   + + 2008-05-122012-07-20 + + + EAL2+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + CREDANT Mobile Guardian (CMG) Enterprise Edition Version 5.2.1 SP4   +
+ +
+ + + + + + +
+
+ CREDANT Technologies, Inc. + + +   + + 2008-05-052012-07-20 + + + EAL3 + + + US – National Information Assurance Partnership
US
+
+ + Tutus Filkrypto 1.0.2   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2008-07-02 – Tutus Filkrypto 1.0.3
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ Tutus Data AB + + +   + + 2008-02-252019-09-01 + + + EAL3 + + + SE – Swedish Certification Body for IT Security FMV/CSEC
SE
+
+ + FDRERASE/OPEN, Version 02, Level 05   +
+ +
+ + + + + + +
+
+ Innovation Data Processing + + +   + + 2008-01-292012-07-20 + + + EAL2+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Microsoft Windows Rights Management Services (RMS) 1.0 SP2   +
+ +
+ + + + + + +
+
+ Microsoft Corporation + + +   + + 2007-08-082012-09-07 + + + EAL4+ +
ALC_FLR.3 +
+ + US – National Information Assurance Partnership
US
+
+ + SecureDoc Disk Encryption, Version 4.3C   +
+ +
+ + + + + + +
+
+ WinMagic Inc. + + +   + + 2007-07-042015-09-29 + + + EAL4 + + + CA – Canadian Common Criteria Scheme
CA
+
+ + Senforce Endpoint Security Suite Version 3.1.175   +
+ +
+ + + + + + +
+
+ Senforce Technologies, Inc. + + +   + + 2007-06-072012-09-07 + + + EAL4+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Connect:Direct® with Secure+ Option v4.5 running on IBM OS/390 and z/OS   +
+ +
+ + + + + + +
+
+ Sterling Commerce Inc. + + +   + + 2006-10-032015-09-29 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Connect:Direct® with Secure+ Option v3.7 running on UNIX and v4.2 on Windows   +
+ +
+ + + + + + +
+
+ Sterling Commerce Inc. + + +   + + 2006-09-162015-09-29 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + McAfee Endpoint Encryption for Devices version 5.0   +
+ +
+ + + + + + +
+
+ McAfee, Inc. + + +   + + 2006-05-232013-03-05 + + + EAL4 + + + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + Documentum Content Server™ V5.3 and Documentum Administrator™ V5.3   +
+ +
+ + + + + + +
+
+ EMC Documentum + + +   + + 2005-12-212012-09-06 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + Silicon Data Vault Desktop Version SDV201B03-0003 and Silicon Data Vault Laptop Version SDV18A03-A2-0003   +
+ +
+ + + + + + +
+
+ Secure Systems Limited + + +   + + 2005-10-152012-09-07 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + ProtectDrive V7.0.3   +
+ +
+ + + + + + +
+
+ SafeNet Inc. + + +   + + 2005-09-202019-09-01 + + + EAL2 + + + AU – Australasian Certification Authority (ACA)
AU
+
+ + FDRERASE, Version 5.4, Level 50   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2007-01-23 – FDRERASE, Version 5.4, Level 70
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Innovation Data Processing + + +   + + 2005-08-152012-09-06 + + + EAL2+ +
ADV_SPM.1 +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Access Control Library 2.0.1 and eSNACC 1.3   +
+ +
+ + + + + + +
+
+ Getronics Government Solutions + + +   + + 2005-04-222012-09-06 + + + EAL3+ +
ADV_IMP.1 +
ADV_LLD.1 +
ALC_LCD.1 +
ALC_TAT.1 +
+ + US – National Information Assurance Partnership
US
+
+ + Trusted Platform Module Atmel AT97SC3201   +
+ +
+ + + + + + +
+
+ Atmel Corporation + + +   + + 2005-04-082012-09-06 + + + EAL3+ +
ADV_SPM.1 +
ALC_FLR.1 +
+ + US – National Information Assurance Partnership
US
+
+ + BULL Trustway PCI 2400 (PCA2 version 76675628-115A S302)   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2007-06-25 – Rapport de maintenance M-2007/09
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ BULL S.A. + + +   + + 2004-11-262019-09-01 + + + EAL4+ +
ADV_IMP.2 +
ALC_FLR.3 +
AVA_CCA.1 +
AVA_VLA.4 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Cisco Intrusion Detection System Module (IDSM2) V4.1 (3)   + + + Cisco Systems, Inc. + + +   + + 2004-05-282012-09-06 + + + EAL2+ +
ALC_FLR.1 +
+ + US – National Information Assurance Partnership
US
+
+ + Security BOX Crypto 6.0 library   +
+ +
+ + + + + + +
+
+ MSI S.A. + + +   + + 2004-05-102019-09-01 + + + EAL4+ +
AVA_VLA.3 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Pointsec PC Version 4.3   +
+ +
+ + + + + + +
+
+ Pointsec Mobile Technologies, Inc. + + +   + + 2004-01-012012-09-07 + + + EAL4 + + + US – National Information Assurance Partnership
US
+
+ + Groove Workspace, Groove Enterprise Management Server, and Groove Enterprise Relay Server, Version 2.5   +
+ +
+ + + + + + +
+
+ Groove Networks, Inc + + +   + + 2003-09-012012-09-06 + + + EAL2+ +
ADV_SPM.1 +
+ + US – National Information Assurance Partnership
US
+
+ + Destroy & Destroy Lite 2.01   +
+ +
+ + + + + + +
+
+ The Australian Software Company Pty Limited + + +   + + 2003-08-012019-09-01 + + + EAL2+ +
ADV_SPM.1 +
+ + AU – Australasian Certification Authority (ACA)
AU
+
+ + Encryption Plus© Hard Disk 7.0   +
+ +
+ + + + + + +
+
+ PC Guardian + + +   + + 2003-04-012012-09-07 + + + EAL1 + + + US – National Information Assurance Partnership
US
+
+ + Tripwire Manager 3.0 with Tripwire for Servers 3.0, Tripwire Manager 3.0 with Tripwire for Servers Check Point Edition 3.0   +
+ +
+ + + + + + +
+
+ Tripwire, Inc. + + +   + + 2003-03-012012-09-07 + + + EAL1 + + + US – National Information Assurance Partnership
US
+
+ + UniShred Pro V3.3.1   +
+ +
+ + + + + + +
+
+ Los Altos Technologies + + +   + + 2002-12-022012-09-06 + + + EAL1 + + + US – National Information Assurance Partnership
US
+
+ + Data-Defender 1.0   +
+ +
+ + + + + + +
+
+ Fachhochschule Aachen Fachbereich Elektrotechnik und Informationstechnik und IBH-IMPEX Elektronik GmbH + + +   + + 2002-05-012019-09-01 + + + EAL1 + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + SafeGuard Easy for Windows 2000, Version 1.0   +
+ +
+ + + + + + +
+
+ Utimaco Safeware AG + + +   + + 2002-04-012019-09-01 + + + EAL1 + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + IBM Cryptographic Security Chip for PC Clients, Manufactured by ATMEL (AT90SP0801)   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2001-10-012012-09-06 + + + EAL3+ +
ADV_SPM.1 +
+ + US – National Information Assurance Partnership
US
+
+ + Electronic Engineering Systems, Inc. (EESI) SuperNet 2000 EAL4/r1   +
+ +
+ + + + + + +
+
+ Electronic Engineering Systems, Inc. + + +   + + 2000-10-012012-09-07 + + + EAL4 + + + US – National Information Assurance Partnership
US
+
+ + Supernet 2000   +
+ +
+ + + + + + +
+
+ Electronic Engineering Systems, Inc. + + +   + + 2000-10-012008-03-21 + + + EAL4 + + + US – National Information Assurance Partnership
US
+
+ + SecureDoc Disk Encryption v 2.0   +
+ +
+ + + + + + +
+
+ WinMagic Inc. + + +   + + 1999-07-012015-09-29 + + + EAL1 + + + CA – Canadian Common Criteria Scheme
CA
+
+ + TrueDelete Version 4.0   +
+ +
+ + + + + + +
+
+ Entrust, Inc. + + +   + + 1999-03-012015-09-29 + + + EAL1 + + + CA – Canadian Common Criteria Scheme
CA
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ProductVendorProduct
Certificate
Date Certificate
Issued
Certificate
Validity
Expiration
Date
(Archived)
ComplianceScheme
+ This list was generated on Friday, April 16, 2021, at 10:31 AM +
+ Databases – 75 Certified Products +
+ + Microsoft SQL Server 2014 Database Engine Enterprise Edition x64   + + + Microsoft Corporation + + +   + + 2015-12-152020-12-15 + + + EAL4+ +
ALC_FLR.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Microsoft SQL Server 2014 Database Engine Enterprise Edition x64 (English) +12.0.2000.8   + + + Microsoft Corporation + + +   + + 2015-06-162020-07-01 + + + EAL2+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + IBM DB2 Version 11 for z/OS Version 1 Release 13   + + + IBM Corporation + + +   + + 2014-08-272019-09-01 + + + EAL4+ +
ALC_FLR.3 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + MarkLogic Server Enterprise Edition 6.0-4   +
+ +
+ + + + + + +
+
+ MarkLogic Corporation + + +   + + 2013-12-192015-12-19 + + + EAL2 +
ALC_FLR.3 +
+ + US – National Information Assurance Partnership
US
+
+ + IBM Tivoli Directory Server Version 6.3   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2013-07-052019-09-01 + + + EAL4+ +
ALC_FLR.1 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + EMC® ProSphere™ v2.0   +
+ +
+ + + + + + +
+
+ EMC Corporation + + + CCRA Certificate + + 2013-06-262018-06-26 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + IBM DB2 Version 10.1 Enterprise Server Edition for Linux, UNIX and Windows (CC Configuration)   +
+ +
+ + + + + + +
+
+ IBM Canada Ltd. + + +   + + 2013-03-282019-09-01 + + + EAL4+ +
ALC_FLR.1 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Microsoft SQL Server 2012 Database Engine Enterprise Edition x64 (English), Version 11.0.3000.0 (including Service Pack 1)   + + + Microsoft Corporation + + +   + + 2013-02-192019-09-01 + + + EAL4+ +
ALC_FLR.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Microsoft SQL Server 2012 Database Engine Enterprise Edition x64 (English), Version:11.0.2100.60   +
+ +
+ + + + + + +
+
+ Microsoft Corporation + + +   + + 2012-09-062017-10-12 + + + EAL2 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + IBM DB2 Version 9.1 for z/OS Version 1 Release 10   + + + IBM Corporation + + +   + + 2012-07-202019-09-01 + + + EAL4+ +
ALC_FLR.3 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + EMC® Greenplum® 4.2   + + + EMC Corporation + + +   + + 2012-04-122017-05-15 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Database Engine of Microsoft SQL Server 2008 R2 Enterprise Edition and Datacenter Edition (English) x64, Version 10.50.2500.0   + + + Microsoft Corporation + + +   + + 2012-01-182019-09-01 + + + EAL4+ +
ALC_FLR.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Oracle Database 11g Release 2 Enterprise Edition, version 11.2.0.2, with all critical patch updates up to and including July 2011 via the July 2011 PSU as well as the October 2011 CPU   + + + Oracle Corporation + + +   + + 2012-01-172019-09-01 + + + EAL4+ +
ALC_FLR.3 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Oracle Database 11g Release 2 Standard Edition and Standard Edition 1, version 11.2.0.2, with all critical patch updates up to and including July 2011 via the July 2011 PSU as well as the October 2011 CPU   + + + Oracle Corporation + + +   + + 2012-01-172019-09-01 + + + EAL4+ +
ALC_FLR.3 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + SenSage 4.6.2   +
+ +
+ + + + + + +
+
+ SenSage, Inc. + + +   + + 2011-09-092017-05-15 + + + EAL2+ +
ALC_FLR.1 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + EnterpriseDB Postgres Plus Advanced Server 8.4   + + + EnterpriseDB Corporation + + +   + + 2011-07-292014-11-01 + + + EAL2+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Teradata Database 13.0   +
+ +
+ + + + + + +
+
+ Teradata Corporation + + +   + + 2011-03-292014-11-01 + + + EAL4+ +
ALC_FLR.3 +
+ + US – National Information Assurance Partnership
US
+
+ + Database Engine of Microsoft SQL Server 2008 Enterprise Edition (English) x86 and x64, Version / Built 10.0.4000.0   + + + Microsoft Corporation + + +   + + 2011-02-112019-09-01 + + + EAL4+ +
ALC_FLR.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Oracle Enterprise Manager 10g Grid Control Release 5 (10.2.0.5)   +
+ +
+ + + + + + +
+
+ Oracle Corporation + + +   + + 2010-08-272019-09-01 + + + EAL4+ +
ALC_FLR.3 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + MarkLogic Server Enterprise Edition Version 4.0   + + + Mark Logic Corporation + + +   + + 2010-07-152014-11-01 + + + EAL3+ +
ALC_FLR.3 +
+ + US – National Information Assurance Partnership
US
+
+ + Netezza Performance Server v4.6.5   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2010-08-24 – Netezza performance Server v4.6.5 and TwinFin v5.0.6
    + Maintenance Report + +
  2. + +
    +
  3. + 2011-03-23 – Netezza performance Server v6.0 running on TwinFin
    + Maintenance Report + +
  4. + +
    +
  5. + 2012-05-07 – Maintenance Report - IBM Netezza Platform software version 6.1 running on C1000 Series and software version 6.0 running on 1000 Series and 100-1 Platforms
    + Maintenance Report + +
  6. + +
+
+ + +
+
+ Netezza Corporation + + +   + + 2010-04-302015-09-28 + + + EAL4+ +
ALC_FLR.3 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Oracle Database 11g Enterprise Edition with Oracle Database Vault Release 11.1.0.7 with Critical Patch Updates up to and including July 2009   +
+ +
+ + + + + + +
+
+ Oracle Corporation + + +   + + 2009-10-122019-09-01 + + + EAL4+ +
ALC_FLR.3 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Oracle Database 11g Standard Edition and Standard Edition One Release 11.1.0.7 with Critical Patch Updates up to and including July 2009   +
+ +
+ + + + + + +
+
+ Oracle Corporation + + +   + + 2009-10-122019-09-01 + + + EAL4+ +
ALC_FLR.3 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Oracle Database 11g Enterprise Edition with Oracle Label Security, Release 11.1.0.7 with Critical Patch Updates up to and including July 2009   +
+ +
+ + + + + + +
+
+ Oracle Corporation + + +   + + 2009-09-162019-09-01 + + + EAL4+ +
ALC_FLR.3 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Oracle Database 11g Enterprise Edition, Release 11.1.0.7 with Critical Patch Updates up to and including July 2009   +
+ +
+ + + + + + +
+
+ Oracle Corporation + + +   + + 2009-09-162019-09-01 + + + EAL4+ +
ALC_FLR.3 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Teradata Database 12.0   +
+ +
+ + + + + + +
+
+ Teradata Corporation + + +   + + 2009-08-212014-05-08 + + + EAL4+ +
ALC_FLR.3 +
+ + US – National Information Assurance Partnership
US
+
+ + IBM DB2 Version 9.7 Enterprise Server Edition for Linux, Unix, and Windows   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2009-08-182014-05-08 + + + EAL4+ +
ALC_FLR.1 +
+ + US – National Information Assurance Partnership
US
+
+ + Sybase Replication Server, Version 15.2   +
+ +
+ + + + + + +
+
+ Sybase, Inc. + + +   + + 2009-07-302014-05-08 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + IBM DB2 Records Manager v8.4   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2009-02-252012-07-20 + + + EAL3+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + IBM Informix Dynamic Server Version 11.5 (Enterprise Edition)   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2009-02-172012-07-20 + + + EAL4+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Microsoft SQL Server 2008 Enterprise Edition (English) x86 and x64, Version 10.0.1600.22   +
+ +
+ + + + + + +
+
+ Microsoft Corporation + + +   + + 2009-02-162019-09-01 + + + EAL1+ +
ASE_OBJ.2 +
ASE_REQ.2 +
ASE_SPD.1 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + IBM DB2 Document Manager V8.4 Fix Pack 1   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2009-01-302012-07-20 + + + EAL3+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + IBM DB2 Content Manager Enterprise Edition V8.4 Fix Pack 1a   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2009-01-272012-07-20 + + + EAL4+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + IBM DB2 Version 9.5.2 Enterprise Server Edition for Linux, Unix, and Windows   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2008-12-182012-07-20 + + + EAL4+ +
ALC_FLR.1 +
+ + US – National Information Assurance Partnership
US
+
+ + Database Engine of Microsoft SQL Server 2005 SP2, Enterprise Edition (English) Version 9.00.3068.00   + + + Microsoft Corporation + + +   + + 2008-10-242019-09-01 + + + EAL4+ +
ALC_FLR.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Oracle Internet Directory 10g (10.1.4.0.1)   +
+ +
+ + + + + + +
+
+ Oracle Corporation + + +   + + 2008-06-272013-08-23 + + + EAL4+ +
ALC_FLR.3 +
+ + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + TeraText DBS 4.3.13   +
+ +
+ + + + + + +
+
+ Science Applications International Corporation (SAIC) + + +   + + 2008-06-202012-07-20 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + IBM DB2 Universal Data Base for z/OS Version 8 (DB2 UDB V8) and the IBM z/OS Version 1 Release 6 operating system (z/OS V1R6)   + + + IBM Corporation + + +   + + 2008-01-292019-09-01 + + + EAL3+ +
ADV_SPM.1 +
ALC_FLR.1 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Oracle Database 10g Release 2 (10.2.0.3) Enterprise Edition, Standard Edition and Standard Edition 1 with Critical Patch Update July 2007   +
+ +
+ + + + + + +
+
+ Oracle Corporation + + +   + + 2008-01-242019-09-01 + + + EAL4+ +
ALC_FLR.3 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Oracle Label Security for Oracle Database 10g Release 2 (10.2.0.3) Enterprise Edition with Critical Patch Update July 2007   +
+ +
+ + + + + + +
+
+ Oracle Corporation + + +   + + 2008-01-242019-09-01 + + + EAL4+ +
ALC_FLR.3 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Sybase Adaptive Server Enterprise 15.0.1   +
+ +
+ + + + + + +
+
+ Sybase, Inc. + + +   + + 2007-09-212011-05-27 + + + EAL4+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Netezza Performance Server V 3.0   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2008-01-21 – Netezza Performance Server (NPS) V4.0
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ Netezza Corporation + + +   + + 2007-09-172015-09-29 + + + EAL3+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + IBM WebSphere Federation Server v9.1   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2007-05-252012-09-06 + + + EAL4+ +
ALC_FLR.1 +
+ + US – National Information Assurance Partnership
US
+
+ + PostgreSQL Certified Version V8.1.5 for Linux   +
+ +
+ + + + + + +
+
+ NTT Data Corporation + + +   + + 2007-03-222013-10-07 + + + EAL1 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Database Engine of Microsoft SQL Server 2005 Enterprise Edition (English) SP1, Version/Build 9.00.2047.00   +
+ +
+ + + + + + +
+
+ Microsoft Corporation + + +   + + 2007-03-212019-09-01 + + + EAL1 + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + InterSystems Caché 5.1   +
+ +
+ + + + + + +
+
+ InterSystems Corporation + + +   + + 2007-02-152015-09-29 + + + EAL3 + + + CA – Canadian Common Criteria Scheme
CA
+
+ + Teradata Database V2R6.1   +
+ +
+ + + + + + +
+
+ Teradata Corporation + + +   + + 2007-02-152012-09-08 + + + EAL4+ +
ALC_FLR.3 +
+ + US – National Information Assurance Partnership
US
+
+ + IBM DB2 Enterprise Server Edition for Linux, Unix, and Windows   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2007-01-262012-09-06 + + + EAL4+ +
ALC_FLR.1 +
+ + US – National Information Assurance Partnership
US
+
+ + Oracle HTTP Server (OHS) 10g (10.1.2)   +
+ +
+ + + + + + +
+
+ Oracle Corporation + + +   + + 2007-01-012013-03-05 + + + EAL4 + + + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + HiRDB / Parallel Server Version 7 07-03   +
+ +
+ + + + + + +
+
+ Hitachi, Ltd. + + +   + + 2006-11-222013-10-07 + + + EAL1 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + HiRDB / Single Server Version 7 07-03   +
+ +
+ + + + + + +
+
+ Hitachi, Ltd. + + +   + + 2006-11-222013-10-07 + + + EAL1 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Symfoware Server Enterprise Extended Edition 8.0.1(with patch T000132QP-01 and T000133QP-01)   +
+ +
+ + + + + + +
+
+ Fujitsu Limited + + +   + + 2006-11-222013-10-07 + + + EAL1 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Symfoware Server Enterprise Extended Edition 7.0.2   +
+ +
+ + + + + + +
+
+ Fujitsu Limited + + +   + + 2006-10-312013-10-07 + + + EAL1 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Oracle Application Server 10g   +
+ +
+ + + + + + +
+
+ Oracle Corporation + + +   + + 2006-05-012013-03-05 + + + EAL4 + + + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + Adaptive Server Anywhere 9.0.1/9.0.2 Component of SQL Anywhere Studio 9   +
+ +
+ + + + + + +
+
+ iAnywhere Solutions inc + + +   + + 2006-04-242012-09-07 + + + EAL3+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Oracle Database 10g Enterprise Edition   + + + Oracle Corporation + + +   + + 2005-09-012013-03-05 + + + EAL4+ +
ALC_FLR.3 +
+ + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + Oracle Label Security 10g   +
+ +
+ + + + + + +
+
+ Oracle Corporation + + +   + + 2005-09-012013-03-05 + + + EAL4+ +
ALC_FLR.3 +
+ + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + Sybase IQ User Administration Version 12.6   +
+ +
+ + + + + + +
+
+ Sybase, Inc. + + +   + + 2005-02-112012-09-07 + + + EAL3+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Oracle Internet Directory 10g (9.0.4)   +
+ +
+ + + + + + +
+
+ Oracle Corporation + + +   + + 2005-02-012013-03-05 + + + EAL4+ +
ALC_FLR.3 +
+ + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + Oracle9i Label Security on SUSE Linux   + + + Oracle Corporation + + +   + + 2005-02-012013-03-05 + + + EAL4+ +
ALC_FLR.3 +
+ + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + Oracle9i Release 9.2.0.1.0 on SUSE Linux   +
+ +
+ + + + + + +
+
+ Oracle Corporation + + +   + + 2005-02-012013-03-05 + + + EAL4+ +
ALC_FLR.3 +
+ + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + Adaptive Server Enterprise Version 12.5.2   +
+ +
+ + + + + + +
+
+ Sybase, Inc. + + +   + + 2005-01-202012-09-07 + + + EAL4+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Sybase Adaptive Server Enterprise, Version 12.5.2   +
+ +
+ + + + + + +
+
+ Sybase, Inc. + + +   + + 2005-01-202012-09-07 + + + EAL4+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + IBM DB2 Content Manager for Multiplatforms V8.2   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2004-12-222012-09-06 + + + EAL3+ +
ALC_FLR.1 +
+ + US – National Information Assurance Partnership
US
+
+ + IBM WebSphere Application Server V5.0.2.8   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2004-12-022012-09-06 + + + EAL2+ +
ALC_FLR.1 +
+ + US – National Information Assurance Partnership
US
+
+ + Trusted RUBIX Version 5.0 Multilevel Security Relational Database Management System   +
+ +
+ + + + + + +
+
+ Infosystems Technology, Inc. + + +   + + 2004-10-152012-09-06 + + + EAL4 + + + US – National Information Assurance Partnership
US
+
+ + Teradata Database V2R5.0.2   +
+ +
+ + + + + + +
+
+ Teradata Corporation + + +   + + 2004-10-112012-09-07 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + IBM DB2 Version 8.2 DB2 Universal Database V8.2 Workgroup Server Edition: for Windows, Linux, AIX, and Solaris; DB2 Universal Database V8.2 Enterprise Server Edition: for Windows, Linux, AIX, and Solaris;DB2 Universal Database V8.2 Personal Edition: for Windows and Linux; DB2 Universal Database V8.2 Express Edition: for Windows and Linux   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2004-09-172012-09-06 + + + EAL4+ +
ALC_FLR.1 +
+ + US – National Information Assurance Partnership
US
+
+ + Symfoware Server Enterprise extended Edtion 4.0   +
+ +
+ + + + + + +
+
+ Fujitsu Limited + + +   + + 2003-11-262010-12-10 + + + EAL4 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Oracle9i Label Security   + + + Oracle Corporation + + +   + + 2003-09-012013-03-05 + + + EAL4+ +
ALC_FLR.3 +
+ + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + Oracle9i Release 9.2.0.1.0   + + + Oracle Corporation + + +   + + 2003-09-012013-03-05 + + + EAL4+ +
ALC_FLR.3 +
+ + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + Oracle8i Label Security   +
+ +
+ + + + + + +
+
+ Oracle Corporation + + +   + + 2002-05-012013-02-27 + + + EAL4 + + + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + Oracle8i Release 8.1.7.0.0   + + + Oracle Corporation + + +   + + 2001-07-012013-02-27 + + + EAL4 + + + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + Oracle8 Release 8.0.5.0.0   + + + Oracle Corporation + + +   + + 2000-10-012013-02-27 + + + EAL4 + + + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + Oracle7 Release 7.2.2.4.13   + + + Oracle Corporation + + +   + + 1998-09-012013-02-27 + + + EAL4 + + + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ProductVendorProduct
Certificate
Date Certificate
Issued
Certificate
Validity
Expiration
Date
(Archived)
ComplianceScheme
+ This list was generated on Friday, April 16, 2021, at 10:31 AM +
+ Detection Devices and Systems – 66 Certified Products +
+ + IDeal Citiz v2.1 Open platform   + + + Morpho B.V. + + +   + + 2015-10-022020-10-02 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Invincea FreeSpace™ v4.0 and Invincea Management Server v2.0   +
+ +
+ + + + + + +
+
+ Invincea, Inc. + + + CCRA Certificate + + 2015-04-302020-04-30 + + + EAL2+ +
ALC_FLR.1 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + MaxPatrol – Vulnerability and Compliance Management System V8.25.1.20707   +
+ +
+ + + + + + +
+
+ Positive Technologies + + +   + + 2015-04-292020-04-29 + + + EAL2 + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + McAfee Management for Optimized Virtual Environments Antivirus 3.0.0 with ePolicy Orchestrator 5.1.1   +
+ +
+ + + + + + +
+
+ McAfee, Inc. + + + CCRA Certificate + + 2014-11-242019-11-24 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Sourcefire 3D System Version 5.2.0.1   + + + Sourcefire Inc. + + +   + + 2014-08-062016-03-21 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Sourcefire 3D System Version 5.2.0.1   + + + Sourcefire Inc. + + +   + + 2014-08-062016-03-21 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Juniper Networks LN1000-V Mobile Secure Router and SRX650 Services Gateway, Running JUNOS 11.2S4   +
+ +
+ + + + + + +
+
+ Juniper Networks, Inc. + + +   + + 2013-04-222015-04-22 + + + EAL4+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Log Radar v3.2.15 with modules Console, Collector and Archiver   +
+ +
+ + + + + + +
+
+ TecForte Sdn Bhd + + +   + + 2013-02-132019-09-01 + + + EAL2 + + + MY – CyberSecurity Malaysia
MY
+
+ + Imperva SecureSphere Version 9.0   + + + IMPERVA, Inc. + + +   + + 2012-12-282014-12-31 + + + EAL2+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + NetIQ® Sentinel™ Version 7.0.1   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2015-01-09 – NetIQ® Sentinel™ 7.2.1
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ NetIQ, Incorporated + + +   + + 2012-12-202018-04-19 + + + EAL3+ +
ALC_FLR.1 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Trustwave WebDefend Enterprise Software Version 5.1 SP1   +
+ +
+ + + + + + +
+
+ Trustwave Holdings, Inc. + + +   + + 2012-12-202018-04-19 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + LogRhythm 6.0.4   + + + LogRhythm, Inc. + + +   + + 2012-11-302014-12-31 + + + EAL2+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + McAfee® Deep Defender™ 1.0.1 and ePolicy Orchestrator 4.6.1   +
+ +
+ + + + + + +
+
+ McAfee, Inc. + + +   + + 2012-10-122018-04-19 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Solera DeepSee Software v6.5.0 and Solera DeepSee Central Manager v6.5.0   +
+ +
+ + + + + + +
+
+ Solera Networks, Inc. + + +   + + 2012-10-122018-04-19 + + + EAL3+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + ArcSight ESM 4.5 SP3 Patch 2 (software only) with ArcSight Console, ArcSight Manager, ArcSight Database and ArcSight SmartConnectors: Tenable Nessus NSR, Check Point OPSEC NG, Snort DB and Cisco Secure IPS SDEE   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2014-06-09 – HP ArcSight Enterprise Security Management (ESM) 6.0c Patch 1
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ ArcSight, LLC + + +   + + 2012-10-052015-06-05 + + + EAL3+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Tenable SecurityCenter 4.4 (SC) and Components: 3D Tool 2.0.1 Log Correlation Engine 3.6 (LCE), Passive Vulnerability Scanner 3.6 (PVS), Nessus 5.0.1, and xTool 2.1   + + + Tenable Network Security, Inc. + + +   + + 2012-10-012014-11-01 + + + EAL2+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Fidelis XPS   +
+ +
+ + + + + + +
+
+ Fidelis Security Systems, Inc. + + +   + + 2012-08-072014-11-01 + + + EAL2+ +
ALC_FLR.3 +
+ + US – National Information Assurance Partnership
US
+
+ + AirTight Networks SpectraGuard Enterprise, Version 6.5   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2014-12-23 – AirTight Networks SpectraGuard Enterprise Version 7.0
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ AirTight Networks, Inc. + + +   + + 2012-06-112015-02-26 + + + EAL2+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Sourcefire 3D System (Sourcefire Defense Center: models DC750, DC1500, and DC3500; Sourcefire 3D Sensor licensed for IPS: models 3D500, 3D1000, 3D2000, 3D7110, 3D7120, 3D8120, 3D8130, 3D8140, and 3D8250; Sourcefire Virtual Defense Center, Sourcefire Virtual 3D Sensor licensed for IPS) Version 4.10.2.4 (SEU568)   +
+ +
+ + + + + + +
+
+ Sourcefire Inc. + + +   + + 2012-05-232014-11-01 + + + EAL2+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + IBM Proventia GX 4.1 for GX4004, GX5008, GX5108, GX5208, GX6116 with SiteProtector 2.0 SP 8.1   + + + IBM Internet Security Systems, Inc. + + +   + + 2012-04-262014-11-01 + + + EAL2+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + WatchGuard XCS v9.2   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2013-04-04 – WatchGuard XCS Server v9.2.2 (April 2013)
    + Maintenance Report + +
  2. + +
    +
  3. + 2013-10-25 – WatchGuard XCS Server v9.2.2
    + Maintenance Report + +
  4. + +
    +
  5. + 2013-11-29 – WatchGuard XCS Server v9.2.2 (November 2013)
    + Maintenance Report + +
  6. + +
+
+ + +
+
+ WatchGuard Technologies, Inc. + + +   + + 2012-04-202017-05-15 + + + EAL4+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + McAfee Host Intrusion Prevention 8 and ePolicy Orchestrator 4.5   + + + McAfee, Inc. + + +   + + 2011-11-182014-11-01 + + + EAL2+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + FireEye v6.0   + + + FireEye Incorporated + + +   + + 2011-09-212014-11-01 + + + EAL2+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + HP TippingPoint Intrusion Prevention Systems (S6100N, S5100N, S2500N, S1400N, S660N running TippingPoint OS v3.2.1; S330, S110, S10 running TippingPoint OS v3.1.4)   + + + Hewlett-Packard Company + + +   + + 2011-08-312014-11-01 + + + EAL3+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + IBM Internet Security Systems GX6116 Network IPS Security Appliance Version 2.2 and SiteProtector Version 2.0 Service Pack 7.0   + + + IBM Corporation + + +   + + 2011-05-312014-11-01 + + + EAL2+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Sourcefire 3D System (Sourcefire Defense Center: models DC500, DC1000, and DC3000; Sourcefire 3D Sensor licensed for IPS: models 3D500, 3D1000, 3D2000, 3D2100, 3D2500, 3D3500, 3D4500, 3D6500 and 3D9900; Sourcefire Virtual Defense Center, Sourcefire Virtual 3D Sensor licensed for IPS) Version 4.9.1.4 (SEU 371)   +
+ +
+ + + + + + +
+
+ Sourcefire Inc. + + +   + + 2011-04-062014-11-01 + + + EAL2+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Q1 Labs QRadar Release 7.0.0i   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2012-11-20 – QRadar Release 7.0 Maintenance Release 5
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Q1 Labs, Inc. + + +   + + 2011-02-102014-12-31 + + + EAL3+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + McAfee Vulnerability Manager 6.8   +
+ +
+ + + + + + +
+
+ McAfee, Inc. + + +   + + 2011-01-312014-11-01 + + + EAL2+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + IronPort Email Security Appliances (ESA), comprising the C160, C370, X1060, and X1070 appliance models, running IronPort AsyncOS software, version 7.1, and the C670 appliance model running IronPort AsyncOS version 7.3   +
+ +
+ + + + + + +
+
+ Cisco Systems, Inc. + + +   + + 2010-12-012014-11-01 + + + EAL2+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + IBM Proventia G 1.3 and SiteProtector 2.0 Service Pack 6.1 with Reporting Module   +
+ +
+ + + + + + +
+
+ IBM Internet Security Systems, Inc. + + +   + + 2010-11-042014-11-01 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + FireEye 2000, 4000, and 7000 MAS and MPS with CMS v5.0   +
+ +
+ + + + + + +
+
+ FireEye Incorporated + + +   + + 2010-10-112014-11-01 + + + EAL2+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Sourcefire 3D System (Sourcefire Defense Center: models DC500, DC1000, and DC3000; and Sourcefire 3D Sensor with IPS: models 3D500, 3D1000, 3D2000, 3D2100, 3D2500, 3D3500, 3D3800, 3D4500, 3D5800, 3D6500, and 3D9800) Version 4.8   +
+ +
+ + + + + + +
+
+ Sourcefire Inc. + + +   + + 2010-06-232014-11-01 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + Tenable Security Center 3.2 (SC3) with 3D Tool 1.2 (3DT), Log Correlation Engine 2.0.2 (LCE), Passive Vulnerability Scanner 3.0 (PVS), and Nessus Scanner 3.0.4 (Nessus)   +
+ +
+ + + + + + +
+
+ Tenable Network Security, Inc. + + +   + + 2010-01-312014-11-01 + + + EAL2+ + + + US – National Information Assurance Partnership
US
+
+ + AirMagnet Enterprise System 8.5   +
+ +
+ + + + + + +
+
+ AirMagnet, Inc. + + +   + + 2009-12-142019-09-01 + + + EAL2 + + + NO – SERTIT
NO
+
+ + NitroSecurity Intrusion Prevention System v8.0.0   +
+ +
+ + + + + + +
+
+ NitroSecurity, Inc. + + +   + + 2009-10-272014-05-08 + + + EAL3+ + + + US – National Information Assurance Partnership
US
+
+ + Securify Version 6.0   +
+ +
+ + + + + + +
+
+ McAfee, Inc. + + +   + + 2009-08-212014-05-08 + + + EAL2+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + LogLogic v4.6.1 Open Log Management Platform   +
+ +
+ + + + + + +
+
+ LogLogic, Inc. + + +   + + 2009-07-092012-07-20 + + + EAL2+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Top Layer Networks IPS 5500 E Version 5.21 on Models IPS 5500-150E, IPS 5500-500E, and IPS 5500-1000E   +
+ +
+ + + + + + +
+
+ Top Layer Networks + + +   + + 2009-04-102012-07-20 + + + EAL4 + + + US – National Information Assurance Partnership
US
+
+ + SecureSphere 6   +
+ +
+ + + + + + +
+
+ IMPERVA, Inc. + + +   + + 2009-02-202012-07-20 + + + EAL2+ +
ALC_FLR.1 +
+ + US – National Information Assurance Partnership
US
+
+ + Triumfant Resolution Manager 4.2   +
+ +
+ + + + + + +
+
+ Triumfant, Inc + + +   + + 2009-02-042015-09-29 + + + EAL2+ +
ADV_SPM.1 +
ALC_FLR.1 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + ExaProtect Security Management Solution (SMS)   +
+ +
+ + + + + + +
+
+ Exaprotect + + +   + + 2008-11-272019-09-01 + + + EAL2+ +
AVA_VLA.2 +
AVA_MSU.1 +
ADV_HLD.2 +
ADV_LLD.1 +
ADV_IMP.1 +
ALC_DVS.1 +
ALC_FLR.3 +
ALC_TAT.1 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Enterasys Dragon Intrusion Defense System Version 7.2.3 Running on Dragon Appliances   +
+ +
+ + + + + + +
+
+ Enterasys Networks, Inc + + +   + + 2008-10-172015-09-29 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + TippingPoint Intrusion Protection System (IPS) E-Series (5000E, 2400E, 1200E, 600E, 210E), software version 2.5.3.6933   +
+ +
+ + + + + + +
+
+ TippingPoint Technologies, Inc. + + +   + + 2008-09-052012-07-20 + + + EAL2+ +
ALC_FLR.2 +
AVA_MSU.1 +
+ + US – National Information Assurance Partnership
US
+
+ + Symantec™ Endpoint Protection Version 11.0   +
+ +
+ + + + + + +
+
+ Symantec Corporation + + +   + + 2008-06-252015-09-29 + + + EAL2+ +
ALC_FLR.2 +
AVA_MSU.1 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Cisco Intrusion Detection System Sensor Appliance IDS-4200 series Version 4.1(3)   + + + Cisco Systems, Inc. + + +   + + 2008-05-282012-07-20 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + Third Brigade Deep Security 5.0   +
+ +
+ + + + + + +
+
+ Third Brigade, Inc. + + +   + + 2008-04-082015-09-29 + + + EAL3+ +
ALC_FLR.1 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + AirDefense Enterprise 7.2   +
+ +
+ + + + + + +
+
+ AirDefense Inc. + + +   + + 2008-03-102012-07-20 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + Cisco Intrusion Prevention System (IPS) v6.0 Cisco 4200 Series Sensors (IPS 4255,IDS4250, IPS4240, IDS4215, IPS4260); Cisco AIP-SSM-10 and AIP-SSM-20 for the ASA; NM-CIDS; IDSM-2   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2009-12-10 – Cisco IPS v6.2(1) IPS 4200 Series Sensors (IPS-4240, IPS-4255, IPS-4260, IPS-4270); Cisco AIP-SSM-10, AIP-SSM-20 and AIP-SSM-40; IDSM-2, AIM-IPS and NME-IPS
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Cisco Systems, Inc. + + +   + + 2007-05-312012-09-06 + + + EAL2+ +
ALC_FLR.1 +
+ + US – National Information Assurance Partnership
US
+
+ + McAfee HIP 6.0.2 and ePolicy Orchestrator 3.6.1 patch 1   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2008-07-21 – McAfee Host Intrusion Prevention Version 7.00 McAfee ePolicy Orchestrator Version 3.6.1 Patch 1
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ McAfee, Inc. + + +   + + 2007-05-172012-09-06 + + + EAL3 + + + US – National Information Assurance Partnership
US
+
+ + RFprotect™ Distributed v6.1.2, RFprotect™ Sensor v6.1.22, and RFprotect™ Mobile v6.1.2   +
+ +
+ + + + + + +
+
+ Aruba Networks + + +   + + 2007-05-152015-09-29 + + + EAL2 + + + CA – Canadian Common Criteria Scheme
CA
+
+ + Cisco Security Agent   +
+ +
+ + + + + + +
+
+ Cisco Systems, Inc. + + +   + + 2007-04-012012-09-06 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + Vanguard Enforcer Version 7 Release 1   +
+ +
+ + + + + + +
+
+ Vanguard Integrity Professionals, Inc. + + +   + + 2007-03-082019-09-01 + + + EAL3+ +
ALC_FLR.1 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Cryptek Inc. DiamondTEK (DiamondCentral (NSC Application S/W version 2.4.0.5, NSD-Prime F/W version 2.4.0.3) and NSD (DiamondLink, DiamondPak, DiamondVPN, DiamondSAT, DiamondUTC) F/W version 2.4.0.3) 04, CP 106), Diamond VPN (also sold as CV100); DiamondSAT   +
+ +
+ + + + + + +
+
+ Cryptek Inc. + + +   + + 2007-02-202012-09-06 + + + EAL4+ +
AVA_VLA.3 +
+ + US – National Information Assurance Partnership
US
+
+ + QRadar V5.1.2   +
+ +
+ + + + + + +
+
+ Q1 Labs, Inc. + + +   + + 2007-01-262012-09-07 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + TESS TMS V4.5   +
+ +
+ + + + + + +
+
+ INFOSEC Technologies + + +   + + 2006-12-232019-06-01 + + + EAL4 + + + KR – IT Security Certification Center(ITSCC)
KR
+
+ + Symantec™ Critical System Protection v5.0.5   +
+ +
+ + + + + + +
+
+ Symantec Corporation + + +   + + 2006-11-272015-09-29 + + + EAL2+ +
ALC_FLR.1 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + ArcSight V3.0   +
+ +
+ + + + + + +
+
+ ArcSight, LLC + + +   + + 2006-09-292012-09-06 + + + EAL3+ +
ALC_FLR.1 +
+ + US – National Information Assurance Partnership
US
+
+ + AirDefense Guard Version 3.5   +
+ +
+ + + + + + +
+
+ AirDefense Inc. + + +   + + 2005-07-282012-09-06 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + ForeScout ActiveScout V3.0.5/CounterACT V4.1.0   +
+ +
+ + + + + + +
+
+ ForeScout Technologies, Inc. + + +   + + 2005-07-112012-09-06 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + Sourcefire Intrusion Detection System (NS 500, NS1000, NS 2000, NS 2100, NS 3000, MC 1000, MC 3000)   +
+ +
+ + + + + + +
+
+ Sourcefire Inc. + + +   + + 2005-06-032012-09-07 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + NFR SentivistT v4.0.2 - Updated to v4.0.6 and Sentivist Sensor Models 310C, 320C and 320F   +
+ +
+ + + + + + +
+
+ NFR Security, Inc. + + +   + + 2005-04-222016-04-05 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + Enterasys Dragon-EALT Intrusion Defense System Version 1.0   + + + Enterasys Networks, Inc + + +   + + 2004-08-302012-09-06 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + Lancope StealthWatch   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2006-02-13 – StealthWatch NC and Xe containing StealthWatch V5.1.0 SW
    + Maintenance Report + +
  2. + +
    +
  3. + 2006-04-14 – StealthWatch NC and Xe containing StealthWatch V5.1.0 SW PP Update
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ Lancope, Inc. + + +   + + 2004-06-302012-09-06 + + + EAL2+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Symantec Manhunt Version 2.11   +
+ +
+ + + + + + +
+
+ Symantec Corporation + + +   + + 2003-12-012012-09-07 + + + EAL3 + + + US – National Information Assurance Partnership
US
+
+ + TippingPoint UnityOne Version 1.2   +
+ +
+ + + + + + +
+
+ TippingPoint Technologies, Inc. + + +   + + 2003-08-012012-09-07 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + Intrusion, Inc. SecureNet Pro Intrusion Detection System Version 4.1   +
+ +
+ + + + + + +
+
+ Intrusion, Inc. + + +   + + 2002-12-012012-09-06 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ProductVendorProduct
Certificate
Date Certificate
Issued
Certificate
Validity
Expiration
Date
(Archived)
ComplianceScheme
+ This list was generated on Friday, April 16, 2021, at 10:31 AM +
+ ICs, Smart Cards and Smart Card-Related Devices and Systems – 921 Certified Products +
+ + CELES-c002 Machine Readable Electronic Document, ICAO Application - EAC-PACE-AA, version 1   +
+ +
+ + + + + + +
+
+ Eurowitcel S.A. + + + CCRA Certificate + + 2020-11-022020-11-02 + + + EAL5+ +
ALC_DVS.1 +
AVA_VAN.5 +
+ + NL – NSCIB operated by
NL
+
+ + JSAFE3_EPASS BAC (Rev. M)   + + + STMicroelectronics S.r.l et STMicroelectronics + + +   + + 2019-04-092019-04-09 + + + EAL4+ +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + JSAFE3_EPASS EAC (Rev. I)   +
+ +
+ + + + + + +
+
+ STMicroelectronics S.r.l et STMicroelectronics + + +   + + 2019-04-092019-04-09 + + + EAL4+ +
ALC_DVS.2 +
ATE_DPT.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Xaica-α PLUS ePassport on MTCOS Pro 2.5 with SAC (BAC+PACE) and Active Authentication / ST31G480 C01   +
+ +
+ + + + + + +
+
+ MaskTech International GmbH + + + CCRA Certificate + + 2019-01-252019-12-03 + + + EAL4+ +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Xaica-α PLUS ePassport on MTCOS Pro 2.5 with SAC (PACE) and Active Authentication / ST31G480 C01   +
+ +
+ + + + + + +
+
+ MaskTech International GmbH + + + CCRA Certificate + + 2019-01-252019-12-03 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + J-SIGN version 1.8.9   +
+ +
+ + + + + + +
+
+ STMicroelectronics S.r.l et STMicroelectronics + + +   + + 2019-01-112019-01-11 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ST33TPHF2E mode TPM 2.0 TPM Firmware versions 73.08 (0x49 0x08) et 73.09 (0x49 0x09)   +
+ +
+ + + + + + +
+
+ STMicroelectronics + + +   + + 2018-09-242018-09-24 + + + EAL4+ +
ALC_FLR.1 +
AVA_VAN.4 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + AKIS GEZGIN_I v1.0.0.0 BAC Configuration with Active Authentication   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2019-07-11 – AKiS GEZGiN_I BAC Configuration with Active Authentication Maintenance
    + Maintenance Report + + Maintenance ST + +
  2. + +
    +
  3. + 2020-06-05 – AKIS GEZGIN_I v1.1.0.0 BAC Configuration with Active Authentication Maintenance
    + Maintenance Report + + Maintenance ST + +
  4. + +
+
+ + +
+
+ TÜBİTAK BİLGEM UEKAE + + +   + + 2018-02-212021-02-20 + + + EAL4+ +
ALC_DVS.2 +
+ + TR – TSE (Turkish Standards Institution) Common Criteria Certification Scheme
TR
+
+ + AKIS GEZGIN_I v1.0.0.0 SAC & EAC Configuration   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2019-07-11 – AKiS GEZGiN_I SAC&EAC Configuration Maintenance
    + Maintenance Report + + Maintenance ST + +
  2. + +
    +
  3. + 2020-06-05 – AKIS GEZGIN_I v1.1.0.0 SAC&EAC Configuration Maintenance
    + Maintenance Report + + Maintenance ST + +
  4. + +
+
+ + +
+
+ TÜBİTAK BİLGEM UEKAE + + +   + + 2018-02-212021-02-20 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + TR – TSE (Turkish Standards Institution) Common Criteria Certification Scheme
TR
+
+ + ST33JM2M0 B02 including optional cryptographic library Neslib and optional technology MIFARE4Mobile   +
+ +
+ + + + + + +
+
+ STMicroelectronics + + +   + + 2017-09-052017-09-05 + + + EAL5+ +
ADV_IMP.2 +
ADV_INT.3 +
ADV_TDS.5 +
ALC_CMC.5 +
ALC_DVS.2 +
ALC_FLR.1 +
ALC_TAT.3 +
ASE_TSS.2 +
ATE_COV.3 +
ATE_FUN.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Firmware Libraries V2.x on P40C008/012/024/040/072 VE.001   + + + NXP Semiconductors Germany GmbH, Business Unit Security and Connectivity + + + CCRA Certificate + + 2017-07-272020-12-22 + + + EAL5+ +
ALC_DVS.2 +
ASE_TSS.2 +
AVA_VAN.5 +
+ + NL – NSCIB operated by
NL
+
+ + NXP Secure Smart Card Controller P40C008/012/024/040/072 VE.001   + + + NXP Semiconductors Germany GmbH, Business Unit Security and Connectivity + + + CCRA Certificate + + 2017-05-042020-08-18 + + + EAL5+ +
ALC_DVS.2 +
ASE_TSS.2 +
AVA_VAN.5 +
+ + NL – NSCIB operated by
NL
+
+ + Plate-forme STSAFE-J, en configuration fermée, version 1.1.4, sur le composant ST31H320 A03   + + + STMicroelectronics S.r.l et STMicroelectronics + + +   + + 2017-03-232017-03-23 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Crypto Library V2.0 on P60x017/041PVE   + + + NXP Semiconductors Germany GmbH, Business Unit Security and Connectivity + + +   + + 2017-03-202020-07-27 + + + EAL6+ +
ALC_FLR.1 +
ASE_TSS.2 +
+ + NL – NSCIB operated by
NL
+
+ + Microcontrôleurs sécurisés ST33G1M2A et ST33G1M2M révision G, Firmware révision 1.3.2, incluant optionnellement la bibliothèque cryptographique Neslib 4.2.10   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2019-01-11 – Microcontrôleurs sécurisés ST33G1M2A et ST33G1M2M révision G, Firmware révision 1.3.2, incluant optionnellement la bibliothèque cryptographique Neslib 4.2.10
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ STMicroelectronics + + +   + + 2017-02-162017-02-16 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + UKİS v2.2.8H   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2017-03-10 – UKİS v2.2.8H
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ TÜBİTAK BİLGEM UEKAE + + +   + + 2016-06-152019-06-15 + + + EAL4+ +
AVA_VAN.5 +
+ + TR – TSE (Turkish Standards Institution) Common Criteria Certification Scheme
TR
+
+ + Crypto Library V1.0 on P60x144/080yVA/yVA(Y/B/X)/yVE   + + + NXP Semiconductors Germany GmbH, Business Unit Security and Connectivity + + +   + + 2016-06-022017-12-19 + + + EAL6+ +
ALC_FLR.3 +
ASE_TSS.2 +
+ + NL – NSCIB operated by
NL
+
+ + SLS 32TLC00xS(M) CIPURSE™4move v1.00.00   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2016-10-04 – SLS 32TLC00xS(M) CIPURSE™4move v1.00.01
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ Infineon Technologies AG + + +   + + 2016-04-082021-04-08 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Infineon Technologies Security Controller M5074 G11 with optional SCL v1.05.001 library and with specific IC-dedicated firmware   + + + Infineon Technologies AG + + +   + + 2016-03-172021-03-17 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + NXP Secure Smart Card Controller P6021y VB including IC Dedicated Software --- The certificate comprises four major configurations with two different EAL levels. For details see the ST. P6021P VB: EAL6 augmented by ALC_FLR.1, ASE_TSS.2 P6021M/D/J VB: EAL 5 augmented by AVA_VAN.5, ALC_DVS.2, ASE_TSS.2   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2016-06-13 – NXP Smart Card Controller P6021y VB with IC Dedicated Software
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ NXP Semiconductors Germany GmbH Business Line Identification + + +   + + 2016-03-172021-03-17 + + + EAL5+ +
ALC_DVS.2 +
ASE_TSS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Plateforme Java Card MultiApp Essential v1.0, en configuration ouverte, sur le composant Infineon M7794 A12 ou G12   + + + Gemalto - Infineon Technologies AG + + +   + + 2016-02-262021-02-26 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + BCM_SPS02 Secure Processing System with IC Dedicated Software Version 1.0   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2016-06-01 – BCM_SPS02 Secure Processing System with Firmware version 002.010 or 002.020
    + Maintenance Report + + Maintenance ST + +
  2. + +
    +
  3. + 2016-07-27 – BCM_SPS02 Secure Processing System with Firmware version 002.010 or 002.020
    + Maintenance Report + +
  4. + +
    +
  5. + 2016-12-02 – BCM_SPS02 Secure Processing System with Firmware version 002.030
    + Maintenance Report + + Maintenance ST + +
  6. + +
    +
  7. + 2017-08-09 – BCM_SPS02 Secure Processing System with IC Dedicated Software Version 002.030
    + Maintenance Report + +
  8. + +
+
+ + +
+
+ Broadcom Corporation + + +   + + 2016-02-252021-02-25 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + NXP Secure Smart Card Controller P60D024/016/012yVB(Y/Z/A)/yVF with IC Dedicated Software   + + + NXP Semiconductors Germany GmbH Business Line Identification + + +   + + 2016-02-182021-02-18 + + + EAL6+ +
ALC_FLR.1 +
ASE_TSS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Application IAS V4.2.0.B sur la plateforme JavaCard ouverte MultiApp V3.1 masquée sur le composant P60D144PVA (Version du patch : 1.3)   + + + Gemalto / NXP Semiconductors + + +   + + 2016-02-092021-02-09 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Application IAS V4.2.0.B sur la plateforme JavaCard ouverte MultiApp V3.1 masquée sur le composant P60D144PVA (Version du patch : 1.3)   + + + Gemalto / NXP Semiconductors + + +   + + 2016-02-092021-02-09 + + + EAL5+ +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + NXP Secure Smart Card Controller P60x144/080yVA/yVA(Y/B/X)/yVE with IC Dedicated Software   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2018-08-17 – NXP Secure Smart Card Controller P60x144/080yVA/yVA(Y/B/X)/yVE with IC Dedicated Software
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ NXP Semiconductors Germany GmbH Business Line Identification + + +   + + 2016-02-052021-02-05 + + + EAL6+ +
ALC_FLR.1 +
ASE_TSS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + S3FT9MH/S3FT9MV/S3FT9MG 16-bit RISC Microcontroller for Smart Card with optional Secure RSA and ECC Library   + + + Samsung Electronics Co., Ltd. / Trusted Labs + + +   + + 2016-01-292021-01-29 + + + EAL6+ +
ASE_TSS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Microcontrôleurs Samsung S3FT9MF/S3FT9MT/S3FT9MS avec bibliothèques optionnelles RSA et ECC   + + + Samsung Electronics Co., Ltd. / Trusted Labs + + +   + + 2016-01-182021-01-18 + + + EAL6+ +
ASE_TSS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ID-One ePass IDL Full EAC v2 en configuration BAP masqué sur les composants P60x080PVC/PVG   +
+ +
+ + + + + + +
+
+ Oberthur Technologies / NXP Semiconductors GmbH + + +   + + 2016-01-152021-01-15 + + + EAL4+ +
ADV_FSP.5 +
ADV_INT.2 +
ADV_TDS.4 +
ALC_CMC.5 +
ALC_DVS.2 +
ALC_TAT.2 +
ATE_DPT.3 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ID-One ePass IDL Full EAC v2 en configuration EAC et PACE masqué sur les composants P60x080PVC/PVG   +
+ +
+ + + + + + +
+
+ Oberthur Technologies / NXP Semiconductors GmbH + + +   + + 2016-01-152021-01-15 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ID-One ePass IDL Full EAC v2 en configuration EAC masqué sur les composants P60x080PVC/PVG   +
+ +
+ + + + + + +
+
+ Oberthur Technologies / NXP Semiconductors GmbH + + +   + + 2016-01-152021-01-15 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ID-One ePass IDL Full EAC v2 en configuration PACE masqué sur les composants P60x080PVC/PVG   +
+ +
+ + + + + + +
+
+ Oberthur Technologies / NXP Semiconductors GmbH + + +   + + 2016-01-152021-01-15 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Plateforme Java Card MultiApp Essential v1.0, en configuration ouverte, sur le composant Infineon M7793 A12 ou G12   + + + Gemalto - Infineon Technologies AG + + +   + + 2016-01-052021-01-05 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + STARCOS 3.6 COSGKV C1   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2017-09-19 – Reassessment - STARCOS 3.6 COSGKV C1
    + Maintenance Report + + Maintenance ST + +
  2. + +
    +
  3. + 2018-08-02 – STARCOS 3.7 COS GKV
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ G+D Mobile Security GmbH + + +   + + 2015-12-292020-12-29 + + + EAL4+ +
ALC_DVS.2 +
ATE_DPT.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + ST31H320 A01 including optional cryptographic library NESLIB   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2016-04-20 – ANSSI-CC-2015/59-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ STMicroelectronics + + +   + + 2015-12-282020-12-28 + + + EAL5+ +
ADV_IMP.2 +
ADV_INT.3 +
ADV_TDS.5 +
ALC_CMC.5 +
ALC_DVS.2 +
ALC_FLR.1 +
ALC_TAT.3 +
ATE_COV.3 +
ATE_FUN.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + XSmart e-Passport V1.3 R3 on S3CT9KW/S3CT9KC/S3CT9K9   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2016-05-20 – 2016-05-20 [KECS-ISIS-0675a-2015]Maintenance Report(XSmart e-Passport V1.3 R3 on S3CT9KWS3CT9KCS3CT9K9)
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ LG CNS + + +   + + 2015-12-152020-12-15 + + + EAL5+ +
ADV_IMP.2 +
+ + KR – IT Security Certification Center(ITSCC)
KR
+
+ + XSmart e-Passport V1.4 BAC with AA on M7892   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2017-12-20 – [KECS-ISIS-0676a-2015]Maientenance Report(XSmart e-Passport V1.4 BAC with AA on M7892)
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ LG CNS + + +   + + 2015-12-152020-12-15 + + + EAL4+ +
ALC_DVS.2 +
ATE_DPT.2 +
+ + KR – IT Security Certification Center(ITSCC)
KR
+
+ + XSmart e-Passport V1.4 EAC with SAC on M7892   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2017-12-20 – [KECS-ISIS-0677a-2015]Maientenance Report(XSmart e-Passport V1.4 EAC with SAC on M7892)
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ LG CNS + + +   + + 2015-12-152020-12-15 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + KR – IT Security Certification Center(ITSCC)
KR
+
+ + NXP JAVA OS1 ChipDoc v1.0 ICAO BAC with optional AA on NXP P60D080JVC   + + + Athena Smartcard Solutions / NXP Semiconductors + + +   + + 2015-12-072020-12-07 + + + EAL4+ +
ADV_FSP.5 +
ADV_INT.2 +
ADV_TDS.4 +
ALC_CMS.5 +
ALC_DVS.2 +
ALC_TAT.2 +
ATE_DPT.3 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + NXP JAVA OS1 ChipDoc v1.0 ICAO EAC-SAC with optional AA on P60D080JVC   + + + Athena Smartcard Solutions / NXP Semiconductors + + +   + + 2015-12-072020-12-07 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Common Criteria Protection Profile for Application Firmware of Secure Smartcard Reader for National Electronic Identity Verification System   +
+ +
+ + + + + + +
+
+ TÜBİTAK BİLGEM UEKAE + + +   + + 2015-12-032018-12-03 + + + EAL4+ +
ALC_DVS.2 +
+ + TR – TSE (Turkish Standards Institution) Common Criteria Certification Scheme
TR
+
+ + Infineon Technologies Smart Card IC (Security Controller) M5072 G11 with optional RSA v1.03.006, EC v1.03.006 and Toolbox v1.03.006 with specific IC dedicated software   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2016-03-15 – Infineon Technologies AG Smartcard IC (Security Controller) M5072 G11 including optional Software Libraries RSA-EC-Toolbox
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ Infineon Technologies AG + + +   + + 2015-11-232020-11-23 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Sealys eTravel SCOSTA–CL on G265 - V3c   + + + Gemalto + + +   + + 2015-11-192020-11-19 + + + EAL4+ +
ALC_DVS.2 +
+ + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + Sealys eTravel SCOSTA–CL on G265 - V3c   + + + Gemalto + + +   + + 2015-11-192020-11-19 + + + EAL4+ +
ALC_DVS.2 +
+ + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + Sealys eTravel SCOSTA–CL on G265 - V3c   + + + Gemalto + + +   + + 2015-11-192020-11-19 + + + EAL4+ +
ALC_DVS.2 +
+ + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + Sealys eTravel SCOSTA–CL on G265 - V3c   + + + Gemalto + + +   + + 2015-11-192020-11-19 + + + EAL4+ +
ALC_DVS.2 +
+ + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + ID-One ePass Full EAC v2 en configuration BAC masqué sur les composants P60x080PVC/PVG   + + + Oberthur Technologies / NXP Semiconductors GmbH + + +   + + 2015-11-182020-11-18 + + + EAL4+ +
ADV_INT.2 +
ADV_TDS.4 +
ALC_CMS.5 +
ALC_DVS.2 +
ALC_TAT.2 +
ATE_DPT.3 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ID-One ePass Full EAC v2 en configuration EAC et PACE masqué sur les composants P60x080PVC/PVG   + + + Oberthur Technologies / NXP Semiconductors GmbH + + +   + + 2015-11-182020-11-18 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ID-One ePass Full EAC v2 en configuration EAC masqué sur les composants P60x080PVC/PVG   + + + Oberthur Technologies / NXP Semiconductors GmbH + + +   + + 2015-11-182020-11-18 + + + EAL5+ + + + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ID-One ePass Full EAC v2 en configuration PACE masqué sur les composants P60x080PVC/PVG   + + + Oberthur Technologies / NXP Semiconductors GmbH + + +   + + 2015-11-182020-11-18 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Microcontrôleurs Samsung S3FT9MF/S3FT9MT/S3FT9MS avec bibliothèques optionnelles RSA et ECC   + + + Samsung Electronics Co., Ltd. + + +   + + 2015-11-162020-11-16 + + + EAL6+ +
ASE_TSS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Infineon Security Controller M7893 B11 with optional RSA2048/4096 v1.03.006, EC v1.03.006, SHA-2 v1.01 libraries and Toolbox v1.03.006 and with specific IC dedicated software (firmware)   + + + Infineon Technologies AG + + +   + + 2015-11-132020-11-13 + + + EAL6+ +
ALC_FLR.1 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Infineon Security Controller M5073 G11 with optional RSA2048/4096 v2.03.008, EC v2.03.008, SHA-2 v1.01 and Toolbox v2.03.008 libraries and with specific IC dedicated software (firmware)   + + + Infineon Technologies AG + + +   + + 2015-11-112020-11-11 + + + EAL6+ +
ALC_FLR.1 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Infineon Security Controller M7892 B11 with optional RSA2048/4096 v1.02.013, EC v1.02.013, SHA-2 v1.01 and Toolbox v1.02.013 libraries and with specific IC dedicated software (firmware)   + + + Infineon Technologies AG + + +   + + 2015-11-032020-11-03 + + + EAL6+ +
ALC_FLR.1 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Infineon smart card IC (Security Controller) M9900 A22 and G11, M9905, M9906 A11 with optional RSA v1.03.006, EC v1.03.006, Toolbox v1.03.006 and Flash Translation Layer V1.01.0008 libraries with specific IC dedicated software   + + + Infineon Technologies AG + + +   + + 2015-11-032020-11-03 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Carte VITALE 2 - Application ADELE: Composant SB23ZL48 masqué par le logiciel SESAM VITALE v1.0.4 avec correctif version 4   + + + MORPHO / ST Microelectronics + + +   + + 2015-10-232020-10-23 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Carte VITALE 2 - Application VITALE: Composant SB23ZL48 masqué par le logiciel SESAM VITALE v1.0.4 avec correctif version 4   + + + MORPHO / ST Microelectronics + + +   + + 2015-10-232020-10-23 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Crypto Library V1.0 on P60D024/016/012PVB(Y/Z/A)/PVF   + + + NXP Semiconductors Germany GmbH, Business Unit Security and Connectivity + + +   + + 2015-10-162018-02-27 + + + EAL6+ +
ALC_FLR.1 +
ASE_TSS.2 +
+ + NL – NSCIB operated by
NL
+
+ + Crypto Library V1.0 on P60x144/080PVA/PVA(Y/B)   + + + NXP Semiconductors Germany GmbH, Business Unit Security and Connectivity + + +   + + 2015-10-162017-12-19 + + + EAL6+ +
ALC_FLR.1 +
ASE_TSS.2 +
+ + NL – NSCIB operated by
NL
+
+ + Crypto Library V1.0 on P60x144/080yVA/yVA(B)   + + + NXP Semiconductors Germany GmbH, Business Unit Security and Connectivity + + +   + + 2015-10-162019-07-21 + + + EAL5+ +
ALC_DVS.2 +
ASE_TSS.2 +
AVA_VAN.5 +
+ + NL – NSCIB operated by
NL
+
+ + NXP JAVA OS1 ChipDoc v1.0 SSCD (J3K080/J2K080)   + + + Athena Smartcard Solutions Inc + + +   + + 2015-10-132020-10-13 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Application eTravel EAC v2.1, en configuration BAC, sur la plateforme ouverte ou fermée MultiApp V3.1 masquée sur le composant P60D144PVA (version du patch: 1.3)   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2016-05-20 – ANSSI-CC-2015/40-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Gemalto / NXP Semiconductors + + +   + + 2015-10-022020-10-02 + + + EAL4+ +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Application eTravel EAC v2.1, en configuration "EAC on BAC", sur la plateforme ouverte ou fermée MultiApp V3.1 masquée sur le composant P60D144PVA (version du patch: 1.3)   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2016-05-20 – ANSSI-CC-2015/41-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Gemalto / NXP Semiconductors + + +   + + 2015-09-282020-09-28 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Application eTravel EAC v2.1, en configuration EAC et SAC, sur la plateforme ouverte ou fermée MultiApp V3.1 masquée sur le composant P60D144PVA (version du patch: 1.3)   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2016-05-20 – ANSSI-CC-2015/39-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Gemalto / NXP Semiconductors + + +   + + 2015-09-282020-09-28 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Application IAS V4.2.0.B sur la plateforme Javacard ouverte MultiApp V3.1 masquée sur le composant P60D144PVA (version du patch: 1.3)   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2016-05-20 – ANSSI-CC-2016/03-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Gemalto / NXP Semiconductors + + +   + + 2015-09-282020-09-28 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Application IAS V4.2.0.D sur la plateforme Javacard ouverte MultiApp V3.1S masquée sur le composant P60D144JVA (version du patch: 1.4)   + + + Gemalto / NXP Semiconductors + + +   + + 2015-09-282020-09-28 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Microcontrôleur SAMSUNG S3FT9FA révision 0   + + + Samsung Electronics Co., Ltd. + + +   + + 2015-09-152020-09-15 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Microcontrôleur sécurisé ST33H768 révision C, Firmware révision 4, incluant optionnellement la bibliothèque cryptographique Neslib version 4.1 et version 4.1.1   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2016-03-17 – ANSSI-CC-2015/36-M01
    + Maintenance Report + +
  2. + +
    +
  3. + 2018-07-10 – Microcontrôleur sécurisé ST33H768 révision C, Firmware révision 4, incluant optionnellement la bibliothèque cryptographique Neslib version 4.1 et version 4.1.1
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ STMicroelectronics + + +   + + 2015-09-152020-09-15 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + eTravel Essential 1.0 avec BAC et AA activés sur composant M7794 A12/G12   + + + Gemalto - Infineon Technologies AG + + +   + + 2015-09-102020-09-10 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
ASE_REQ.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + eTravel Essential 1.0, avec BAC, AA et EAC activés sur composant M7794 A12/G12   + + + Gemalto + + +   + + 2015-09-102020-09-10 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + eTravel Essential 1.0, avec SAC, AA et EAC activés sur composant M7794 A12/G12   + + + Gemalto + + +   + + 2015-09-102020-09-10 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ePass ICAO essential – configuration BAC and AA, Version 1.0   + + + Oberthur Technologies + + +   + + 2015-09-072020-09-07 + + + EAL4+ +
ALC_DVS.2 +
+ + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + ePass ICAO essential – configuration BAC and EAC ECC, Version 1.0   + + + Oberthur Technologies + + +   + + 2015-09-072020-09-07 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + ePass ICAO essential – configuration BAC and EAC RSA or configuration BAC and EAC ECC, Version 1.0   + + + Oberthur Technologies + + +   + + 2015-09-072020-09-07 + + + EAL4+ +
ALC_DVS.2 +
+ + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + ePass ICAO essential – configuration BAC and EAC RSA, Version 1.0   + + + Oberthur Technologies + + +   + + 2015-09-072020-09-07 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + Plateforme Java Card en configuration ouverte de la carte à puce MultiApp v3.1 masquée sur le composant P60D144PVA (version du patch: 1.3)   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2016-05-20 – ANSSI-CC-2015/15-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Gemalto / NXP Semiconductors + + +   + + 2015-08-312020-08-31 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Plateforme Java Card MAV31S en configuration ouverte de la carte à puce Optelio Contactless R7S masquée sur le composant P60D144JVA (version du patch: 1.4)   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2016-10-14 – ANSSI-CC-2015/30-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Gemalto / NXP Semiconductors + + +   + + 2015-08-312020-08-31 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + STARCOS 3.6 COS C1   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2016-01-28 – STARCOS 3.6 COS C1
    + Maintenance Report + +
  2. + +
    +
  3. + 2018-08-02 – STARCOS 3.6 COS C1
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ G+D Mobile Security GmbH + + +   + + 2015-08-072020-08-07 + + + EAL4+ +
ALC_DVS.2 +
ATE_DPT.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Plateforme jTOP INFv#46P31 masquée sur les composants M7820 A11 et M11 avec fonctionnalités MRTD, version 46.31   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2016-04-01 – ANSSI-CC-2015/25-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Trusted Logic / Infineon + + +   + + 2015-08-042020-08-04 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Infineon smart card IC (Security Controller) M7820 A11 with optional RSA2048/4096 v1.02.013, EC v1.02.013, SHA-2 v1.01 and Toolbox v1.02.013 libraries and with specific IC dedicated software   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2016-03-30 – Infineon smart card IC (Security Controller) M7820 A11 with optional RSA2048/4096 v1.02.013, EC v1.02.013, SHA-2 v1.01 and Toolbox v1.02.013 libraries and with specific IC dedicated software
    + Maintenance Report + + Maintenance ST + +
  2. + +
    +
  3. + 2017-10-24 – Infineon smart card IC (Security Controller) M7820 A11 with optional RSA2048/4096 v1.02.013, EC v1.02.013, SHA-2 v1.01 and Toolbox v1.02.013 libraries and with specific IC dedicated software
    + Maintenance Report + + Maintenance ST + +
  4. + +
+
+ + +
+
+ Infineon Technologies AG + + +   + + 2015-08-032020-08-03 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + MTCOS Pro 2.2 EAC with PACE / P60D080PVC - V2   + + + MaskTech International GmbH + + +   + + 2015-07-312020-08-01 + + + EAL4+ +
ALC_DVS.2 +
ATE_DPT.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Crypto Library V1.0 on P60x080/052/040yVC(Z/A)/yVG   + + + NXP Semiconductors Germany GmbH, Business Unit Security and Connectivity + + +   + + 2015-07-272019-06-03 + + + EAL5+ +
ALC_DVS.2 +
ASE_TSS.2 +
AVA_VAN.5 +
+ + NL – NSCIB operated by
NL
+
+ + Athena IDProtect Duo v10 (in BAC Configuration)   + + + Athena Smartcard + + +   + + 2015-07-102020-07-10 + + + EAL4+ +
ADV_FSP.5 +
ADV_INT.2 +
ADV_TDS.4 +
ALC_CMS.5 +
ALC_DVS.2 +
ALC_TAT.2 +
ATE_DPT.3 +
+ + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + Athena IDProtect Duo v10 (in EAC Configuration)   + + + Athena Smartcard + + +   + + 2015-07-102020-07-10 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + TCOS FlexCert 2.0 Release 1/SLE78CLX1440P   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2015-11-04 – TCOS FlexCert 2.0 Release 1/SLE78CLX1440P
    + Maintenance Report + +
  2. + +
    +
  3. + 2020-05-13 – TCOS FlexCert 2.0 Release 1/SLE78CLX1440P
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ T-Systems International GMBH + + +   + + 2015-07-032020-07-03 + + + EAL4+ +
ALC_DVS.2 +
ATE_DPT.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Infineon Security Controller M7892 G12 with optional RSA2048/4096 v1.02.013 or v2.03.008, EC v1.02.013 or v2.03.008, SHA-2 v1.01 and Toolbox v1.02.013 or v2.03.008 libraries and with specific IC dedicated software (firmware)   + + + Infineon Technologies AG + + +   + + 2015-06-302020-06-30 + + + EAL6+ +
ALC_FLR.1 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + eTravel Essential 1.0, en configuration BAC, sur composant M7794 A12/G12   + + + Gemalto - Infineon Technologies AG + + +   + + 2015-06-152020-06-15 + + + EAL4+ +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + NXP Secure Smart Card Controller P60D024/016/012PVB(Y/Z/A)/PVF with IC Dedicated Software   + + + NXP Semiconductors Germany GmbH Business Line Identification + + +   + + 2015-06-152020-06-15 + + + EAL6+ +
ALC_FLR.1 +
ASE_TSS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Infineon Technologies Security Controller M7794 A12 and G12 with optional RSA2048/4096 v1.02.013 or v2.00.002, EC v1.02.013 or v2.00.002 and Toolbox v1.02.013 or v2.00.002 libraries and with specific IC-dedicated software   + + + Infineon Technologies AG + + +   + + 2015-06-122020-06-12 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Crypto Library V1.0 on P60x080/052/040PVC(Y/Z/A)/PVG   + + + NXP Semiconductors Germany GmbH Business Line Identification + + +   + + 2015-06-082018-08-02 + + + EAL6+ +
ALC_FLR.1 +
ASE_TSS.2 +
+ + NL – NSCIB operated by
NL
+
+ + NXP Secure Smart Card Controller P60x017/041PVE including IC Dedicated Software   + + + NXP Semiconductors Germany GmbH Business Line Identification + + +   + + 2015-05-262020-05-20 + + + EAL6+ +
ALC_FLR.1 +
ASE_TSS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Application J-Sign version 1.8.4 sur la plateforme J-Safe version 2.11.0   + + + Incard Division / ST Microelectronics + + +   + + 2015-05-212020-05-21 + + + EAL4+ +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Plateforme J-Safe, en configuration fermée, version 2.11.0, sur le composant SB23YR80B   + + + Incard Division / ST Microelectronics + + +   + + 2015-05-152020-05-15 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + NXP Secure PKI Smart Card Controllers P5CD128V0v/ V0B(s), P5CC128V0v/ V0B(s), P5CD145V0v/ V0B(s), P5CC145V0v/ V0B(s), P5CN145V0v/V0B(s), each including IC Dedicated Software   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2016-07-27 – NXP Secure PKI Smart Card Controllers P5CD128V0v/V0B(s), P5CC128V0v/V0B(s), P5CD145V0v/V0B(s), P5CC145V0v/V0B(s), P5CN145V0v/V0B(s), each including IC Dedicated Software
    + Maintenance Report + +
  2. + +
    +
  3. + 2016-12-29 – NXP Secure PKI Smart Card Controllers P5CD128V0v/ V0B(s), P5CC128V0v/ V0B(s), P5CD145V0v/ V0B(s), P5CC145V0v/ V0B(s), P5CN145V0v/V0B(s), each including IC Dedicated Software
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ NXP Semiconductors Germany GmbH Business Line Identification + + +   + + 2015-04-272020-04-28 + + + EAL5+ +
ALC_DVS.2 +
ASE_TSS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + NXP Secure Smart Card Controllers P5CD016/021/041/051 and P5Cx081V1A/ V1A(s)   + + + NXP Semiconductors Germany GmbH Business Line Identification + + +   + + 2015-04-272020-04-28 + + + EAL5+ +
ALC_DVS.2 +
ASE_TSS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + MN67S150 Smart Card IC Version RV08 including IC Dedicated Software   + + + Panasonic Semiconductor Solutions Co., Ltd. + + +   + + 2015-04-162020-04-17 + + + EAL6+ +
ASE_TSS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Xaica-AlphaPLUS +Version 0116 (PQV) / 0100 (SPI-001 03)   + + + NTT Data Corporation / STMicroelectronics. + + +   + + 2015-03-312020-03-31 + + + EAL4+ +
ADV_FSP.5 +
ADV_INT.2 +
ADV_TDS.4 +
ALC_CMC.5 +
ALC_DVS.2 +
ALC_TAT.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Microcontrôleurs SAMSUNG S3FT9MD et +S3FT9MC Revision 1   + + + Samsung Electronics Co., Ltd. + + +   + + 2015-03-242020-03-24 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Firmware Libraries V1.1 on P40C012/040/072 VD   + + + NXP Semiconductors Germany GmbH Business Line Identification + + +   + + 2015-03-122020-03-12 + + + EAL5+ +
ALC_DVS.2 +
ASE_TSS.2 +
AVA_VAN.5 +
+ + NL – NSCIB operated by
NL
+
+ + Application IAS V4.2 sur la plateforme +JavaCard ouverte MultiApp V3.1 masquée sur +le composant P60D080PVC +(version du patch : 1.4)   + + + Gemalto / NXP Semiconductors + + +   + + 2015-03-102020-03-10 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Application eTravel EAC v2.0, en configuration "EAC +on BAC" sur la plateforme fermée MultiApp V3 +masquée sur le composant M7820 A11 +(Version du patch : 1.5)   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2016-05-20 – ANSSI-CC-2015/09-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Gemalto - Infineon Technologies AG + + +   + + 2015-02-242020-02-24 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Sm@rtSIM CX Hercules Version 2.0   + + + G+D Mobile Security GmbH + + +   + + 2015-02-192020-02-18 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + Infineon smartcard IC (Security Controller) M7791 B12 with optional SCL library version 1.01.009 and with specific IC-dedicated firmware   + + + Infineon Technologies AG + + +   + + 2015-02-172020-02-16 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Java Card Platform Implementation for Infineon on SLE 78 (SLJ 52GxxyyyzR) V1.0   + + + Oracle Corporation + + +   + + 2015-02-172020-02-17 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Application eTravel EAC v2.1, en configuration +BAC, sur la plateforme fermée MultiApp V3.1 +masquée sur le composant P60D080PVC +(Version du patch : 1.4)   + + + Gemalto / NXP Semiconductors + + +   + + 2015-02-122020-02-12 + + + EAL4+ +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Application eTravel EAC v2.1, en configuration +BAC, sur la plateforme ouverte MultiApp V3.1 +masquée sur le composant P60D080PVC +(Version du patch : 1.4)   + + + Gemalto / NXP Semiconductors + + +   + + 2015-02-122020-02-12 + + + EAL4+ +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Application eTravel EAC v2.1, en configuration +EAC et SAC, sur la plateforme fermée +MultiApp V3.1 masquée sur le composant +P60D080PVC +(Version du patch : 1.4)   + + + Gemalto / NXP Semiconductors + + +   + + 2015-02-122020-02-12 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Application eTravel EAC v2.1, en configuration +EAC et SAC, sur la plateforme ouverte +MultiApp V3.1 masquée sur le composant +P60D080PVC +(Version du patch : 1.4)   + + + Gemalto / NXP Semiconductors + + +   + + 2015-02-122020-02-12 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + MN67S150 Smart Card IC Version RV08 including IC Dedicated Software   + + + Panasonic Semiconductor Solutions Co., Ltd. + + +   + + 2015-01-282020-01-28 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + KOMSCO JK31 V1.0 on M7892   +
+ +
+ + + + + + +
+
+ KOMSCO + + +   + + 2015-01-222020-01-22 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + KR – IT Security Certification Center(ITSCC)
KR
+
+ + Application Mobile PayPass 1.0.13vA.2.4 (S1133159, release B) sur plateforme Orange NFC V2 G1 configuration MIFARE activé ou configuration MIFARE désactivé sur composant ST33F1ME   +
+ +
+ + + + + + +
+
+ Gemalto / STMicroelectronics + + +   + + 2015-01-052020-01-05 + + + EAL4+ +
ALC_DVS.1 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Athena IDProtect/OS755 (release 0355, level +0802, correctif P8) avec application IAS-ECC +(version 03, build 02, correctif FA) sur +composants SB23YR48/80B   + + + Athena Smartcard Solutions Inc / STMicroelectronics + + +   + + 2015-01-052020-01-05 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Athena IDProtect/OS755 (release 4016, level +0101) avec application IAS-ECC (version 03, +build 02, correctif FA) sur composants +SB23YR48/80B   + + + Athena Smartcard Solutions Inc / STMicroelectronics + + +   + + 2015-01-052020-01-05 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Microcontrôleur sécurisé ST31-K330A révision +H pour version bi-mode (contact et sans +contact) ou version sans contact seulement, +incluant optionnellement la librairie +cryptographique Neslib v3.2, la librairie +MIFARE DESFireTM EV1 v2.2 et la librairie +MIFARE Plus-STM v1.3   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2018-03-30 – Microcontrôleur sécurisé ST31 - K330A révision H pour version bi-mode (contact et sans contact) ou version sans contact seulement, incluant optionnellement la librairie cryptographique Neslib v 3.2, la librairie MIFARE DESFire EV1v2.2 et la librairie MIFARE Plus -S v1.3
    + Maintenance Report + + Maintenance ST + +
  2. + +
    +
  3. + 2018-04-30 – Microcontrôleur sécurisé ST31 - K330A révision I pour version contact seulement, incluant optionnellement la librairie cryptographique Neslib révision 3. 2
    + Maintenance Report + + Maintenance ST + +
  4. + +
+
+ + +
+
+ STMicroelectronics + + +   + + 2015-01-052020-01-05 + + + EAL5+ +
ALC_DVS.2 +
ASE_TSS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Microcontrôleur sécurisé ST31-K330A révision +I pour version contact seulement, incluant +optionnellement la librairie cryptographique +Neslib révision 3.2   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2018-04-30 – Microcontrôleur sécurisé ST31-K330A révision I pour version contact seulement, incluant optionnellement la librairie cryptographique Neslib révision 3.2
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ STMicroelectronics + + +   + + 2015-01-052020-01-05 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + SOMA-c004 e-Passport (BAC), v1.0   + + + Arjo Systems + + +   + + 2014-12-232019-12-23 + + + EAL4+ +
ALC_DVS.2 +
+ + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + SOMA-c004 e-Passport (EAC-SAC-AA), v1.0   + + + Arjo Systems + + +   + + 2014-12-232019-12-23 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + Plateforme Java Card en configuration ouverte de la carte à puce MultiApp v3.1 masquée sur le composant P60D080PVC +(Version du patch : 1.4)   + + + Gemalto / NXP Semiconductors + + +   + + 2014-12-222019-12-22 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Plateforme Upteq NFC 2.1.3_Generic sur le composant ST33F1ME avec application DESFIRE 1.1 (S1124940, release C)   + + + Gemalto / STMicroelectronics + + +   + + 2014-12-172019-12-17 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + AKIS v2.2.8I   +
+ +
+ + + + + + +
+
+ TÜBİTAK BİLGEM UEKAE + + +   + + 2014-12-122017-12-12 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + TR – TSE (Turkish Standards Institution) Common Criteria Certification Scheme
TR
+
+ + Application Mobile PayPass 1.0.13vA.2.4 +(S1133159, release B) sur plateforme UpTeq +NFC2.0.4_FRA sur composant ST33F1ME   +
+ +
+ + + + + + +
+
+ Gemalto + + +   + + 2014-11-282019-11-28 + + + EAL3+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Application Mobile PayPass 1.0.13vA.2.4 +(S1133159, release B) sur plateforme UpTeq +NFC2.0.4_OFM configuration MIFARE activé +ou configuration MIFARE désactivé sur +composant ST33F1ME   +
+ +
+ + + + + + +
+
+ Gemalto + + +   + + 2014-11-282019-11-28 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + dragonFly version 3.2 sur composant +SM33F1ME   + + + Oberthur Technologies / STMicroelectronics + + +   + + 2014-11-282019-11-28 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Athena IDProtect Duo v5 avec application +IASECC en configuration ICAO BAC sur +composant AT90SC28880RCFV   + + + Athena Smartcard Solutions Inc + + +   + + 2014-11-172019-11-17 + + + EAL4+ +
ADV_FSP.5 +
ADV_INT.2 +
ADV_TDS.4 +
ALC_CMC.5 +
ALC_DVS.2 +
ALC_TAT.2 +
ATE_DPT.3 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Athena IDProtect Duo v5 avec application +IASECC en configuration ICAO EAC sur +composant AT90SC28880RCFV   + + + Athena Smartcard Solutions Inc + + +   + + 2014-11-172019-11-17 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Plateforme UpTeq NFC 2.0.4_OFM release B sur composant ST33F1ME (S1121881 / Release B), configuration MIFARE activé ou configuration MIFARE désactivé   + + + Gemalto / STMicroelectronics + + +   + + 2014-11-082019-11-08 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + eTravel Essential 1.0, configuration +"full" avec application PACE   + + + Gemalto + + +   + + 2014-10-302019-10-30 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + eTravel Essential 1.0, configuration "full" +avec application BAC+AA   + + + Gemalto + + +   + + 2014-10-302019-10-30 + + + EAL4+ +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + SOMA-c003 - application BAC, version 1.3   + + + Arjowiggins Security SAS - Gep S.p.A. + + +   + + 2014-10-222019-10-22 + + + EAL4+ +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + SOMA-c003 - applications EAC, SAC et AA, version 1.3   + + + Arjowiggins Security SAS - Gep S.p.A. + + +   + + 2014-10-222019-10-22 + + + EAL4+ +
ALC_DVS.2 +
ATE_DPT.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Microcontrôleurs sécurisés SC23Z018, SC23ZD12, SC23ZD08, SC23ZD04, SB23ZD18, SB23ZD12, SB23ZD08 et SB23ZD04 incluant optionnellement la librairie cryptographique NesLib révision 3.1   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2017-07-21 – ANSSI-CC-2014/60-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ STMicroelectronics + + +   + + 2014-10-212019-10-21 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ECC CPU card (Version 1.2)   +
+ +
+ + + + + + +
+
+ Gemalto + + +   + + 2014-10-192019-10-19 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + Microcontrôleurs sécurisés +ST23ZR08/ST23ZR04/ST23ZR02, +ST23ZC08/ST23ZC04/ST23ZC02 +maskset K340A revision interne M   + + + STMicroelectronics + + +   + + 2014-10-162019-10-16 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + NXP Secure Smart Card Controller P40C012/040/072 VD   + + + NXP Semiconductors Germany GmbH Business Line Identification + + +   + + 2014-10-072019-10-07 + + + EAL5+ +
ALC_DVS.2 +
ASE_TSS.2 +
AVA_VAN.5 +
+ + NL – NSCIB operated by
NL
+
+ + XSmart OpenPlatform V1.1 on S3CT9KW/S3CT9KC/S3CT9K9   +
+ +
+ + + + + + +
+
+ LG CNS + + +   + + 2014-09-192019-09-19 + + + EAL4+ +
ATE_DPT.2 +
AVA_VAN.4 +
+ + KR – IT Security Certification Center(ITSCC)
KR
+
+ + Application eTravel EAC v2.0 sur la carte à puce +fermée MultiApp V3 masquée sur le composant +M7820 A11 +(Version du patch : 5.0)   + + + Gemalto - Infineon Technologies AG + + +   + + 2014-09-162019-09-16 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Application eTravel EAC v2.0, en configuration +SAC, sur la carte à puce fermée MultiApp V3 +masquée sur le composant M7820 A11 +(Version du patch : 5.0)   + + + Gemalto + + +   + + 2014-09-162019-09-16 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ID-One CIE (Version 1.0)   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2015-03-13 – ID-One CIE (Version 1.0), comprising Applet 078385 and Javacard platform 081893
    + Maintenance Report + + Maintenance ST + +
  2. + +
    +
  3. + 2015-04-23 – ID-One CIE (Version 1.0), comprising Applet 078386 and Javacard platform 081894
    + Maintenance Report + + Maintenance ST + +
  4. + +
+
+ + +
+
+ Oberthur Technologies + + +   + + 2014-08-282019-08-28 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + PWPW SmartApp-ID 3.1 (IFX)   + + + Polska Wytwórnia Papierów Wartościowych S.A. + + +   + + 2014-08-272019-09-01 + + + EAL4+ +
ALC_DVS.2 +
ATE_DPT.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + J3E081_M64, J3E081_M66, J2E081_M64, J3E041_M66, J3E016_M66, J3E016_M64, J3E041_M64 Secure Smart Card Controller Revision 3   + + + NXP Semiconductors Germany GmbH Business Line Identification + + +   + + 2014-08-262018-08-05 + + + EAL5+ +
ALC_DVS.2 +
ASE_TSS.2 +
AVA_VAN.5 +
+ + NL – NSCIB operated by
NL
+
+ + J3E145_M64, J3E120_M65, J3E082_M65, J2E145_M64, J2E120_M65, and J2E082_M65 Secure Smart Card Controller Revision 3   + + + NXP Semiconductors Germany GmbH Business Line Identification + + +   + + 2014-08-262018-08-05 + + + EAL5+ +
ALC_DVS.2 +
ASE_TSS.2 +
AVA_VAN.5 +
+ + NL – NSCIB operated by
NL
+
+ + TNP ECC2 CPU Card   +
+ +
+ + + + + + +
+
+ Taiwan Name Plate Co., Ltd. + + +   + + 2014-08-222019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + NO – SERTIT
NO
+
+ + Microcontrôleur SAMSUNG S3FT9PE Révision 0 embarquant la bibliothèque RSA/ECC optionnelle TORNADO 2MX2 v2.4   + + + Samsung Electronics Co., Ltd. + + +   + + 2014-08-142019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Microcontrôleurs SAMSUNG S3FT9FD, S3FT9FC et S3FT9FB Revision 1.0   + + + Samsung Electronics Co., Ltd. + + +   + + 2014-08-142019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Microcontrôleurs SAMSUNG S3FT9PF, S3FT9PT et S3FT9PS Revision 0 embarquant la bibliothèque optionnelle RSA/ECC TORNADO 2MX2 v2.4   + + + Samsung Electronics Co., Ltd. + + +   + + 2014-08-142019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Microcontrôleurs Samsung S3FT9MF/S3FT9MT/S3FT9MS avec bibliothèques optionnelles RSA et ECC rev1_SW10-50-60-24_GU15-12-15-225-15-18-14-00   + + + Samsung Electronics Co., Ltd. / Trusted Labs + + +   + + 2014-08-122019-09-01 + + + EAL6+ +
ASE_TSS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + NXP Secure Smart Card Controller P60x017/041PVD including IC Dedicated Software   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2015-06-15 – NXP Secure Smart Card Controller P60x017/041PVD including IC Dedicated Software
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ NXP Semiconductors Germany GmbH Business Line Identification + + +   + + 2014-08-112019-09-01 + + + EAL6+ +
ALC_FLR.1 +
ASE_TSS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + IDeal PASS, version 2 - Application BAC   + + + MORPHO / Infineon Technologies AG + + +   + + 2014-07-222019-09-01 + + + EAL4+ +
ADV_FSP.5 +
ADV_INT.2 +
ADV_TDS.4 +
ALC_CMS.5 +
ALC_DVS.2 +
ALC_TAT.2 +
ATE_DPT.3 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + IDeal PASS, version 2 - Application EAC avec PACE   + + + MORPHO / Infineon Technologies AG + + +   + + 2014-07-222019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Microcontrôleur sécurisé ST33G1M2 révision F, Firmware révision 9, incluant optionnellement la bibliothèque cryptographique Neslib 4.1 et la bibliothèque MIFARE® DESFire® EV1 révision 3.7 ou 3.8   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2016-03-17 – Microcontrôleur sécurisé ST33G1M2 révision F, Firmware révision 9, incluant optionnellement la bibliothèque cryptographique Neslib 4.1 et la bibliothèque MIFARE® DESFire® EV1 révision 3.7 ou 3.8
    + Maintenance Report + +
  2. + +
    +
  3. + 2018-01-18 – Microcontrôleur sécurisé ST33G1M2 révision F, Firmware révisions 9 et A, incluant optionnellement la bibliothèque cryptographique Neslib 4.1 et 4.1.1 et la bibliothèque MIFARE DESFire EV1 révision 3.7 ou 3.8
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ STMicroelectronics S.A. + + +   + + 2014-07-212019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Microcontrôleur sécurisé ST33G1M2 révision F, Firmware révision 9, incluant optionnellement la bibliothèque cryptographique Neslib 4.1 et la bibliothèque MIFARE® DESFire® EV1 révision 3.7 ou 3.8   + + + STMicroelectronics + + +   + + 2014-07-212019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Crypto Library V2.7/2.9 on SmartMX P5Cx128/P5Cx145 V0v/ VOB(s)   + + + NXP Semiconductors Germany GmbH Business Line Identification + + +   + + 2014-07-162019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Crypto Library V2.7/V2.9 on SmartMX P5CD016/021/041/051 and P5Cx081 V1A /V1A(s)   + + + NXP Semiconductors Germany GmbH Business Line Identification + + +   + + 2014-07-162019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Application eTravel EAC v2.0, en configuration "EAC on BAC" sur la plateforme ouverte MultiApp V3 masquée sur le composant M7820 A11 (Version du patch : 1.5)   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2016-05-23 – ANSSI-CC-2014/48-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Gemalto - Infineon Technologies AG + + +   + + 2014-07-112019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Application IAS V4 sur la plateforme JavaCard ouverte MultiApp V3 masquée sur le composant M7820 A11 (Version du patch : 1.5)   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2016-05-23 – ANSSI-CC-2014/49-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Gemalto - Infineon Technologies AG + + +   + + 2014-07-112019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Application IAS V4 sur la plateforme JavaCard ouverte MultiApp V3 masquée sur le composant M7820 A11 (Version du patch : 1.5)   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2016-05-23 – ANSSI-CC-2014/50-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Gemalto - Infineon Technologies AG + + +   + + 2014-07-112019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Microcontrôleurs SAMSUNG S3FT9MD et S3FT9MC Revision 0   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2014-02-12 – ANSSI-CC-2014-37-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Samsung Electronics Co., Ltd. + + +   + + 2014-07-112019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + XSmart e-Passport V1.3 R2 on S3CT9KW/S3CT9KC/S3CT9K9   + + + LG CNS + + +   + + 2014-06-252019-06-25 + + + EAL5+ +
ADV_IMP.2 +
+ + KR – IT Security Certification Center(ITSCC)
KR
+
+ + NXP Secure Smart Card Controller P61N1M3PVD/VE including IC Dedicated Software   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2014-10-16 – NXP Secure Smart Card Controller P61N1M3PVD/VD-1/VE-1 including IC Dedicated Software
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ NXP Semiconductors Germany GmbH Business Line Identification + + +   + + 2014-06-182019-09-01 + + + EAL6+ +
ALC_FLR.1 +
ASE_TSS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + SAMSUNG S3FV9QM/S3FV9QK, révision 3 rev3_SW10_25_11_30_GU136_12_111_13_01_124 et rev3_SW10_25_12_30_GU136_12_111_13_01_124   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2014-12-22 – Rapport de maintenance ANSSI-CC-2014/75-M01
    + Maintenance Report + +
  2. + +
    +
  3. + 2015-03-31 – ANSSI-CC-2014/75-M02
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ Samsung Electronics Co., Ltd. + + +   + + 2014-06-112019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Microcontrôleur AT90SO128 révision F embarquant la bibliothèque cryptographique optionnelle Toolbox version 00.03.12.01   + + + Inside Secure + + +   + + 2014-05-302019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + STARCOS 3.5 ID SAC+EAC+AA C1R   + + + G+D Mobile Security GmbH + + +   + + 2014-05-232019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + MICARDO V4.0 R1.0 eHC v1.2   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2014-06-30 – MICARDO V4.0 R1.0 eHC v1.2
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ Morpho Cards GmbH + + +   + + 2014-05-152019-09-01 + + + EAL4+ +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Infineon Technologies Smart Card IC (Security Controller) M9900 A22 and G11 with optional RSA v1.03.006, EC v1.03.006, Toolbox v1.03.006 and Flash Translation Layer V1.01.0008 libraries with specific IC dedicated software   + + + Infineon Technologies AG + + +   + + 2014-04-302019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + NXP Secure Smart Card Controller P60D024/016/012yVB/yVB(Y) including IC Dedicated Software with MIFARE Plus MF1PLUSx0 or MIFARE DESFire EV1   + + + NXP Semiconductors Germany GmbH Business Line Identification + + +   + + 2014-04-242019-09-01 + + + EAL5+ +
ALC_DVS.2 +
ASE_TSS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Bundesdruckerei Document Application, Version: 1.2.1129, Terminal Firmware Version 3.4.8   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2014-05-22 – Bundesdruckerei Document Application, Version: 1.2.1129
    + Maintenance Report + +
  2. + +
    +
  3. + 2016-04-14 – Bundesdruckerei Document Application, TOE-Version: 1.2.1129, Terminal Firmware Version 3.4.14
    + Maintenance Report + +
  4. + +
    +
  5. + 2016-04-14 – Bundesdruckerei Document Application, Version: 1.2.1129, Terminal Firmware Version 3.4.10
    + Maintenance Report + +
  6. + +
+
+ + +
+
+ Bundesdruckerei GmbH + + +   + + 2014-04-152019-09-01 + + + EAL3 + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + SAMSUNG S3FV9QJ / S3FV9QL / S3FV9QH / S3FV9FH   + + + Samsung Electronics Co., Ltd. + + +   + + 2014-04-152019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + SAMSUNG S3FV9QM/S3FV9QK, revision 3   + + + Samsung Electronics Co., Ltd. + + +   + + 2014-04-152019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + MTCOS Pro 2.2 EAC with PACE / P60D080PVC   + + + MaskTech International GmbH + + +   + + 2014-04-142019-09-01 + + + EAL4+ +
ALC_DVS.2 +
ATE_DPT.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + MTCOS Pro 2.2 EAC with PACE / P60D080PVC (BAC)   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2015-08-31 – MTCOS Pro 2.2 EAC with PACE / P60D080PVC - V2 (BAC)
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ MaskTech International GmbH + + +   + + 2014-04-142019-09-01 + + + EAL4+ +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Microcontrôleur sécurisé T6ND7 révision 4   + + + Toshiba Corporation + + +   + + 2014-04-112019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Microcontrôleur AT90SO72 révision C embarquant la bibliothèque cryptographique optionnelle Toolbox version 00.03.12.00   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2018-12-12 – Microcontrôleur AT90SO72 révision C embarquant la bibliothèque cryptographique optionnelle Toolbox version 00.03.12.00
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Inside Secure + + +   + + 2014-04-092019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Infineon Technologies Security Controller M7793 A12 and G12 with optional RSA2048/4096 v1.02.010 or v1.02.013 or v2.00.002, EC v1.02.010 or v1.02.013 or v2.00.002 and Toolbox v1.02.010 or v1.02.013 or v2.00.002 libraries and with specific IC-dedicated software   + + + Infineon Technologies AG + + +   + + 2014-04-042019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + NXP Secure Smart Card Controller P60D024/016/012PVB/PVB(Y) with IC Dedicated Software   + + + NXP Semiconductors Germany GmbH Business Line Identification + + +   + + 2014-04-042019-09-01 + + + EAL6+ +
ALC_FLR.1 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + SOMA801STM - application BAC, version 1.0   + + + Arjowiggins Security SAS - Gep S.p.A. - STMicroelectronics + + +   + + 2014-04-042019-09-01 + + + EAL4+ +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + SOMA801STM - application EAC, version 1.0   + + + Arjowiggins Security SAS - Gep S.p.A. - STMicroelectronics + + +   + + 2014-04-042019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Infineon Security Controller M7893 B11 with optional RSA2048/4096 v1.03.006, EC v1.03.006, SHA-2 v1.01 libraries and Toolbox v1.03.006 and with specific IC dedicated software (firmware)   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2014-12-04 – Infineon Security Controller M7893 B11 with optional RSA2048/4096 v1.03.006, EC v1.03.006, SHA-2 v1.01 libraries and Toolbox v1.03.006 and with specific IC dedicated software (firmware)
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ Infineon Technologies AG + + +   + + 2014-03-182019-09-01 + + + EAL6+ +
ALC_FLR.1 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Microcontrôleurs SAMSUNG S3FT9MF/MT/MS Revision 0 embarquant la bibliothèque RSA/ECC optionnelle TORNADO 2MX2 v2.4   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2014-02-12 – ANSSI-CC-2014-20-M02
    + Maintenance Report + +
  2. + +
    +
  3. + 2014-11-20 – ANSSI-CC-2014-20-M01
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ Samsung Electronics Co., Ltd. + + +   + + 2014-03-172019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + AKİS v1.4i Pasaport   +
+ +
+ + + + + + +
+
+ TÜBİTAK BİLGEM UEKAE + + +   + + 2014-03-072019-09-01 + + + EAL4+ +
ALC_DVS.2 +
+ + TR – TSE (Turkish Standards Institution) Common Criteria Certification Scheme
TR
+
+ + IDeal Pass v2 - SAC/EAC JC ePassport 4.0.0   + + + Morpho B.V. + + +   + + 2014-03-072019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + IDeal Pass v2 - SAC/EAC JC ePassport 4.0.0 (BAC)   + + + Morpho B.V. + + +   + + 2014-03-072019-09-01 + + + EAL4+ +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Renesas RCL3.0 (version 5897) on RS4FC128 Version 01 integrated circuit Product Type Code 00 and Renesas RCL3.0 (version 5897) on RS4FC128E Version 01 integrated circuit Product Type Code 01   + + + Renesas Electronics Corporation + + +   + + 2014-03-052019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Application eTravel EAC v2.0, en configuration BAC, sur la plateforme ouverte MultiApp V3 masquée sur le composant M7820 A11   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2016-05-23 – ANSSI-CC-2014/13-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Gemalto - Infineon Technologies AG + + +   + + 2014-02-272019-09-01 + + + EAL4+ +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Application eTravel EAC v2.0, en configuration EAC, sur la plateforme ouverte MultiApp V3 masquée sur le composant M7820 A11   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2016-05-23 – ANSSI-CC-2014/11-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Gemalto - Infineon Technologies AG + + +   + + 2014-02-272019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Application eTravel EAC v2.0, en configuration SAC, sur la plateforme ouverte MultiApp V3 masquée sur le composant M7820 A11   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2016-05-23 – ANSSI-CC-2014/12-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Gemalto - Infineon Technologies AG + + +   + + 2014-02-272019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ePass V3 TD sur composants P5CD081V1A, en configuration EAC et AA   + + + Oberthur Technologies / NXP Semiconductors GmbH + + +   + + 2014-02-202019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ePass V3 TD sur composants P5CD081V1A, en configuration BAC et AA   + + + Oberthur Technologies / NXP Semiconductors GmbH + + +   + + 2014-02-202019-09-01 + + + EAL4+ +
ADV_FSP.5 +
ADV_INT.2 +
ADV_TDS.4 +
ALC_CMS.5 +
ALC_DVS.2 +
ALC_TAT.2 +
ATE_DPT.3 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + NXP Secure Smart Card Controller P60x144/080yVA including IC Dedicated Software MIFARE Plus MF1PLUSx0 or MIFARE Plus MF1PLUSx0 and MIFARE DESFire EV1   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2014-10-16 – NXP Secure Smart Card Controller P60x144/080yVA/yVA(B) including IC Dedicated Software MIFARE Plus MF1PLUSx0 or MIFARE Plus MF1PLUSx0 and MIFARE DESFire EV1
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ NXP Semiconductors Germany GmbH Business Line Identification + + +   + + 2014-02-192019-09-01 + + + EAL5+ +
ALC_DVS.2 +
ASE_TSS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + XSmart e-Passport V1.3 on S3CT9KW/S3CT9KC/S3CT9K9   + + + LG CNS + + +   + + 2014-02-172019-06-01 + + + EAL5+ +
ADV_IMP.2 +
+ + KR – IT Security Certification Center(ITSCC)
KR
+
+ + Carte IAS ECC v1.0.1 : applet version 6179 sur ID-One Cosmo v7.0.1-n R2.0, masquée sur composants NXP P5CC081 et P5CD081, en configuration Standard ou Standard Dual   + + + Oberthur Technologies / NXP Semiconductors GmbH + + +   + + 2014-02-142019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Application IAS V4 sur la plateforme JavaCard ouverte MultiApp V3 masquée sur le composant M7820 A11   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2016-05-23 – ANSSI-CC-2014/14-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Gemalto - Infineon Technologies AG + + +   + + 2014-02-072019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + KCOS e-Passport Version 3.0 S3FT9KF/KT/KS   + + + KOMSCO + + +   + + 2014-02-072019-06-01 + + + EAL5+ +
ADV_IMP.2 +
ALC_DVS.2 +
AVA_VAN.5 +
+ + KR – IT Security Certification Center(ITSCC)
KR
+
+ + Application eTravel EAC v2.0 sur la carte à puce fermée MultiApp V3 masquée sur le composant M7820 A11   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2016-05-23 – ANSSI-CC-2014/07-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Gemalto - Infineon Technologies AG + + +   + + 2014-02-032019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Application eTravel EAC v2.0, en configuration BAC, sur la carte à puce fermée MultiApp V3 masquée sur le composant M7820 A11   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2016-05-23 – ANSSI-CC-2014/09-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Gemalto - Infineon Technologies AG + + +   + + 2014-02-032019-09-01 + + + EAL4+ +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Application eTravel EAC v2.0, en configuration SAC, sur la carte à puce fermée MultiApp V3 masquée sur le composant M7820 A11   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2016-05-23 – ANSSI-CC-2014/08-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Gemalto - Infineon Technologies AG + + +   + + 2014-02-032019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Infineon Technologies Security Controller M7794 A12 and G12 with optional RSA2048/4096 v1.02.013 or v2.00.002, EC v1.02.013 or v2.00.002 and Toolbox v1.02.013 or v2.00.002 libraries and with specific IC-dedicated software   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2014-06-12 – M7794 A12/G12 with optional RSA v1.02.13 or v2.00.002 and EC v1.02.13 or v2.00.002 and Toolbox v1.02.13 or v2.00.002 libraries and with specific IC-dedicated software
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Infineon Technologies AG + + +   + + 2014-02-032019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Plateforme Java Card en configuration ouverte de la carte à puce MultiApp V3 masquée sur le composant M7820 A11   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2016-05-23 – ANSSI-CC-2014/06-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Gemalto - Infineon Technologies AG + + +   + + 2014-02-032019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ePass V3 TD sur composants P5CD081V1A, en configuration EAC sur SAC via PACE v2 et AA   + + + Oberthur Technologies / NXP Semiconductors GmbH + + +   + + 2014-01-282019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Application Mobile MasterCard PayPass V1 - M/Chip 4, version V01.00.04, sur plateforme NFC FlyBuy Platinum V2 sur composant ST33F1ME   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2014-04-09 – Rapport de maintenance ANSSI-CC-2013/65-M01
    + Maintenance Report + +
  2. + +
    +
  3. + 2014-05-23 – ANSSI-CC-2013/65-M02
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ Oberthur Technologies / STMicroelectronics + + +   + + 2013-12-242019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Microcontrôleur AT90SC28880RCFV2 révision C embarquant la bibliothèque cryptographique optionnelle TBX version 00.03.22.04   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2016-02-26 – ANSSI-CC-2013/59-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Inside Secure + + +   + + 2013-12-242019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + IDeal Pass v2 - SAC/EAC JC ePassport 4.0.0   + + + Morpho B.V. + + +   + + 2013-12-202014-09-09 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Comex Smart Card Reader KT2USB/BioSec Reader   +
+ +
+ + + + + + +
+
+ Comex Electronics AB + + +   + + 2013-12-192019-09-01 + + + EAL4+ +
ALC_FLR.1 +
+ + SE – Swedish Certification Body for IT Security FMV/CSEC
SE
+
+ + NXP Secure Smart Card Controller P60D080/052/040yVC including IC Dedicated Software with MIFARE Plus MF1PLUSx0 or with MIFARE Plus MF1PLUSx0 and MIFARE DESFire EV1   + + + NXP Semiconductors Germany GmbH Business Line Identification + + +   + + 2013-12-192019-09-01 + + + EAL5+ +
ALC_DVS.2 +
ASE_TSS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + NXP Secure Smart Card Controller P60x144/080PVA/PVA(Y) with IC Dedicated Software FW5.0   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2014-04-01 – NXP Secure Smart Card Controller P60x144/080PVA/PVA(Y) with IC Dedicated Software FW5.0
    + Maintenance Report + +
  2. + +
    +
  3. + 2014-10-16 – NXP Secure Smart Card Controller P60x144/080PVA/PVA(Y/B) with IC Dedicated Software FW5.0
    + Maintenance Report + + Maintenance ST + +
  4. + +
+
+ + +
+
+ NXP Semiconductors Germany GmbH Business Line Identification + + +   + + 2013-12-192019-09-01 + + + EAL6+ +
ALC_FLR.1 +
ASE_TSS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Bundesdruckerei Dokument Reading Application Version 1.2.1129   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2014-01-28 – Bundesdruckerei Dokument Reading Application Version 1.2.1129
    + Maintenance Report + +
  2. + +
    +
  3. + 2014-06-27 – Bundesdruckerei Document Reading Application, Version: 1.2.1129; Terminal Firmware Version 2.0.36
    + Maintenance Report + +
  4. + +
    +
  5. + 2014-09-05 – Bundesdruckerei Dokument Reading Application Version 1.2.1129
    + Maintenance Report + + Maintenance ST + +
  6. + +
    +
  7. + 2016-04-14 – Bundesdruckerei Dokument Reading Application TOE-Version 1.2.1129, Terminal Firmware Version 3.0.16
    + Maintenance Report + +
  8. + +
    +
  9. + 2016-04-14 – Bundesdruckerei Dokument Reading Application TOE-Version 1.2.1129, Terminal Firmware Version 3.0.8
    + Maintenance Report + +
  10. + +
    +
  11. + 2016-04-14 – Bundesdruckerei Dokument Reading Application Version 1.2.1129, Terminal Firmware Version 3.0.8
    + Maintenance Report + +
  12. + +
+
+ + +
+
+ Bundesdruckerei GmbH + + +   + + 2013-12-182019-09-01 + + + EAL3 + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Renesas RS4FC128 and RS4FC128E integrated circuits version 01   + + + Renesas Electronics Corporation + + +   + + 2013-12-062019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Microcontrôleur sécurisé ST31-K330A révision F pour version bi-mode (contact et sans contact) ou version sans contact seulement, incluant optionnellement la librairie cryptographique Neslib révision 3.2 et la librairie MIFARE DESFire EV1TM révision 2.2   + + + STMicroelectronics S.A. + + +   + + 2013-12-042019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + S3CS9AB 32-Bit RISC Microcontroller for Smart Cards, Revision 0 with specific IC Dedicated Software   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2017-12-11 – Reassessment - S3CS9AB 32-Bit RISC Microcontroller for Smart Cards, Revision 0 with specific IC Dedicated Software
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ Samsung Electronics Co., Ltd. + + +   + + 2013-12-042019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Infineon Technologies Security Controller M7793 A12 and G12 with optional RSA2048/4096 v1.02.010 or v1.02.013, EC v1.02.010 or v1.02.013 and Toolbox v1.02.010 or v1.02.013 libraries and with specific IC-dedicated software   + + + Infineon Technologies AG + + +   + + 2013-11-272019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + SHHIC SHC1302/2907M4 with Crypto Library V1.10 and ITCOS V1.00 version HHIC2907M4   + + + Shanghai Huahong Integrated Circuit Co., ltd (SHHIC) + + +   + + 2013-11-202019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + NO – SERTIT
NO
+
+ + Carte à puce SLJ 52 Gxx yyy AL : application pour passeport électronique sur plateforme jTOP INFv#46 masquée sur composants Infineon SLE78CLX1600PM, SLE78CLX800P et SLE78CLX360PM   + + + Trusted Logic / Infineon + + +   + + 2013-11-182019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + KOMSCO JK21 V1.0 on S3CT9KA/KC/KW   +
+ +
+ + + + + + +
+
+ KOMSCO + + +   + + 2013-11-082019-06-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + KR – IT Security Certification Center(ITSCC)
KR
+
+ + TimeCOS Java Card Platform and EasyCard version 1.1   + + + Watchdata Technologies Pte. Ltd. + + +   + + 2013-11-052019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + ES – Organismo de Certificación de la Seguridad de las Tecnologías de la Información
ES
+
+ + TCOS Residence Permit Card Version 1.1 Release 1/ SLE78CLX1440P   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2014-12-09 – TCOS Residence Permit Card Version 1.1 Release 1/ SLE78CLX1440P
    + Maintenance Report + +
  2. + +
    +
  3. + 2014-12-10 – TCOS Residence Permit Card Version 1.1 Release 1-PI/ SLE78CLX1440P
    + Maintenance Report + + Maintenance ST + +
  4. + +
+
+ + +
+
+ T-Systems International GMBH + + +   + + 2013-10-292019-09-01 + + + EAL4+ +
ALC_DVS.2 +
ATE_DPT.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + TCOS Residence Permit Card Version 1.1 Release 1-BAC/ SLE78CLX1440P   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2014-12-09 – TCOS Residence Permit Card Version 1.1 Release 1-BAC/ SLE78CLX1440P
    + Maintenance Report + +
  2. + +
    +
  3. + 2014-12-10 – TCOS Residence Permit Card Version 1.1 Release 1-BAC-PI/ SLE78CLX1440P
    + Maintenance Report + + Maintenance ST + +
  4. + +
+
+ + +
+
+ T-Systems International GMBH + + +   + + 2013-10-292019-09-01 + + + EAL4+ +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + NXP P5CD080V0B / V0B(s) Secure Smart Card Controller   + + + NXP Semiconductors Germany GmbH Business Line Identification + + +   + + 2013-10-232019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_MSU.3 +
AVA_VLA.4 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + NXP Secure Smart Card Controller P60D080/052/040MVC including IC Dedicated Software with MIFARE Plus MF1PLUSx0   + + + NXP Semiconductors Germany GmbH Business Line Identification + + +   + + 2013-10-232019-09-01 + + + EAL5+ +
ALC_DVS.2 +
ASE_TSS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + J3E081_M64_DF, J3E081_M66_DF, J3E041_M66_DF, J3E016_M66_DF, J3E041_M64_DF and J3E016_M64_DF Secure Smart Card Controller Revision 3   + + + NXP Semiconductors Germany GmbH Business Line Identification + + +   + + 2013-10-162018-10-16 + + + EAL4+ +
ALC_DVS.2 +
ASE_TSS.2 +
AVA_VAN.5 +
+ + NL – NSCIB operated by
NL
+
+ + MTCOS Pro 2.2 EAC with PACE / (SLE78CLX) M7820   + + + MaskTech International GmbH + + +   + + 2013-10-072019-09-01 + + + EAL4+ +
ALC_DVS.2 +
ATE_DPT.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + MTCOS Pro 2.2 EAC with PACE / (SLE78CLX) M7820 (BAC)   + + + MaskTech International GmbH + + +   + + 2013-10-072019-09-01 + + + EAL4+ +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Infineon smartcard IC (Security Controller) M7794 A12 and G12 with optional RSA2048/4096 v1.02.013 EC v1.02.013 and Toolbox v1.02.013   + + + Infineon Technologies AG + + +   + + 2013-09-302019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + TCOS Passport Version 2.1 Release 1/P60D144   + + + T-Systems International GMBH + + +   + + 2013-09-302019-09-01 + + + EAL4+ +
ALC_DVS.2 +
ATE_DPT.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + TCOS Passport Version 2.1 Release 1-BAC/ P60D144   + + + T-Systems International GMBH + + +   + + 2013-09-302019-09-01 + + + EAL4+ +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Microcontrôleurs sécurisés SC23Z018, SC23ZD12A, SC23ZD08A, SC23ZD04A, SB23ZD18A, SB23ZD12A, SB23ZD08A et SB23ZD04A, incluant optionnellement la librairie cryptographique Neslib révision 3.1   + + + STMicroelectronics + + +   + + 2013-09-132019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + NATIONAL SMARTCARD IC UKTÜM-H v7.0 WITH DES – 3DES v7.0, AES256 v7.0, RSA2048 v7.0 LIBRARIES AND WITH IC DEDICATED SOFTWARE   +
+ +
+ + + + + + +
+
+ TÜBİTAK BİLGEM UEKAE + + +   + + 2013-09-052017-03-27 + + + EAL5+ +
AVA_VAN.5 +
+ + TR – TSE (Turkish Standards Institution) Common Criteria Certification Scheme
TR
+
+ + Microcontrôleurs SAMSUNG S3FT9MD et S3FT9MC   + + + Samsung Electronics Co., Ltd. + + +   + + 2013-09-042019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + SAMSUNG S3FV9QJ / S3FV9QL / S3FV9QH / S3FV9FH   + + + Samsung Electronics Co., Ltd. + + +   + + 2013-08-292019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Infineon smartcard IC (Security Controller) M7791 B12 with optional SCL library version 1.01.009 and with specific IC-dedicated firmware   + + + Infineon Technologies AG + + +   + + 2013-08-282019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Services DESFIRE de NFC FlyBuy Platinum V3.0 version R9.32.4 sur le composant SM33F1ME   +
+ +
+ + + + + + +
+
+ Oberthur Technologies / STMicroelectronics + + +   + + 2013-08-282019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Toshiba T6NE1 HW version 4   + + + Toshiba Corporation Semiconductor Company, Japan + + +   + + 2013-08-212019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + NO – SERTIT
NO
+
+ + TCOS Passport Version 2.1 Release 1/ P60D144/FSV02   + + + T-Systems International GMBH + + +   + + 2013-08-152019-09-01 + + + EAL4+ +
ALC_DVS.2 +
ATE_DPT.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + TCOS Passport Version 2.1 Release 1-BAC/ P60D144/FSV02   + + + T-Systems International GMBH + + +   + + 2013-08-152019-09-01 + + + EAL4 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Plateforme jTOP INFv#46 masquée sur composants Infineon SLE78CLX1600PM, SLE78CLX800P et SLE78CLX360PM   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2015-04-10 – ANSSI-CC-2013/55-M01
    + Maintenance Report + + Maintenance ST + +
  2. + +
    +
  3. + 2015-07-28 – Correctif du rapport de certification ANSSI-CC-2013/55
    + Maintenance Report + + Maintenance ST + +
  4. + +
+
+ + +
+
+ Trusted Logic / Infineon + + +   + + 2013-08-072019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Carte Mobile PayPass 1.0 sur Orange NFC V2 G1 release B sur composant ST33F1ME, configuration MIFARE activé ou configuration MIFARE désactivé - configuration Bridge AEPM version S1109398/S1105439   +
+ +
+ + + + + + +
+
+ Gemalto / STMicroelectronics + + +   + + 2013-08-062019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Carte Orange NFC V2 G1 release B, configuration MIFARE activé ou MIFARE désactivé, sur composant ST33F1ME (T1019210/release B)   + + + Gemalto / STMicroelectronics + + +   + + 2013-08-062019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + NXP Secure Smart Card Controller P60D024/016/012yVB including IC Dedicated Software with MIFARE Plus MF1PLUSx0 or MIFARE DESFire EV1   + + + NXP Semiconductors Germany GmbH Business Line Identification + + +   + + 2013-08-052014-09-09 + + + EAL5+ +
ALC_DVS.2 +
ASE_TSS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Crypto Library V1.0 on P60x080/052/040PVC   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2014-04-28 – Crypto Library V1.0 on P60x080/052/040PVC/PVC(y)
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ NXP Semiconductors Germany GmbH Business Line Identification + + +   + + 2013-08-022018-08-02 + + + EAL6+ +
ALC_FLR.1 +
ASE_TSS.2 +
+ + NL – NSCIB operated by
NL
+
+ + NXP J3D081_M59, J2D081_M59, J3D081_M61, J2D081_M61 Secure Smart Card Controller of JCOP V2.4.2 R2   + + + NXP Semiconductors Germany GmbH Business Line Identification + + +   + + 2013-07-312019-09-01 + + + EAL5+ +
ALC_DVS.2 +
ASE_TSS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + NXP J3D081_M59_DF and J3D081_M61_DF Secure Smart Card Controller Revision 2 of JCOP V2.4.2 R2   + + + NXP Semiconductors Germany GmbH Business Line Identification + + +   + + 2013-07-312019-09-01 + + + EAL4+ +
ALC_DVS.2 +
ASE_TSS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + NXP J3D145_M59, J2D145_M59, J3D120_M60, J3D082_M60, J2D120_M60, J2D082_M60 Secure Smart Card Controller of JCOP V2.4.2 R2   + + + NXP Semiconductors Germany GmbH Business Line Identification + + +   + + 2013-07-312019-09-01 + + + EAL5+ +
ALC_DVS.2 +
ASE_TSS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Athena IDProtect/OS755 (release 0355, level 0602, correctif P6) avec application IAS-ECC (version 03, build 02, correctif FA) sur composants SB23YR48/80B   + + + Athena Smartcard Solutions Inc / STMicroelectronics + + +   + + 2013-07-262019-09-01 + + + EAL4+ +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Microcontrôleurs RISC 32-bits SAMSUNG S3FS91J /S3FS91H / S3FS91V / S3FS93I, avec SWP, Rév. 7, incluant la librairie sécurisée RSA v4.2   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2014-12-23 – Rapport de maintenance ANSSI-CC-2013/49-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Samsung Electronics Co., Ltd. + + +   + + 2013-07-192019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Samsung S3FT9KF/S3FT9KT/S3FT9KS révision 1, incluant la librairie RSA/ECC sécurisée version 3.2   + + + Samsung Electronics Co., Ltd. + + +   + + 2013-07-112019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + SPass NX V1.0 R3 on S3CT9KW/S3CT9KC/S3CT9K9   + + + Samsung SDS + + +   + + 2013-07-052019-06-01 + + + EAL5+ +
ADV_IMP.2 +
ALC_DVS.2 +
AVA_VAN.5 +
+ + KR – IT Security Certification Center(ITSCC)
KR
+
+ + STARCOS 3.5 ID BAC C1   + + + G+D Mobile Security GmbH + + +   + + 2013-07-052019-09-01 + + + EAL4+ +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + STARCOS 3.5 ID EAC+AA C1   + + + G+D Mobile Security GmbH + + +   + + 2013-07-052019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Virtual Machine of Multos M3 G230M mask with AMD 113v4   +
+ +
+ + + + + + +
+
+ Multos international / Trusted Labs + + +   + + 2013-07-042019-09-01 + + + EAL7 + + + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Microcontrôleur SAMSUNG S3FT9PE Revision 0 embarquant la bibliothèque RSA/ECC optionnelle TORNADO 2MX2 v2.4   + + + Samsung Electronics Co., Ltd. + + +   + + 2013-07-022019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Plateforme jTOP INFv#46 masquée sur composants Infineon SLE78CLX1600PM, SLE78CLX800P et SLE78CLX360PM avec fonctionnalités MRTD   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2015-04-10 – ANSSI-CC-2013/42-M01
    + Maintenance Report + + Maintenance ST + +
  2. + +
    +
  3. + 2015-07-28 – Correctif du rapport de certification ANSSI-CC-213/42
    + Maintenance Report + + Maintenance ST + +
  4. + +
+
+ + +
+
+ Trusted Logic / Infineon + + +   + + 2013-06-272019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + NXP Smart Card Controller P60D080PVC and its major configurations P60D052PVC, P60D040PVC, P60C080PVC, P60C052PVC and P60C040PVC   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2014-02-04 – NXP Smart Card Controller P60D080/052/040PVC(y) and P60C080/052/040PVC(y) with IC dedicated Software
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ NXP Semiconductors Germany GmbH Business Line Identification + + +   + + 2013-06-242019-09-01 + + + EAL6+ +
ALC_FLR.1 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Microcontrôleurs sécurisés ST33F1M/1M0/896/768/640/512, SC33F1M0/896/768/640/512/384, SM33F1M/1M0/896/768/640/512, SE33F1M/1M0/896/768/640/512, SL33F1M/1M0/896/768/640/512, SP33F1M, incluant le logiciel dédié révision D ou E et optionnellement la bibliothèque cryptographique NesLib v3.0 ou v3.2   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2014-08-19 – Rapport de maintenance ANSSI-CC-2013/44-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ STMicroelectronics + + +   + + 2013-06-172019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Microcontrôleurs sécurisés ST33F1M/1M0/896/768/640/512, SC33F1M0/896/768/640/512/384,SM33F1M/1M0/896/768/640/512, SE33F1M/1M0/896/768/640/512, SL33F1M/1M0/896/768/640/512, SP33F1M incluant le logiciel dédié révision D ou E, optionnellement la bibliothèque cryptographique NesLib v3.0 ou v3.2, la librairie MIFARE DESFireTM EV1 v1.1   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2013-04-08 – Rapport de maintenance ANSSI-CC-2013/13-M01
    + Maintenance Report + +
  2. + +
    +
  3. + 2014-08-19 – Rapport de maintenance ANSSI-CC-2012/79-M02
    + Maintenance Report + +
  4. + +
    +
  5. + 2014-08-19 – Rapport de maintenance ANSSI-CC-2013/13-M02
    + Maintenance Report + +
  6. + +
    +
  7. + 2014-08-19 – Rapport de maintenance ANSSI-CC-2013/45-M01
    + Maintenance Report + +
  8. + +
+
+ + +
+
+ STMicroelectronics + + +   + + 2013-06-142019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Microcontrôleurs sécurisés ST33F1M, ST33F1M0, SC33F1M0, ST33F896, SC33F896, ST33F768, SC33F768, ST33F640, SC33F640, ST33F512, SC33F512 et SC33F384 incluant le logiciel dédié révision B ou C et optionnellement la bibliothèque cryptographique NesLib v3.0   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2014-08-19 – Rapport de maintenance ANSSI-CC-2011/07-M03
    + Maintenance Report + +
  2. + +
    +
  3. + 2014-08-19 – Rapport de maintenance ANSSI-CC-2013/43-M01
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ STMicroelectronics + + +   + + 2013-06-142019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + NXP Secure PKI Smart Card Controllers P5CD128V0v/ V0B(s), P5CC128V0v/ V0B(s), P5CD145V0v/ V0B(s), P5CC145V0v/ V0B(s), P5CN145V0v/V0B(s), each including IC Dedicated Software   + + + NXP Semiconductors Germany GmbH Business Line Identification + + +   + + 2013-06-122019-09-01 + + + EAL5+ +
ALC_DVS.2 +
ASE_TSS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + NXP Secure Smart Card Controllers P5CD016/021/041/051 and P5Cx081 V1A/ V1A(s)   + + + NXP Semiconductors Germany GmbH Business Line Identification + + +   + + 2013-06-122019-09-01 + + + EAL5+ +
ALC_DVS.2 +
ASE_TSS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Plateforme Multos M3 avec AMD 113v4 masquée sur composant SLE78CLX1600PM   +
+ +
+ + + + + + +
+
+ MULTOS International / Infineon Technology AG + + +   + + 2013-06-122019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Athena IDProtect Duo v5 avec application IASECC en configuration ICAO BAC sur composant AT90SC28880RCFV   + + + Athena Smartcard Solutions Inc. / Inside Secure S.A. + + +   + + 2013-06-112019-09-01 + + + EAL4+ +
ADV_FSP.5 +
ADV_INT.2 +
ADV_TDS.4 +
ALC_CMS.5 +
ALC_DVS.2 +
ALC_TAT.2 +
ATE_DPT.3 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Athena IDProtect Duo v5 avec application IASECC en configuration ICAO EAC sur composant AT90SC28880RCFV   + + + Athena Smartcard Solutions Inc. / Inside Secure S.A. + + +   + + 2013-06-112019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Kona102 ePassport [BAC configuration], Version 1 Revision 1 Update(patch) 2   + + + KONA I Co., Ltd. + + +   + + 2013-06-102019-09-01 + + + EAL4+ +
ALC_DVS.2 +
+ + ES – Organismo de Certificación de la Seguridad de las Tecnologías de la Información
ES
+
+ + Kona102 ePassport [EAC configuration], Version 1 Revision 1 Update(patch) 2   + + + KONA I Co., Ltd. + + +   + + 2013-06-102019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + ES – Organismo de Certificación de la Seguridad de las Tecnologías de la Información
ES
+
+ + Microcontrôleur sécurisé ST31-K330A révision E pour version contact seulement, incluant optionnellement la librairie cryptographique Neslib révision 3.2   + + + STMicroelectronics S.A. + + +   + + 2013-05-302019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Microcontrôleurs SAMSUNG S3FT9PF, S3FT9PT et S3FT9PS Revision 0 embarquant la bibliothèque RSA/ECC optionnelle TORNADO 2MX2 v2.4   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2014-11-20 – ANSSI-CC-2014/20-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Samsung Electronics Co., Ltd. + + +   + + 2013-05-302019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Carte Mobile PayPass 1.0 sur plateforme UpTeq NFC2.0.4_OFM sur composant ST33F1ME (S1109398/T1020364, version B)   +
+ +
+ + + + + + +
+
+ Gemalto / STMicroelectronics + + +   + + 2013-05-292019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Carte Upteq NFC 2.0.4_OFM release B sur composant ST33F1ME (T1020364, release B)   + + + Gemalto / STMicroelectronics + + +   + + 2013-05-292019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Carte VITALE 2 - Application ADELE : Composant AT90SC24036RCV masqué par le logiciel SESAM VITALE v1.0.1 avec correctif version 1   + + + MORPHO/Inside Secure + + +   + + 2013-05-222019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Carte VITALE 2 - Application VITALE : Composant AT90SC24036RCV masqué par le logiciel SESAM VITALE v1.0.1 avec correctif version 1   + + + MORPHO/Inside Secure + + +   + + 2013-05-222019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Application IAS Classic v3 sur plateforme Java Card en configuration ouverte de la carte à puce MultiApp ID V2.1 masquée sur composant P5CC145V0A   + + + Gemalto / NXP Semiconductors + + +   + + 2013-05-212019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Application IAS XL sur plateforme Java Card en configuration ouverte de la carte à puce MultiApp ID V2.1 masquée sur composant P5CC145V0A   + + + Gemalto / NXP Semiconductors + + +   + + 2013-05-212019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + STARCOS 3.5 ID GCC C2   + + + G+D Mobile Security GmbH + + +   + + 2013-05-172019-09-01 + + + EAL4+ +
ALC_DVS.2 +
ATE_DPT.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Plateforme Java Card en configuration ouverte de la carte à puce MultiApp ID V2.1 masquée sur composant P5CC145V0A   + + + Gemalto / NXP Semiconductors + + +   + + 2013-05-152019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Application eTravel EAC v2.0 sur la carte à puce fermée MultiApp V3 masquée sur le composant M7820 A11   + + + Gemalto - Infineon Technologies AG + + +   + + 2013-05-102019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Application eTravel EAC v2.0, en configuration BAC, sur la carte à puce fermée MultiApp V3 masquée sur le composant M7820 A11   + + + Gemalto - Infineon Technologies AG + + +   + + 2013-05-102019-09-01 + + + EAL4+ +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Application eTravel EAC v2.0, en configuration SAC, sur la carte à puce fermée MultiApp V3 masquée sur le composant M7820 A11   + + + Gemalto - Infineon Technologies AG + + +   + + 2013-05-102019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Plateforme Java Card en configuration ouverte de la carte à puce MultiApp V3 masquée sur le composant M7820 A11   + + + Gemalto - Infineon Technologies AG + + +   + + 2013-05-102019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + NXP Secure Smart Card Controller P60D024/016/012MVB including IC Dedicated Software with MIFARE Plus MF1PLUSx0   + + + NXP Semiconductors Germany GmbH Business Line Identification + + +   + + 2013-05-062019-09-01 + + + EAL5+ +
ALC_DVS.2 +
ASE_TSS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Carte Mobile PayPass 1.0 sur plateforme UpTeq NFC2.0.4_FRA sur composant ST33F1ME - Configuration Bridge AEPM (S1109398/T1020452, version A)   +
+ +
+ + + + + + +
+
+ Gemalto / STMicroelectronics + + +   + + 2013-04-232019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Carte Upteq NFC 2.0.4_FRA release A sur composant ST33F1ME (T1020452, release A)   + + + Gemalto / STMicroelectronics + + +   + + 2013-04-232019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ST31-K330A Secure microcontroller revision F for Dual mode version (contact and contactless) or contactless-only version, optionally including the NesLib cryptographic library revision 3.2   + + + STMicroelectronics S.A. + + +   + + 2013-04-232019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + NXP Secure Smart Card Controller P60D144/080MVA including IC Dedicated Software with MIFARE Plus MF1PLUSx0   + + + NXP Semiconductors Germany GmbH Business Line Identification + + +   + + 2013-04-192019-09-01 + + + EAL5+ +
ALC_DVS.2 +
ASE_TSS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + NXP Secure Smart Card Controllers P5CC008, P5CC012 V1A/V1A(s) each including IC Dedicated Software   + + + NXP Semiconductors Germany GmbH Business Line Identification + + +   + + 2013-04-042019-09-01 + + + EAL5+ +
ALC_DVS.1 +
ASE_TSS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + JavaCard platform for smart card ID-One Cosmo V7.1-s on component ST23YL80C (Standard)   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2014-05-13 – ANSSI-CC-2013/09-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Oberthur Technologies / STMicroelectronics + + +   + + 2013-03-292019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + JavaCard platform for smart card ID-One Cosmo V7.1-s on components ST23YR80B (Standard Dual) and ST23YR48B (Basic Dual)   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2014-05-13 – ANSSI-CC-2013/16-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Oberthur Technologies / STMicroelectronics + + +   + + 2013-03-292019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + JavaCard platform for smart card ID-One Cosmo V7.1-s on component ST23YL80C (Standard)   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2014-05-13 – Rapport de maintenance ANSSI-CC-2013/09-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Oberthur Technologies / STMicroelectronics + + +   + + 2013-03-292019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + JavaCard platform for smart card ID-One Cosmo V7.1-s on components ST23YR80B (Standard Dual) and ST23YR48B (Basic Dual)   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2014-05-13 – Rapport de maintenance ANSSI-CC-2013/16-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Oberthur Technologies / STMicroelectronics + + +   + + 2013-03-292019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Memory Management Unit des microcontrôleurs SAMSUNG S3FT9KF/ S3FT9KT/ S3FT9KS en révision 1   +
+ +
+ + + + + + +
+
+ Samsung Electronics Co., Ltd. / Trusted Labs + + +   + + 2013-03-292019-09-01 + + + EAL7 + + + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Virtual Machine of ID Motion V1 G231 mask with AMD 122v1   +
+ +
+ + + + + + +
+
+ Gemalto / Trusted Labs + + +   + + 2013-03-292019-09-01 + + + EAL7 + + + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Virtual Machine of ID Motion V1 G230 mask with AMD 122v1   +
+ +
+ + + + + + +
+
+ Gemalto / Trusted Labs + + +   + + 2013-03-252019-09-01 + + + EAL7 + + + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + TCOS Identity Card Version 1.0 Release 2/SLE78CLX1440P   + + + T-Systems International GMBH + + +   + + 2013-03-222019-09-01 + + + EAL4+ +
ALC_DVS.2 +
ATE_DPT.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + TCOS Identity Card Version 1.1 Release 1/P60D144   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2014-12-09 – TCOS Identity Card Version 1.1 Release 1/P60D144
    + Maintenance Report + +
  2. + +
    +
  3. + 2014-12-10 – TCOS Identity Card Version 1.1 Release 1-PI/P60D144
    + Maintenance Report + + Maintenance ST + +
  4. + +
+
+ + +
+
+ T-Systems International GMBH + + +   + + 2013-03-202019-09-01 + + + EAL4+ +
ALC_DVS.2 +
ATE_DPT.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Plateforme ID Motion V1 avec AMD 122v1 sur composants M7801 A12   +
+ +
+ + + + + + +
+
+ Gemalto - Infineon Technologies AG + + +   + + 2013-03-122019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ST33F1M/1M0/896/768/640/512, SC33F1M0/896/768/640/512/384, SM33F1M/1M0/896/768/640/512, SE33F1M/1M0/896/768/640/512, SL33F1M/1M0/896/768/640/512, SP33F1M, With dedicated software revision D, Optional cryptographic library Neslib 3.0 or 3.2, Optional MIFARE DESFireTM EV1   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2013-04-08 – Rapport de maintenance ANSSI-CC-2013/13-M01
    + Maintenance Report + +
  2. + +
    +
  3. + 2014-08-19 – Rapport de maintenance ANSSI-CC-2013/13-M02
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ STMicroelectronics + + +   + + 2013-03-062019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Microcontrôleurs SAMSUNG S3FT9FD, S3FT9FC et S3FT9FB Revision 1.0   + + + Samsung Electronics Co., Ltd. + + +   + + 2013-03-012019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + MultiApp ID Tachograph V1.3 sur composant P5CC081   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2015-10-14 – ANSSI-CC-2013/08-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Gemalto / NXP Semiconductors + + +   + + 2013-02-282019-09-01 + + + EAL4+ +
ALC_DVS.2 +
ATE_DPT.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Application IAS XL sur plateforme Java Card en configuration ouverte de la carte à puce MultiApp ID V2.1 sur composant P5CC081V1A   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2015-10-14 – ANSSI-CC-2012/80-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Gemalto / NXP Semiconductors + + +   + + 2013-02-262019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Infineon Technologies Smart Card IC (Security Controller) M9900 A21 with optional RSA v1.03.006, EC v1.03.006, Toolbox v1.03.006 and Flash Translation Layer V1.01.0008 libraries with specific IC dedicated software   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2013-06-19 – Infineon Technologies Smart Card IC (Security Controller) M9900 A22 with optional RSA v1.03.006, EC v1.03.006, Toolbox v1.03.006 and Flash Translation Layer V1.01.0008 libraries with specific IC dedicated software
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Infineon Technologies AG + + +   + + 2013-02-222014-09-09 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + MTCOS Pro 2.1 BAC V2 / ST23YR80   + + + MaskTech International GmbH + + +   + + 2013-02-222019-09-01 + + + EAL4+ +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Carte Upteq Mobile M-NFC 2.0 sur composant ST33F1ME (T1019172 / Release A)   + + + Gemalto / STMicroelectronics + + +   + + 2013-02-152019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Xaica-Alpha PLUS ePassport Active Authentication   +
+ +
+ + + + + + +
+
+ NTT Data Corporation / STMicroelectronics. + + +   + + 2013-02-152019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Xaica-Alpha PLUS ePassport Configuration BAC and Active Authentication   +
+ +
+ + + + + + +
+
+ NTT Data Corporation / STMicroelectronics. + + +   + + 2013-02-152019-09-01 + + + EAL4+ +
ADV_FSP.5 +
ADV_INT.2 +
ADV_TDS.4 +
ALC_CMS.5 +
ALC_DVS.2 +
ALC_TAT.2 +
ATE_DPT.3 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + LDS EAC Java Applet in BAC configuration with AA v2.2   + + + Oberthur Technologies + + +   + + 2013-02-132019-09-01 + + + EAL4+ +
ALC_DVS.2 +
+ + ES – Organismo de Certificación de la Seguridad de las Tecnologías de la Información
ES
+
+ + LDS EAC Java Applet in BAP configuration with AA v2.2   +
+ +
+ + + + + + +
+
+ Oberthur Technologies + + +   + + 2013-02-132019-09-01 + + + EAL4+ +
ALC_DVS.2 +
+ + ES – Organismo de Certificación de la Seguridad de las Tecnologías de la Información
ES
+
+ + LDS EAC Java Applet in EAC configuration with AA v2.2   + + + Oberthur Technologies + + +   + + 2013-02-132019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + ES – Organismo de Certificación de la Seguridad de las Tecnologías de la Información
ES
+
+ + LDS EAC Java Applet in EAP configuration with AA v2.2   +
+ +
+ + + + + + +
+
+ Oberthur Technologies + + +   + + 2013-02-132019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + ES – Organismo de Certificación de la Seguridad de las Tecnologías de la Información
ES
+
+ + Microcontrôleurs sécurisés SA23YL18 et SB23YL18 incluant la bibliothèque cryptographique NesLib v2.0, v3.0 ou v3.1, révision externe B, révision interne G   + + + STMicroelectronics + + +   + + 2013-02-112019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Application eTravel EAC 1.4 avec AA, configuration BAC avec AMD 122v1, masquée sur composants M7820 A11   + + + Gemalto - Infineon Technologies AG + + +   + + 2013-02-072019-09-01 + + + EAL4+ +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Application eTravel EAC 1.4 avec AA, configuration EAC avec AMD 122v1, masquée sur composants M7820 A11   + + + Gemalto - Infineon Technologies AG + + +   + + 2013-02-072019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + SAMSUNG S3FV9QM/S3FV9QK, revision 3   + + + Samsung Electronics Co., Ltd. + + +   + + 2013-02-042019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Microcontrôleurs sécurisés SA23YL80 et SB23YL80, incluant la bibliothèque cryptographique NesLib v1.0, v2.0, v3.0 ou v3.1, en configuration SA ou SB   + + + STMicroelectronics + + +   + + 2013-01-302019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + KCOS e-Passport Version 2.1 S3CT9KW/KC/K9   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2013-05-31 – [KECS-ISIS-0435a-2013]Maientenance Report(KCOS e-Passport V2.1 S3CT9KWKCK9)
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ KOMSCO + + +   + + 2013-01-282019-06-01 + + + EAL5+ +
ADV_IMP.2 +
ALC_DVS.2 +
AVA_VAN.5 +
+ + KR – IT Security Certification Center(ITSCC)
KR
+
+ + Bundesdruckerei Document Application Version 1.2.1116   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2013-04-19 – Bundesdruckerei Document Application Version 1.2.1116
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Bundesdruckerei GmbH + + +   + + 2013-01-222019-09-01 + + + EAL3 + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Microcontrôleurs sécurisés SA23YR80/48 et SB23YR80/48, incluant la bibliothèque cryptographique NesLib v2.0, v3.0 ou v3.1, en configuration SA ou SB   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2016-12-13 – ANSSI-CC-2012/68-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ STMicroelectronics + + +   + + 2013-01-042019-09-01 + + + EAL6+ +
ALC_FLR.1 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Athena IDProtect/OS755 avec application ICAO BAC sur composants SB23YR48/80B   + + + Athena Smartcard Solutions Inc / STMicroelectronics + + +   + + 2012-12-262019-09-01 + + + EAL4+ +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Athena IDProtect/OS755 avec application ICAO EAC sur composants SB23YR48/80B   + + + Athena Smartcard Solutions Inc / STMicroelectronics + + +   + + 2012-12-262019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Athena IDProtect/OS755 avec application IAS-ECC sur composants SB23YR48/80B   + + + Athena Smartcard Solutions Inc / STMicroelectronics + + +   + + 2012-12-212019-09-01 + + + EAL4+ +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + MTCOS Pro 2.2 EAC / (SLE78CLX) M7820   + + + MaskTech International GmbH + + +   + + 2012-12-212019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + MTCOS Pro 2.2 EAC / (SLE78CLX) M7820   + + + MaskTech International GmbH + + +   + + 2012-12-212019-09-01 + + + EAL4+ +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Plateforme ID Motion V1 avec AMD 113v3 sur composants M7820 A11   +
+ +
+ + + + + + +
+
+ Gemalto - Infineon Technologies AG + + +   + + 2012-12-212019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Plateforme ID Motion V1 avec AMD 122v1 sur composants M7820 A11   +
+ +
+ + + + + + +
+
+ Gemalto - Infineon Technologies AG + + +   + + 2012-12-212019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Crypto Library V2.7 NXP Smart Card Controller P5CD081V1D and its major configurations   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2013-07-04 – Crypto Library V2.7/V2.9 on SmartMX P5Cx081 / CD041 / CD021 / CD016 V1D
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ NXP Semiconductors Germany GmbH Business Line Identification + + +   + + 2012-12-192019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + ID-One Tachograph, Version 1.0   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2015-05-07 – ID-One Tachograph (Version 1.0), comprising Tachograph applet Version 00 00 00 25
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ Oberthur Technologies + + +   + + 2012-12-122017-12-12 + + + EAL4+ +
ALC_DVS.2 +
ATE_DPT.2 +
AVA_VAN.5 +
+ + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + Application IAS Classic v3 sur plateforme Java Card en configuration ouverte de la carte à puce MultiApp ID V2.1 sur composant P5CC081V1A   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2015-10-14 – ANSSI-CC-2012/76-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Gemalto / NXP Semiconductors + + +   + + 2012-12-032019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + eTravel EAC version 1.1 avec AA (version 01 03), configuration BAC, sur composant P5CD080   + + + Gemalto / NXP Semiconductors + + +   + + 2012-11-302019-09-01 + + + EAL4+ +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + NXP Secure Smart Card Controller P60D024/016/012PVB with IC Dedicated Software   + + + NXP Semiconductors Germany GmbH Business Line Identification + + +   + + 2012-11-292014-09-09 + + + EAL6+ +
ALC_FLR.1 +
ASE_TSS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + NXP Secure Smart Card Controller P60x144/080PVA with IC Dedicated Software FW5.0   + + + NXP Semiconductors Germany GmbH Business Line Identification + + +   + + 2012-11-232014-09-09 + + + EAL6+ +
ALC_FLR.1 +
ASE_TSS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + ST33F1M/1M0/896/768/640/512, SC33F1M0/896/768/640/512/384, SM33F1M/1M0/896/768/640/512, SE33F1M/1M0/896/768/640/512, SL33F1M/1M0/896/768/640/512, SP33F1M, With dedicated software revision D, Optional cryptographic library Neslib 3.0 or 3.2   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2013-04-08 – Rapport de maintenance ANSSI-CC-2012/79-M01
    + Maintenance Report + +
  2. + +
    +
  3. + 2014-08-19 – Rapport de maintenance ANSSI-CC-2012/79-M02
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ STMicroelectronics + + +   + + 2012-11-122019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + eTravel EAC version 1.1 avec AA (version 01 03), configuration EAC, sur composant P5CD080   + + + Gemalto / NXP Semiconductors + + +   + + 2012-11-082019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Microcontrôleurs sécurisés ST23R160/80A/48A et ST23L160/80A/48A, incluant optionnellement la bibliothèque cryptographique NesLib v3.1   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2013-07-11 – Rapport de maintenance ANSSI-CC-2012/77-M01
    + Maintenance Report + +
  2. + +
    +
  3. + 2014-03-04 – Rapport de maintenance ANSSI-CC-2012/77-M02
    + Maintenance Report + + Maintenance ST + +
  4. + +
    +
  5. + 2015-02-19 – ANSSI-CC-2012/77-M03
    + Maintenance Report + +
  6. + +
    +
  7. + 2017-02-10 – ANSSI-CC-2012/77-M04
    + Maintenance Report + +
  8. + +
+
+ + +
+
+ STMicroelectronics + + +   + + 2012-11-082019-09-01 + + + EAL6+ +
ALC_FLR.1 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Ucard UBJ31-G11 V1.1   + + + UBIVELOX + + +   + + 2012-10-312019-06-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + KR – IT Security Certification Center(ITSCC)
KR
+
+ + LEGIC card-in-card, AFS4096-JP12 Version 1.2   +
+ +
+ + + + + + +
+
+ LEGIC® Identsystems AG + + +   + + 2012-10-232019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Morpho JC ePassport V3.0.0 (BAC)   + + + Morpho B.V. + + +   + + 2012-10-232019-09-01 + + + EAL4+ +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Morpho JC ePassport V3.0.0 (EAC)   + + + Morpho B.V. + + +   + + 2012-10-232019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Carte M-NFC2.0.3_TUR sur composant ST33F1ME (T1019850 / Release A)   + + + Gemalto / STMicroelectronics + + +   + + 2012-10-222019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Microcontrôleurs SAMSUNG S3CT9KW, S3CT9KC et S3CT9K9 Revision 2.0 embarquant la bibliothèque RSA/ECC optionnelle TORNADO 2MX2 v2.1   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2012-10-22 – Rapport de maintenance ANSSI-CC-2012/72-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Samsung Electronics Co., Ltd. + + +   + + 2012-10-102019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Microcontrôleurs SAMSUNG S3CT9KW, S3CT9KC et S3CT9K9 Revision 2.0 embarquant la bibliothèque RSA/ECC optionnelle TORNADO 2MX2 v2.2   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2012-10-22 – Rapport de maintenance ANSSI-CC-2012/70-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Samsung Electronics Co., Ltd. + + +   + + 2012-10-102019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Cryptosmart card v5.0 sur plateforme Oberthur ID-One Cosmo v7.0.1-n avec correctif 077121   +
+ +
+ + + + + + +
+
+ ERCOM /Oberthur Technologies/ NXP Semiconductors + + +   + + 2012-10-052019-09-01 + + + EAL4+ +
ALC_DVS.2 +
ALC_FLR.3 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + SOMA801NXP, version 1.0   + + + Gep Spa / NXP Semiconductors Germany GmbH + + +   + + 2012-10-052019-09-01 + + + EAL4+ +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Microcontrôleur sécurisé ST23YS64C   + + + STMicroelectronics + + +   + + 2012-10-012019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + SOMA801NXP, version 1.0   + + + Gep Spa / NXP Semiconductors Germany GmbH + + +   + + 2012-10-012019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ID-ONE Cosmo V7.0.1-n Smartcard with patch 077121 on NXP P5CD081 V1A (Standard Dual), P5CC081 V1A (Standard) and P5CD041 V1A (Basic Dual) components   + + + Oberthur Technologies / NXP Semiconductors GmbH + + +   + + 2012-09-282019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Infineon Security Controller M7892 B11 with optional RSA2048/4096 v1.02.013, EC v1.02.013, SHA-2 v1.01 and Toolbox v1.02.013 libraries and with specific IC dedicated software (firmware)   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2013-09-05 – Infineon Security Controller M7892 B11 with optional RSA2048/4096 v1.02.013, EC v1.02.013, SHA-2 v1.01 and Toolbox v1.02.013 libraries and with specific IC dedicated software (firmware)
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ Infineon Technologies AG + + +   + + 2012-09-112019-09-01 + + + EAL6+ +
ALC_FLR.1 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + cv act ePasslet/BAC v1.8   + + + cv cryptovision GmbH + + +   + + 2012-09-102019-09-01 + + + EAL4+ +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + cv act ePasslet/EACv1 v1.8   + + + cv cryptovision GmbH + + +   + + 2012-09-102019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + cv act ePasslet/EACv2-SAC v1.8   + + + cv cryptovision GmbH + + +   + + 2012-09-102019-09-01 + + + EAL4+ +
ALC_DVS.1 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Infineon smart card IC (Security Controller) M7820 A11 and M11 with optional RSA2048/4096 v1.02.013, EC v1.02.013, SHA-2 v1.01 and Toolbox v1.02.013 libraries and with specific IC dedicated software   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2013-06-24 – Infineon smart card IC (Security Controller) M7820 A11 and M11 with optional RSA2048/4096 v1.02.013, EC v1.02.013, SHA-2 v1.01 and Toolbox v1.02.013 libraries and with specific IC dedicated software
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Infineon Technologies AG + + +   + + 2012-09-052019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + UKİS (NATIONAL SMART CARD OPERATING SYSTEM ) V1.2.2 ON UKT23T64H V4   +
+ +
+ + + + + + +
+
+ TÜBİTAK BİLGEM UEKAE + + +   + + 2012-09-052017-03-27 + + + EAL4+ +
AVA_VAN.5 +
+ + TR – TSE (Turkish Standards Institution) Common Criteria Certification Scheme
TR
+
+ + Infineon smart card IC (Security Controller) M9900 A21 with specific IC dedicated software   + + + Infineon Technologies AG + + +   + + 2012-08-212019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + NXP Secure Smart Card Controllers P5CD016V1D / P5CD021V1D / P5CD041V1D / P5Cx081V1D with DESFire EV1   + + + NXP Semiconductors Germany GmbH Business Line Identification + + +   + + 2012-08-132019-09-01 + + + EAL4+ +
ALC_DVS.2 +
ASE_TSS.2 +
ATE_DPT.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Samsung S3CT9AC/S3CT9AA/S3CT9A7 16-Bit RISC Microcontroller for Smart Cards, Revision 0 with specific IC Dedicated Software   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2017-01-19 – Samsung S3CT9AC/S3CT9AA/S3CT9A7 16-Bit RISC Microcontroller for Smart Cards, Revision 0 with specific IC Dedicated Software
    + Maintenance Report + +
  2. + +
    +
  3. + 2018-05-09 – Reassessment - Samsung S3CT9AC/AA/A7 16-bit SecuCalm RISC Microcontroller for Smart Card including specific IC Dedicated Software
    + Maintenance Report + + Maintenance ST + +
  4. + +
+
+ + +
+
+ Samsung Electronics Co., Ltd. + + +   + + 2012-08-132019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Samsung S3CT9P3 16-Bit RISC Microcontroller for Smart Cards, Revision 0 with optional Secure RSA and ECC Library (Version 2.0) including specific IC Dedicated Software   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2017-01-19 – Samsung S3CT9P3 16-Bit RISC Microcontroller for Smart Cards, Revision 0 with optional Secure RSA and ECC Library (Version 2.0) including specific IC Dedicated Software
    + Maintenance Report + +
  2. + +
    +
  3. + 2018-05-09 – Reassessment - Samsung S3CT9P3 16-bit SecuCalm RISC Microcontroller for Smart Card with optional Secure RSA and ECC library including specific IC Dedicated Software
    + Maintenance Report + + Maintenance ST + +
  4. + +
+
+ + +
+
+ Samsung Electronics Co., Ltd. + + +   + + 2012-08-132019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Athena IDProtect/OS755 Key version 9.1.2 on AT90SC25672RCT-USB Microcontroller embedding IDSign applet   + + + Athena Smartcard Solutions Inc. / Inside Secure S.A. + + +   + + 2012-08-102019-09-01 + + + EAL4+ +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + NFC FLYBUY PLATINUM V2 sur composant ST33F1ME   + + + Oberthur Technologies / STMicroelectronics + + +   + + 2012-08-102019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ID-OneTM ePass v2.2 en configuration SAC et AA sur composant NXP P5CD081   + + + Oberthur Technologies / NXP Semiconductors GmbH + + +   + + 2012-07-312019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Mobile PayPass 1.0 on Orange NFC V2 G1 release B Card on ST33F1ME - Bridge AEPM configuration   +
+ +
+ + + + + + +
+
+ Gemalto / STMicroelectronics + + +   + + 2012-07-302019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Orange NFC V2 G1 release B Card on ST33F1ME (T1019210 / Release B)   + + + Gemalto / STMicroelectronics + + +   + + 2012-07-302019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Infineon smartcard IC (Security Controller) M7794 A12 with optional RSA2048/4096 v1.02.013, EC v1.02.013 and Toolbox v1.02.013   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2013-03-15 – Infineon smartcard IC (Security Controller) M7794 A12 with optional RSA2048/4096 v1.02.013, EC v1.02.013 and Toolbox v1.02.013
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Infineon Technologies AG + + +   + + 2012-07-262019-09-01 + + + EAL4+ +
ALC_DVS.2 +
ATE_DPT.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + NXP Secure Smart Card Controller P60x144/080PVA   + + + NXP Semiconductors Germany GmbH Business Line Identification + + +   + + 2012-07-262019-09-01 + + + EAL6+ +
ALC_FLR.1 +
ASE_TSS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + STARCOS 3.5 ID SAC+EAC+AA C1   +
+ +
+ + + + + + +
+
+ G+D Mobile Security GmbH + + +   + + 2012-07-242019-09-01 + + + EAL4+ +
ALC_DVS.2 +
ATE_DPT.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + LEO V2   + + + Ingenico Healthcare/e-ID + + +   + + 2012-07-192019-09-01 + + + EAL3+ +
ADV_FSP.4 +
ADV_IMP.1 +
ADV_TDS.3 +
ALC_FLR.3 +
ALC_TAT.1 +
AVA_VAN.3 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + NFC FLYBUY PLATINUM sur ST33F1ME   + + + Oberthur Technologies / STMicroelectronics + + +   + + 2012-07-192019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Secure Microcontrollers ST23ZR08A/ST23ZR04A/ST23ZR02A, ST23ZC08A/ST23ZC04A/ST23ZC02A   + + + STMicroelectronics + + +   + + 2012-07-192019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Microcontrôleur AT90SC20818RCFV, Rev. E   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2012-12-21 – Rapport de maintenance ANSSI-CC-2012/35-M01
    + Maintenance Report + +
  2. + +
    +
  3. + 2013-12-12 – Rapport de maintenance ANSSI-CC-2012/35-M02
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ STMicroelectronics + + +   + + 2012-07-122019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Application eTravel EAC 1.4 avec AA, configuration BAC avec AMD 113v3, masquée sur composants IFX M7820 A11   + + + Gemalto - Infineon Technologies AG + + +   + + 2012-07-062019-09-01 + + + EAL4+ +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Application eTravel EAC 1.4 avec AA, configuration BAC avec AMD 113v4, masquée sur composants IFX M7820 A11   + + + Gemalto - Infineon Technologies AG + + +   + + 2012-07-062019-09-01 + + + EAL4+ +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Application eTravel EAC 1.4 avec AA, configuration EAC avec AMD 113v3, masquée sur composants IFX M7820 A11   + + + Gemalto - Infineon Technologies AG + + +   + + 2012-07-062019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Application eTravel EAC 1.4 avec AA, configuration EAC avec AMD 113v4, masquée sur composants IFX M7820 A11   + + + Gemalto - Infineon Technologies AG + + +   + + 2012-07-062019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Crypto Library V2.6 on P5CC008V1A and P5CC012V1A   + + + NXP Semiconductors Germany GmbH Business Line Identification + + +   + + 2012-07-062017-06-07 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + NL – NSCIB operated by
NL
+
+ + MultiApp ID Tachograph V1.3   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2015-10-14 – ANSSI-CC-2012/28-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Gemalto / NXP Semiconductors + + +   + + 2012-07-052019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + NATIONAL SMARTCARD IC (UKTÜM) UKT23T64H v4 WITH DES – 3DES v4.2, AES256 v4.2, RSA2048 v4.2 LIBRARIES AND WITH IC DEDICATED SOFTWARE   +
+ +
+ + + + + + +
+
+ TÜBİTAK BİLGEM UEKAE + + +   + + 2012-07-032017-03-27 + + + EAL5+ +
AVA_VAN.5 +
+ + TR – TSE (Turkish Standards Institution) Common Criteria Certification Scheme
TR
+
+ + Plateforme Java Card de la carte à puce MultiApp ID V2.1 masquée sur composant P5CC081V1A   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2015-10-14 – ANSSI-CC-2012/24-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Gemalto / NXP Semiconductors + + +   + + 2012-06-292019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + SPass NX V1.0 on S3CT9KW/S3CT9KC/S3CT9K9   + + + Samsung SDS + + +   + + 2012-06-152019-06-01 + + + EAL4+ +
ADV_IMP.2 +
ALC_CMS.5 +
ALC_DVS.2 +
ALC_TAT.2 +
ATE_DPT.2 +
AVA_VAN.5 +
+ + KR – IT Security Certification Center(ITSCC)
KR
+
+ + SAMSUNG S3FT9KF/S3FT9KT/S3FT9KS, revision 0   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2012-10-01 – Rapport de maintenance ANSSI-CC-2012/27-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Samsung Electronics Co., Ltd. + + +   + + 2012-06-142019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Carte IAS ECC v1.0.1 sur ID-One Cosmo v7.0.1-a : applet (version 3124) masquée sur ID-One Cosmo V7.0.1-a (composant Inside Secure) en configuration Standard et Basic avec correctif 075243   + + + Oberthur Technologies / Inside Secure + + +   + + 2012-06-122019-09-01 + + + EAL4+ +
ALC_DVS.2 +
ATE_DPT.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Microcontrôleur RISC AT90SC28880RCV / AT90SC28848RCV, Rev A   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2013-05-16 – Rapport de maintenance ANSSI-CC-2012/21-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Inside Secure + + +   + + 2012-06-122019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Carte VITALE 2 - Application ADELE : Composant SB23ZL48 masqu� par le logiciel SESAM VITALE v1.0.1 avec correctif version 1   + + + MORPHO / ST Microelectronics + + +   + + 2012-06-072019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Carte VITALE 2 - Application VITALE : Composant SB23ZL48 masqué par le logiciel SESAM VITALE v1.0.1 avec correctif version 1   + + + MORPHO / ST Microelectronics + + +   + + 2012-06-072019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Infineon smart card IC (Security Controller) M7820 A11 with optional RSA2048/4096 v1.02.008, EC v1.02.008, SHA-2 v1.01 and Toolbox v1.02.008 libraries and with specific IC dedicated software   + + + Infineon Technologies AG + + +   + + 2012-06-062019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + KONA102 ePassport BAC, versión 1.0.1   + + + KEBTechnology + + +   + + 2012-06-012019-09-01 + + + EAL4+ +
ALC_DVS.2 +
+ + ES – Organismo de Certificación de la Seguridad de las Tecnologías de la Información
ES
+
+ + KONA102 ePassport EAC, versión 1.0.1   + + + KEBTechnology + + +   + + 2012-06-012019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + ES – Organismo de Certificación de la Seguridad de las Tecnologías de la Información
ES
+
+ + KONA102J1 ePassport BAC, versión 1.1   + + + KEBTechnology + + +   + + 2012-06-012019-09-01 + + + EAL4+ +
ALC_DVS.2 +
+ + ES – Organismo de Certificación de la Seguridad de las Tecnologías de la Información
ES
+
+ + KONA102J1 ePassport EAC, versión 1.1   + + + KEBTechnology + + +   + + 2012-06-012019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + ES – Organismo de Certificación de la Seguridad de las Tecnologías de la Información
ES
+
+ + Athena OS755/IDProtect v6 avec application IAS-ECC sur composant AT90SC28872RCU   + + + Athena Smartcard Solutions Inc. / Inside Secure S.A. + + +   + + 2012-05-312019-09-01 + + + EAL4+ +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + AT90SDC100 révision B avec bibliothèque cryptographique version 00.03.11.08   + + + Inside Secure + + +   + + 2012-05-152019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Java Card Virtual Machine of LinqUs USIM 128k platform on SC33F640E   +
+ +
+ + + + + + +
+
+ Gemalto + + +   + + 2012-04-302019-09-01 + + + EAL4+ +
ADV_FSP.6 +
ADV_IMP.2 +
ADV_INT.3 +
ADV_SPM.1 +
ADV_TDS.6 +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Bundesdruckerei Document Reading Application Version 1.1.1102   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2012-08-22 – Bundesdruckerei Document Reading Application Version 1.1.1102
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Bundesdruckerei GmbH + + +   + + 2012-04-242019-09-01 + + + EAL3 + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Microcontrôleur RISC AT90SC28880RCFV, Rev. I   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2012-12-21 – Rapport de maintenance ANSSI-CC-2012/22-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Inside Secure + + +   + + 2012-04-232019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + SSCOS V1.0 on S3CC9LC   + + + Samsung SDS + + +   + + 2012-03-302019-06-01 + + + EAL4+ +
ADV_IMP.2 +
ATE_DPT.2 +
AVA_VAN.4 +
+ + KR – IT Security Certification Center(ITSCC)
KR
+
+ + eTravel EAC v1.2 masquée sur le composant S3CC9LC   + + + Gemalto / Samsung + + +   + + 2012-03-162019-09-01 + + + EAL4+ +
ADV_IMP.2 +
ALC_DVS.2 +
AVA_MSU.3 +
AVA_VLA.4 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + TOSMART-P080-AAJePassport   +
+ +
+ + + + + + +
+
+ TOSHIBA CORPORATION Social Infrastructure Systmems Company + + +   + + 2012-03-152019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + NO – SERTIT
NO
+
+ + Mobile PayPass 1.0 on Orange NFC V2 G1 Card - Bridge AEPM configuration (S1109398/S1105439 Bridge AEPM configuration / Release A)   +
+ +
+ + + + + + +
+
+ Gemalto / STMicroelectronics + + +   + + 2012-03-052019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Microcontrôleur RISC AT90SC24036RCV, Rev A   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2012-08-10 – Rapport de maintenance ANSSI-CC-2012/08-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Inside Secure + + +   + + 2012-03-022019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Application eTravel EAC v1.3 chargée sur la carte à puce MultiApp V2 SAC (PACE) masquée sur le composant SLE66CLX1440PE m2091/a13   + + + Gemalto - Infineon Technologies AG + + +   + + 2012-02-072019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ID OneTM ePass v2.2 en configuration BAP et AA sur composants STMicroelectronics ST23YR80/48B   +
+ +
+ + + + + + +
+
+ Oberthur Technologies / STMicroelectronics + + +   + + 2012-02-072019-09-01 + + + EAL4+ +
ADV_FSP.5 +
ADV_INT.2 +
ADV_TDS.4 +
ALC_CMS.5 +
ALC_DVS.2 +
ALC_TAT.2 +
ATE_DPT.3 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ID OneTM ePass v2.2 en configuration EAP et AA sur composants STMicroelectronics ST23YR80/48B   +
+ +
+ + + + + + +
+
+ Oberthur Technologies / STMicroelectronics + + +   + + 2012-02-072019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Mécanisme SAC de l'application eTravel EAC v1.3 chargée sur la carte à puce MultiApp V2 SAC (PACE) masquée sur le composant SLE66CLX1440PE m2091/a13   + + + Gemalto - Infineon Technologies AG + + +   + + 2012-02-072019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Infineon Security Controller M7892 A21 with optional RSA 2048/4096 1.02.013, EC v1.02.013, SHA-2 v1.01 and Toolbox v1.02.013 libraries and with specific IC dedicated software (firmware)   + + + Infineon Technologies AG + + +   + + 2012-02-062019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + STARCOS 3.5 ID GCC C1R   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2012-03-23 – STARCOS 3.5 ID GCC C1R
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ G+D Mobile Security GmbH + + +   + + 2012-01-312019-09-01 + + + EAL4+ +
ALC_DVS.2 +
ATE_DPT.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Infineon smartcard IC (Security Controller) M7794 A11 with optional RSA2048/4096 v1.02.013 EC v1.02.013 and Toolbox v1.02.013   + + + Infineon Technologies AG + + +   + + 2012-01-272019-09-01 + + + EAL4+ +
ALC_DVS.2 +
ATE_DPT.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Athena IDPass ICAO BAC avec AA sur composant SB23YR48/80B avec librairie cryptographique NesLib v3.0   + + + Athena Smartcard Solutions Inc / STMicroelectronics + + +   + + 2011-12-232019-09-01 + + + EAL4+ +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Athena IDPass ICAO EAC avec AA sur composant SB23YR48/80B avec librairie cryptographique NesLib v3.0   + + + Athena Smartcard Solutions Inc / STMicroelectronics + + +   + + 2011-12-232019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ID OneTM ePass v2.2 en configuration BAP et AA sur composant NXP P5CD081V1A   +
+ +
+ + + + + + +
+
+ Oberthur Technologies / NXP Semiconductors GmbH + + +   + + 2011-12-232019-09-01 + + + EAL4+ +
ADV_FSP.5 +
ADV_INT.2 +
ADV_TDS.4 +
ALC_CMS.5 +
ALC_DVS.2 +
ALC_TAT.2 +
ATE_DPT.3 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ID OneTM ePass v2.2 en configuration EAP et AA sur composant NXP P5CD081V1A   +
+ +
+ + + + + + +
+
+ Oberthur Technologies / NXP Semiconductors GmbH + + +   + + 2011-12-232019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Orange NFC V2 G1 Card on ST33F1ME (T1019210 / Release A)   + + + Gemalto / STMicroelectronics + + +   + + 2011-12-232019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Bundesdruckerei Document Application, Version 1.1.1104   + + + Bundesdruckerei GmbH + + +   + + 2011-12-212019-09-01 + + + EAL3 + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + KKEC (Institutional Smartcard Access Device) APPLICATION SOFTWARE V 1.41.06A   +
+ +
+ + + + + + +
+
+ TÜBİTAK BİLGEM UEKAE + + +   + + 2011-12-212017-03-27 + + + EAL4+ +
ALC_DVS.2 +
+ + TR – TSE (Turkish Standards Institution) Common Criteria Certification Scheme
TR
+
+ + Morpho JC ePassport V2.0.1 (BAC)   + + + Morpho B.V. + + +   + + 2011-12-212019-09-01 + + + EAL4+ +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Morpho JC ePassport V2.0.1 (EAC)   + + + Morpho B.V. + + +   + + 2011-12-212019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + NXP Secure Smart Card Controllers P5CC008V1A, P5CC012V1A each including IC Dedicated Software   + + + NXP Semiconductors Germany GmbH Business Line Identification + + +   + + 2011-12-212019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Microcontrôleur RISC AT90SC20818RCV/AT90SC20812RCV, Rev C   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2012-07-11 – Rapport de maintenance ANSSI-CC-2011/65-M01
    + Maintenance Report + +
  2. + +
    +
  3. + 2013-12-17 – ANSSI-CC-2011/65-M02
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ Inside Secure + + +   + + 2011-12-192019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + SLE88CFX4001P/m8835b18, SLE88CFX4003/m8837b18, SLE88CFX3521P/m8857b18 and SLE88CFX2921P/m8859b18 all including optional RSA2048 and SHA-2 Library   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2014-02-21 – SLE88CFX4001P / m8835 including optional RSA2048 and SHA-2 Library
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Infineon Technologies AG + + +   + + 2011-12-162019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_MSU.3 +
AVA_VLA.4 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Carte à puce ID-ONE Cosmo V7.0.1-n, avec correctif 077121, masquée sur composants NXP P5CD145 V0A (Large Dual), P5CC145 V0A (Large), P5CD128 V0A (Large Dual) et P5CC128 V0A (Large)   + + + Oberthur Technologies / NXP Semiconductors GmbH + + +   + + 2011-12-142019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Carte CC IDeal Citiz (sur composants SB23YR80B et SB23YR48B)   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2011-12-22 – Rapport de maintenance ANSSI-CC-2011/63-M01
    + Maintenance Report + +
  2. + +
    +
  3. + 2012-03-06 – Rapport de maintenance ANSSI-CC-2011/63-M02
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ MORPHO / ST Microelectronics + + +   + + 2011-11-252019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Carte CC IDeal Citiz (sur composants SB23YR80B et SB23YR48B).   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2011-12-22 – Rapport de maintenance ANSSI-CC-2011/61-M01
    + Maintenance Report + +
  2. + +
    +
  3. + 2012-03-06 – Rapport de maintenance ANSSI-CC-2011/61-M02
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ MORPHO / ST Microelectronics + + +   + + 2011-11-252019-09-01 + + + EAL4+ +
ADV_FSP.5 +
ADV_INT.2 +
ADV_TDS.4 +
ALC_CMS.5 +
ALC_DVS.2 +
ALC_TAT.2 +
ATE_DPT.3 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Carte CC IDeal Citiz (sur composants SB23YR80B et SB23YR48B)   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2011-12-22 – Rapport de maintenance ANSSI-CC-2011/62-M01
    + Maintenance Report + +
  2. + +
    +
  3. + 2012-03-06 – Rapport de maintenance ANSSI-CC-2011/62-M02
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ MORPHO / ST Microelectronics + + +   + + 2011-11-252019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + GeGKOS A6 Electronic Health Card 6.20   +
+ +
+ + + + + + +
+
+ Gemalto + + +   + + 2011-11-172019-09-01 + + + EAL4+ +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Microcontrôleur RISC AT90SC28880RCFV, Rev G   + + + Inside Secure + + +   + + 2011-10-262019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + NXP Secure Smart Card Controller P5CD080V0B, P5CC080V0B, P5CN080V0B, P5CC073V0B each with specific IC Dedicated Software   + + + NXP Semiconductors Germany GmbH Business Line Identification + + +   + + 2011-10-252014-09-09 + + + EAL5+ +
ALC_DVS.2 +
AVA_MSU.3 +
AVA_VLA.4 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + MTCOS Pro 2.2 EAC / P5CD081   + + + MaskTech International GmbH + + +   + + 2011-10-202019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + MTCOS Pro 2.2 EAC / P5CD081   + + + MaskTech International GmbH + + +   + + 2011-10-202019-09-01 + + + EAL4+ +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + ID OneTM ePass v2.2 en configuration BAC et AA sur composants STMicroelectronics ST23YR80/48B   + + + Oberthur Technologies / STMicroelectronics + + +   + + 2011-10-142019-09-01 + + + EAL4+ +
ADV_FSP.5 +
ADV_INT.2 +
ADV_TDS.4 +
ALC_CMS.5 +
ALC_DVS.2 +
ALC_TAT.2 +
ATE_DPT.3 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ID OneTM ePass v2.2 en configuration EAC et AA sur composants STMicroelectronics ST23YR80/48B   + + + Oberthur Technologies / STMicroelectronics + + +   + + 2011-10-142019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Infineon Technologies SmartCard IC (Security Controller) M7793 A12 with optional RSAv1.02.010, EC v1.02.010 and Toolbox v1.02.010 libraries and with specific IC-dedicated software   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2012-02-21 – Infineon Technologies SmartCard IC (Security Controller) M7793 A12 with optional RSA v1.02.010, EC v1.02.010 and Toolbox v1.02.010 libraries and with specific IC-dedicated software
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ Infineon Technologies AG + + +   + + 2011-09-282019-09-01 + + + EAL4+ +
ALC_DVS.2 +
ATE_DPT.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Renesas Cryptographic Library v5126 on Renesas RS47X security integrated circuit Version 01   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2011-12-08 – Renesas Cryptographic Library v5126 on Renesas RS47X security integrated circuit Version 02
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ Renesas Electronics Corporation + + +   + + 2011-09-222019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + SafeNet eToken (Smartcard or USB token) version 9.1.2 Athena IDProtect/OS755 Java Card on INSIDE Secure AT90SC25672RCTUSB Microcontroller embedding IDSign applet   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2013-07-16 – ANSSI-CC-2011/45-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Athena Smartcard Solutions Inc. / Inside Secure S.A. + + +   + + 2011-09-222019-09-01 + + + EAL4+ +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + SA23YR18A and SB23YR18A Secure Microcontrollers, including the cryptographic library Neslib v3.1, in SA or SB configuration   + + + STMicroelectronics + + +   + + 2011-09-082019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ID One ePass v2.2 en configuration BAC et AA sur composant NXP P5CD081V1A   + + + Oberthur Technologies + + +   + + 2011-08-262019-09-01 + + + EAL4+ +
ADV_FSP.5 +
ADV_TDS.4 +
ALC_CMS.5 +
ALC_DVS.2 +
ALC_TAT.2 +
ATE_DPT.3 +
ADV_INT.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ID-OneTM ePass v2.2 en configuration EAC sur composant NXP P5CD081V1A   + + + Oberthur Technologies + + +   + + 2011-08-262019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + TCOS Residence Permit Card Version 1.0 Release 1 / SLE78CLX1440P   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2013-11-27 – TCOS Residence Permit Card Version 1.0 Release 2 / SLE78CLX1440P
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ T-Systems International GMBH + + +   + + 2011-08-252019-09-01 + + + EAL4+ +
ALC_DVS.2 +
ATE_DPT.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + TCOS Residence Permit Card Version 1.0 Release 1-BAC / SLE78CLX1440P   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2013-11-27 – TCOS Residence Permit Card Version 1.0 Release 2-BAC/SLE78CLX1440P
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ T-Systems International GMBH + + +   + + 2011-08-252019-09-01 + + + EAL4+ +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Applet IAS Classic v3 sur carte à puce MultiApp V2 masquée sur composants de la famille SLE66   + + + Gemalto - Infineon Technologies AG + + +   + + 2011-08-182019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + AKiS v1.2.2 I   +
+ +
+ + + + + + +
+
+ TÜBİTAK BİLGEM UEKAE + + +   + + 2011-08-092017-03-27 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + TR – TSE (Turkish Standards Institution) Common Criteria Certification Scheme
TR
+
+ + AKiS v1.2.2 N   +
+ +
+ + + + + + +
+
+ TÜBİTAK BİLGEM UEKAE + + +   + + 2011-08-092017-03-27 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + TR – TSE (Turkish Standards Institution) Common Criteria Certification Scheme
TR
+
+ + TCOS Identity Card Version 1.0 Release 1 / P5CD128/145-FSV02   + + + T-Systems International GMBH + + +   + + 2011-07-292019-09-01 + + + EAL4+ +
ALC_DVS.2 +
ATE_DPT.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + TCOS Identity Card Version 1.0 Release 1 / SLE78CLX1440P-FSV02   + + + T-Systems International GMBH + + +   + + 2011-07-292019-09-01 + + + EAL4+ +
ALC_DVS.2 +
ATE_DPT.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + ID One ePass v2.2 en configuration BAC et AA sur composant ST23YR18A   + + + Oberthur Technologies / STMicroelectronics + + +   + + 2011-07-232019-09-01 + + + EAL4+ +
ADV_FSP.5 +
ADV_INT.2 +
ADV_TDS.4 +
ALC_CMS.5 +
ALC_DVS.2 +
ALC_TAT.2 +
ATE_DPT.3 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ID One ePass v2.2 en configuration BAP et AA sur composant ST23YR18A   +
+ +
+ + + + + + +
+
+ Oberthur Technologies / STMicroelectronics + + +   + + 2011-07-232019-09-01 + + + EAL4+ +
ADV_FSP.5 +
ADV_INT.2 +
ADV_TDS.4 +
ALC_CMS.5 +
ALC_DVS.2 +
ALC_TAT.2 +
ATE_DPT.3 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ID One ePass v2.2 en configuration EAC et AA sur composant ST23YR18A   + + + Oberthur Technologies / STMicroelectronics + + +   + + 2011-07-232019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ID One ePass v2.2 en configuration EAP et AA sur composant ST23YR18A   +
+ +
+ + + + + + +
+
+ Oberthur Technologies / STMicroelectronics + + +   + + 2011-07-232019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Morpho JC ePassport V3.0.1 (BAC)   + + + Morpho B.V. + + +   + + 2011-07-222019-09-01 + + + EAL4+ +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Morpho JC ePassport V3.0.1 (EAC)   + + + Morpho B.V. + + +   + + 2011-07-222019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Bundesdruckerei Document Application, Version 1.1.967   + + + Bundesdruckerei GmbH + + +   + + 2011-07-212019-09-01 + + + EAL3 + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Renesas RS47X security integrated circuit, Version 01   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2011-11-10 – Renesas RS47X smartcard integrated circuit, Version 02
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ Renesas Electronics Corporation + + +   + + 2011-07-212019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + STARCOS 3.4 Health HBA C1   + + + G+D Mobile Security GmbH + + +   + + 2011-07-212019-09-01 + + + EAL4+ +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + STARCOS 3.4 Health SMC-A C1   + + + G+D Mobile Security GmbH + + +   + + 2011-07-212019-09-01 + + + EAL4+ +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + STARCOS 3.4 Health SMC-B C1   + + + G+D Mobile Security GmbH + + +   + + 2011-07-212019-09-01 + + + EAL4+ +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Renesas Cryptographic Library v5126 running on the RS46X   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2011-12-08 – Renesas Cryptographic Library v5126 running on the RS46X smartcard integrated circuit V02
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ Renesas Electronics Corporation + + +   + + 2011-07-202019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + AKiS Pasaport v1.4n   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2011-09-22 – AKiS ICAO Pasaport v1.4n
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ TÜBİTAK BİLGEM UEKAE + + +   + + 2011-07-132017-03-27 + + + EAL4+ +
ALC_DVS.2 +
+ + TR – TSE (Turkish Standards Institution) Common Criteria Certification Scheme
TR
+
+ + NFC FlyBuy on S3FS91J   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2012-10-24 – Rapport de maintenance ANSSI-CC-2011/24-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Oberthur Technologies + + +   + + 2011-07-122019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + NXP MIFARE DESFire EV1 MF3ICD81   + + + NXP Semiconductors Germany GmbH Business Line Identification + + +   + + 2011-07-122019-09-01 + + + EAL4+ +
ALC_DVS.2 +
ADV_IMP.2 +
AVA_MSU.3 +
AVA_VLA.4 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + PEACOS Electronic Passport with EAC on P5CD080 V0B, version 1.2   + + + Gep S.p.A., NXP Semiconductors Germany GmbH, and Istituto Poligrafico e Zecca dello Stato + + +   + + 2011-07-012019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Infineon Technologies AG Smartcard ICs SLE88CNFX6600PM/P, SLE88CNFX6602PM/P, SLE88CNFX5400PM/P, SLE88CNF6600PM/P, SLE88CNF6602PM/P, SLE88CNF5400PM/P, SLE88CFX6600P, SLE88CFX6602P, SLE88CFX5400P, SLE88CF6600P, SLE88CF6602P, SLE88CF5400P all with PSL 3.22.11   + + + Infineon Technologies AG + + +   + + 2011-06-292019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Oberthur ID-One IAS-ECC v1.0.1 R1 : applet (v1121) loaded on Cosmo v7.0-a in large dual, large & standard dual configuration   +
+ +
+ + + + + + +
+
+ Oberthur Technologies / ATMEL Secure Microcontroller Solutions + + +   + + 2011-06-292019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Oberthur ID-One IAS-ECC v1.0.1 R1 : applet (v1121) loaded on Cosmo v7.0-n in Large & Standard configuration (dual or contact modes)   +
+ +
+ + + + + + +
+
+ Oberthur Card System / Philips (NXP) + + +   + + 2011-06-292019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + XSmart e-Passport V1.2   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2011-07-08 – XSmart e-Passport V1.2 Assurance Continuity
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ LG CNS + + +   + + 2011-06-232019-06-01 + + + EAL5+ +
ADV_IMP.2 +
+ + KR – IT Security Certification Center(ITSCC)
KR
+
+ + Morpho JC ePassport V2.0.0 (BAC)   + + + Morpho B.V. + + +   + + 2011-06-222019-09-01 + + + EAL4+ +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Morpho JC ePassport V2.0.0 (EAC)   + + + Morpho B.V. + + +   + + 2011-06-222019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + MultiApp ID CIE/CNS   + + + Gemalto / Samsung + + +   + + 2011-06-202019-09-01 + + + EAL4+ +
ADV_IMP.2 +
ALC_DVS.2 +
AVA_MSU.3 +
AVA_VLA.4 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + LinqUs USIM 128k platform on SC33F640E   + + + Gemalto / STMicroelectronics + + +   + + 2011-06-172019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Sagem Securite CC IDeal Citiz SmartCard (on SB23YR48B), version 1.4.5 ICAO EAC application   + + + Sagem Sécurité / STMicroelectronics + + +   + + 2011-06-092019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Samsung S3CT9PC / S3CT9PA / S3CT9P7 16-bit RISC Microcontroller for Smart Card, Revision 1 with optional Secure RSA/ECC Library Version 2.0 including specific IC Dedicated Software   + + + Samsung Electronics Co., Ltd. + + +   + + 2011-06-092019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + eTravel BAC on MultiApp v2   + + + Gemalto - Infineon Technologies AG + + +   + + 2011-06-032019-09-01 + + + EAL4+ +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + eTravel EAC on MultiApp v2   + + + Gemalto - Infineon Technologies AG + + +   + + 2011-06-032019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + NXP J3A040 & J2A040 Secure Smart Card Controller Revision 3   +
+ +
+ + + + + + +
+
+ NXP Semiconductors Germany GmbH Business Line Identification + + +   + + 2011-05-252019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + TOSMART-P080-AAJePassport   + + + TOSHIBA CORPORATION Social Infrastructure Systmems Company + + +   + + 2011-05-232019-09-01 + + + EAL4+ +
ALC_DVS.2 +
ASE_TSS.2 +
AVA_VAN.5 +
+ + NO – SERTIT
NO
+
+ + Samsung S3CT9KA / S3CT9K7 / S3CT9K3 16-bit RISC Microcontroller for Smart Card, Revision 0 with optional Secure RSA/ECC Library Version 1.0 including specific IC Dedicated Software   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2013-09-10 – Samsung S3CT9KA / S3CT9K7 / S3CT9K3 16-bit RISC Microcontroller for Smart Card, Revision 1 with optional Secure RSA/ECC Library Version 1.0 including specific IC Dedicated Software
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ Samsung Electronics Co., Ltd. + + +   + + 2011-05-192019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Infineon smart card IC (Security Controller) M7801 A12 with optional RSA2048/4096 v1.02.008, EC v1.02.008, SHA-2 v1.01 and Toolbox v1.02.008 libraries and with specific IC dedicated software   + + + Infineon Technologies AG + + +   + + 2011-05-172019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Infineon smart card IC (Security Controller) M7820 M11 with optional RSA2048/4096 v1.02.008, EC v1.02.008, SHA-2 v1.01 and Toolbox v1.02.008 libraries and with specific IC dedicated software   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2011-08-08 – Infineon smart card IC (Security Controller) M7820 M11 with optional RSA2048/4096 v1.02.008, EC v1.02.008, SHA-2 v1.01 and Toolbox v1.02.008 libraries and with specific IC dedicated software
    + Maintenance Report + +
  2. + +
    +
  3. + 2013-06-24 – Infineon smart card IC (Security Controller) M7820 M11 with optional RSA2048/4096 v1.02.008, EC v1.02.008, SHA-2 v1.01 and Toolbox v1.02.008 libraries and with specific IC dedicated software
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ Infineon Technologies AG + + +   + + 2011-05-112019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Infineon smart card IC (Security Controller) M7820 A11 with optional RSA2048/4096 v1.02.008, EC v1.02.008, SHA-2 v1.01 and Toolbox v1.02.008 libraries and with specific IC dedicated software   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2011-08-08 – Infineon smart card IC (Security Controller) M7820 A11 with optional RSA2048/4096 v1.02.008, ECv1.02.008, SHA-2 v1.01 and Toolbox v1.02.008 libraries and with specific IC dedicated software
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Infineon Technologies AG + + +   + + 2011-05-052019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Plateforme Java Card en configuration ouverte de la carte � puce MultiApp V2 masqu�e sur composants de la famille SLE66   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2012-07-03 – Rapport de maintenance ANSSI-CC-2011/10-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Gemalto - Infineon Technologies AG + + +   + + 2011-04-282019-09-01 + + + EAL5 +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + NXP J3A128 and J3A095 Secure Smart Card Controller Revision 3   +
+ +
+ + + + + + +
+
+ NXP Semiconductors Germany GmbH Business Line Identification + + +   + + 2011-04-152019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Gemalto ECC CPU card - CPU e-purse application on GCX5.1 (MPH098) platform on NXP P5CD081V1A Version 1.0   +
+ +
+ + + + + + +
+
+ Gemalto / NXP Semiconductors + + +   + + 2011-04-132019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Crypto Library V2.7 on P5CD145V0A, MSO / P5CC145V0A, MSO / P5CD128V0A, MSO / P5CC128V0A, MSO   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2012-08-10 – Crypto Library V2.7 on P5CD145V0v / P5CC145V0v / P5CD128V0v / P5CC128V0v
    + Maintenance Report + + Maintenance ST + +
  2. + +
    +
  3. + 2013-07-04 – Crypto Library V2.7/2.9 on SmartMX P5Cx128/P5Cx145 V0v / V0B(s)
    + Maintenance Report + + Maintenance ST + +
  4. + +
+
+ + +
+
+ NXP Semiconductors Germany GmbH Business Line Identification + + +   + + 2011-04-112014-09-09 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Renesas RS46X integrated circuit version 01   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2011-11-10 – Renesas RS46X smartcard integrated circuit version 02
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ Renesas Electronics Corporation + + +   + + 2011-04-072019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + NXP J3A081, J2A081 and J3A041 Secure Smart Card Controller Revision 3   +
+ +
+ + + + + + +
+
+ NXP Semiconductors Germany GmbH Business Line Identification + + +   + + 2011-04-062019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Microcontrôleurs sécurisés ST33F1ME, ST33F768E, SC33F768E, ST33F640E, SC33F640E, ST33F512E, SC33F512E et SC33F384E incluant optionnellement la bibliothèque cryptographique NesLib v3.0   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2012-05-15 – ANSSI-CC-2011/07-M01
    + Maintenance Report + +
  2. + +
    +
  3. + 2013-04-16 – Rapport de maintenance ANSSI-CC-2011/07-M02
    + Maintenance Report + +
  4. + +
    +
  5. + 2014-08-19 – Rapport de maintenance ANSSI-CC-2011/07-M03
    + Maintenance Report + +
  6. + +
+
+ + +
+
+ STMicroelectronics + + +   + + 2011-04-052019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + STMicroelectronics Secured microcontroller ST33F1ME, ST33F768E, SC33F768E, ST33F640E, SC33F640E, ST33F512E, SC33F512E et SC33F384E all with optional cryptographic library NESLIB 3.0   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2012-05-15 – ANSSI-CC-2011/07-M01
    + Maintenance Report + +
  2. + +
    +
  3. + 2013-04-16 – Rapport de maintenance ANSSI-CC-2011/07-M02
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ STMicroelectronics + + +   + + 2011-04-052019-09-01 + + + EAL5+ +
AVA_VAN.5 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + NXP J3A080 and J2A080 Secure Smart Card Controller Revision 3   +
+ +
+ + + + + + +
+
+ NXP Semiconductors Germany GmbH Business Line Identification + + +   + + 2011-03-312019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + STARCOS 3.3 ID EAC+AA C1   + + + G+D Mobile Security GmbH + + +   + + 2011-03-232019-09-01 + + + EAL4+ +
ALC_DVS.2 +
ADV_IMP.2 +
AVA_MSU.3 +
AVA_VLA.4 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + T6ND1 Integrated Circuit with Crypto Library v6.0   + + + Toshiba Corporation + + +   + + 2011-03-112021-03-11 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + NL – NSCIB operated by
NL
+
+ + SafeNet eToken - Athena IDProtect/OS755 Java Card on Atmel AT90SC25672RCT-USB Microcontroller embedding IDSign applet   + + + Athena Smartcard Solutions Inc. / Inside Secure S.A. + + +   + + 2011-03-042019-09-01 + + + EAL4+ +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + MTCOS Pro 2.1 BAC / ST23YR80   + + + MaskTech International GmbH + + +   + + 2011-02-162019-09-01 + + + EAL4+ +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + MTCOS Pro 2.1 EAC / ST23YR80   + + + MaskTech International GmbH + + +   + + 2011-02-152019-09-01 + + + EAL4+ +
AVA_VAN.5 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Oberthur ID-ONE Cosmo V7.0.1-a masked on AT90SC 28872RCU Rev G & AT90SC 28848RCU Rev G   + + + Oberthur Technologies / Atmel Secure Products Division + + +   + + 2011-02-032019-09-01 + + + EAL5+ +
ADV_IMP.2 +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Crypto Library V2.6 on P5CD040V0B / P5CC040V0B / P5CD020V0B / P5CC021V0B / P5CD012V0B   + + + NXP Semiconductors + + +   + + 2011-01-072019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + STARCOS 3.5 ID GCC C1   + + + G+D Mobile Security GmbH + + +   + + 2010-12-172019-09-01 + + + EAL4+ +
ALC_DVS.2 +
ATE_DPT.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Athena Smartcard ASEPCOS TS/CNS v1.82, build 0003 on ST23YR48/80 with NesLib v3.0   + + + Athena Smartcard Solutions Inc / STMicroelectronics + + +   + + 2010-12-082019-09-01 + + + EAL4+ +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Crypto Library V2.6 on P5CD080V0B / P5CN080V0B / P5CC080V0B / P5CC073V0B   + + + NXP Semiconductors Germany GmbH Business Line Identification + + +   + + 2010-12-032019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Crypto Library V2.7 on P5CD081V1A / P5CC081V1A / P5CN081V1A / P5CD041V1A / P5CD021V1A / P5CD016V1A   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2013-07-04 – Crypto Library V2.7/V2.9 on SmartMX P5CD016/021/041/051 and P5Cx081 V1A / V1A(s#x29;
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ NXP Semiconductors Germany GmbH Business Line Identification + + +   + + 2010-11-192014-09-09 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + TCOS Identity Card Version 1.0 Release 1/ SLE78CLX1440P   + + + T-Systems International GMBH + + +   + + 2010-11-112019-09-01 + + + EAL4+ +
ALC_DVS.2 +
ATE_DPT.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Sagem Identification EAC ePassport Version 1.2.1   + + + Sagem Identification bv + + +   + + 2010-11-092019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Bundesdruckerei Document Application, Version 1.0.911   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2010-11-05 – Bundesdruckerei Document Application, Version 1.0.911
    + Maintenance Report + +
  2. + +
    +
  3. + 2010-12-20 – Bundesdruckerei Document Application, Version 1.0.911
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ Bundesdruckerei GmbH + + +   + + 2010-11-052019-09-01 + + + EAL3 + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Sagem Identification EAC ePassport Version 1.2.0   + + + Sagem Identification bv + + +   + + 2010-11-042019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + NXP Secure Smart Card Controller P5CD080V0B, P5CN080V0B, P5CC080V0B and P5CC073V0B each with specific IC Dedicated Software   + + + NXP Semiconductors Germany GmbH Business Line Identification + + +   + + 2010-11-032019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_MSU.3 +
AVA_VLA.4 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + KOMSCO JK11   + + + KOMSCO + + +   + + 2010-10-122019-06-01 + + + EAL4+ +
ATE_DPT.2 +
AVA_VAN.4 +
+ + KR – IT Security Certification Center(ITSCC)
KR
+
+ + Samsung SDS SPass V2.0   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2010-12-30 – SAMSUNG SDS SPass V2.0
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ Samsung SDS + + +   + + 2010-10-122019-06-01 + + + EAL5+ +
ADV_IMP.2 +
ALC_DVS.2 +
AVA_VAN.5 +
+ + KR – IT Security Certification Center(ITSCC)
KR
+
+ + Infineon Smart Card IC (Security Controller) SLE66CLX1600PEM / M1590 / A12, SLE66CLX1600PE / M1596 / A12, SLE66CLX1600PES / M1597 / A12, SLE66CX1600PE / M1598 / A12, SLE66CLX1440PEM / M2090 / A12, SLE66CLX1440PE / M2091 / A12, SLE66CLX1440PES / M2092 / A12, SLE66CX1440PE / M2093 / A12, SLE66CLX1280PEM / M2094 / A12, SLE66CLX1280PE / M2095 / A12, SLE66CLX1280PES / M2096 / A12, SLE66CX1280PE / M2097 / A12 all optional with RSA V1.6, EC V1.1 and SHA-2 V1.0 and all with specific IC dedicated software   +
+ +
+ + + + + + +
+
+ Infineon Technologies AG + + +   + + 2010-10-012019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + KONA26CC v1.1   + + + KEBTechnology + + +   + + 2010-10-012019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + ES – Organismo de Certificación de la Seguridad de las Tecnologías de la Información
ES
+
+ + Oberthur ID-One IAS-ECC v1.0.1 : applet (v1121) loaded on Cosmo v7.0.1-n in Standard dual, Standard & Basic dual configuration   + + + Oberthur Card System / Philips (NXP) + + +   + + 2010-10-012019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + CC IDeal Citiz SmartCard (on SB23YR48B), version 1.4.5 IAS ECC application with PIN or MOC authentication   + + + Sagem Sécurité / STMicroelectronics + + +   + + 2010-09-172019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + CC IDeal Citiz SmartCard (on SB23YR80B), version 1.4.5 IAS ECC application with PIN or MOC authentication   + + + Sagem Sécurité / STMicroelectronics + + +   + + 2010-09-172019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Infineon smart card IC (Security Controller) M7801 A12 with optional RSA2048/4096 v1.1.18, EC v1.1.18 and SHA-2 v1.1 libraries and with specific IC dedicated software   +
+ +
+ + + + + + +
+
+ Infineon Technologies AG + + +   + + 2010-09-142019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + STMicroelectronics SA23YT66/34A and SB23YR66/34A Secure Microcontrollers, including the cryptographic library Neslib v2.0, in SA or SB configuration   + + + STMicroelectronics + + +   + + 2010-08-232019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + STMicroelectronics ST23YT66/34A Secure Microcontrollers   + + + STMicroelectronics + + +   + + 2010-08-232019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + MTCOS Pro 2.1 EAC / P5CD080 / V2   +
+ +
+ + + + + + +
+
+ MaskTech International GmbH + + +   + + 2010-08-172019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_IMP.2 +
ADV_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Samsung S3CT9KW 16-bit RISC Microcontroller for Smart Card, Revision 0 with optional secure RSA/ECC V1.0 Library including specific IC Dedicated Software   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2010-11-03 – Samsung S3CT9KC/ S3CT9K9 16-bit RISC Microcontroller for Smart Card, Revision 0 with optional secure RSA/ECC V1.0 Library including specific IC Dedicated Software
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ Samsung Electronics Co., Ltd. + + +   + + 2010-08-172019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Cherry SmartTerminal ST-2xxx Firmware Version 6.01   +
+ +
+ + + + + + +
+
+ ZF Electronics GmbH + + +   + + 2010-08-062019-09-01 + + + EAL3+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_IMP.1 +
ADO_DEL.2 +
ADV_LLD.1 +
ALC_TAT.1 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Crypto Library V2.2 on P5CC037V0A   +
+ +
+ + + + + + +
+
+ NXP Semiconductors + + +   + + 2010-08-052019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Carte à puce Multiapp ID IAS ECC wafer process : applet de signature v4.2.7.A chargée sur la plate-forme Java Card Multiapp v1.0 avec correctif v1.2 masquée sur microcontrôleur NXP P5CD144 VOB   + + + Gemalto / NXP Semiconductors + + +   + + 2010-08-022019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Infineon Technologies Smart Card IC (Security Controller) M7820 A11 with optional RSA2048/4096 v1.1.18, EC v1.1.18 and SHA-2 v1.1 libraries and with specific IC dedicated software   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2010-08-30 – Infineon Technologies Smart Card IC (Security Controller) M7820 A11 with optional RSA2048/4096 v1.1.18, EC v1.1.18 and SHA-2v1.1 libraries and with specific IC dedicated software
    + Maintenance Report + + Maintenance ST + +
  2. + +
    +
  3. + 2011-08-08 – Infineon Technologies Smart Card IC (Security Controller) M7820 A11 with optional RSA2048/4096 v1.1.18, EC v1.1.18 and SHA-2v1.1 libraries and with specific IC dedicated software
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ Infineon Technologies AG + + +   + + 2010-07-282019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + NXP Secure PKI Smart Card Controllers P5CD145V0A, MSO; P5CC145V0A, MSO; P5CD128V0A, MSO and P5CC128V0A, MSO; each including IC Dedicated Software   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2011-04-11 – NXP Secure Smart Card Controllers P5Cx128V0A / P5Cx145V0A, MSO
    + Maintenance Report + + Maintenance ST + +
  2. + +
    +
  3. + 2012-02-27 – NXP Secure PKI Smart Card Controllers P5CD145V0v, P5CC145V0v; P5CD128V0v, P5CC0128V0v and P5CN145V0v, each including IC Dedicated Software
    + Maintenance Report + + Maintenance ST + +
  4. + +
+
+ + +
+
+ NXP Semiconductors + + +   + + 2010-07-232019-09-01 + + + EAL5+ +
ALC_DVS.2 +
ASE_TSS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + STMicroelectronics SA33F1MD & SB33F1MD Secure Microcontrollers, including cryptographic library NesLib v3.0, in configuration SA or SB   + + + STMicroelectronics + + +   + + 2010-07-232019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + STMicroelectronics ST33F1MD Secure Microcontrollers   + + + STMicroelectronics + + +   + + 2010-07-232019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + SK e-Pass V1.0   + + + SK C&C + + +   + + 2010-07-222019-06-01 + + + EAL4+ +
ADV_IMP.2 +
ATE_DPT.2 +
AVA_VAN.4 +
+ + KR – IT Security Certification Center(ITSCC)
KR
+
+ + XSmart e-Passport V1.1   + + + LG CNS + + +   + + 2010-07-222019-06-01 + + + EAL5+ +
ADV_IMP.2 +
+ + KR – IT Security Certification Center(ITSCC)
KR
+
+ + Crypto Library V2.2 on P5CD040V0B / P5CC040V0B / P5CD020V0B / P5CC021V0B / P5CD012V0B   + + + NXP Semiconductors + + +   + + 2010-07-162019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_MSU.3 +
AVA_VLA.4 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Renesas RS45C integrated circuit version 01   + + + Renesas Electronics Corporation + + +   + + 2010-07-142019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Oberthur ID-ONE Cosmo V7.0.1-n Smartcard masked on NXP P5CD081 V1A (Standard Dual), P5CC081 V1A (Standard) and P5CD041 V1A (Basic Dual) components   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2011-01-06 – Rapport de maintenance ANSSI-CC-2010/40-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Oberthur Technologies / NXP Semiconductors GmbH + + +   + + 2010-07-062019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + NXP Secure Smart Card Controller MF3F60x1 with IC Dedicated Support Software   + + + NXP Semiconductors + + +   + + 2010-06-302019-09-01 + + + EAL4+ +
ALC_DVS.2 +
ASE_TSS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Carte ID-One IAS-ECC v1.0.1 R1 : applet (version 1121) chargée sur Cosmo v7.0-a (composant Atmel) en configuration Large Dual, Large et Standard Dual   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2010-11-15 – Rapport de maintenance ANSSI-CC-2010/36-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Oberthur Technologies / ATMEL Secure Microcontroller Solutions + + +   + + 2010-06-292019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Carte ID-One IAS-ECC v1.0.1 R1 : applet (version 1121) chargée sur Cosmo v7.0-n (composant NXP) en configuration Large et Standard (modes dual ou contact)   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2010-11-15 – Rapport de maintenance ANSSI-CC-2010/39- M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Oberthur Technologies / NXP Semiconductors GmbH + + +   + + 2010-06-292019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Oberthur ID-One IAS-ECC v1.0.1 R1 : applet (v1121) loaded on Cosmo v7.0-a in standard configuration   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2010-11-15 – Rapport de maintenance ANSSI-CC-2010/37-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Oberthur Technologies / ATMEL Secure Microcontroller Solutions + + +   + + 2010-06-292019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Oberthur ID-One IAS-ECC v1.0.1 R1 : applet (v1121) loaded on Cosmo v7.0-a in USB configuration   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2010-11-15 – Rapport de maintenance ANSSI-CC-2010/38-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Oberthur Technologies / ATMEL Secure Microcontroller Solutions + + +   + + 2010-06-292019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Crypto Library V2.2 on P5CD080V0B / P5CN080V0B / P5CC080V0B / P5CC073V0B   +
+ +
+ + + + + + +
+
+ NXP Semiconductors + + +   + + 2010-06-112019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Infineon Smart Card IC (Security Controller) SLE66CX162PE / m1531-a25 and SLE66CX80PE / m1533-a25 all with optional libraries RSA V1.6, EC, V1.1, SHA-2 V1.0 and both with specific IC dedicated software   +
+ +
+ + + + + + +
+
+ Infineon Technologies AG + + +   + + 2010-06-112019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + MICARDO V3.5 R1.0 eHC V1.0 (QES)   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2011-05-30 – MICARDO V3.5 R1.0 eHC V1.2 QES V1.0
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ Sagem Orga GmbH + + +   + + 2010-06-112019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_IMP.2 +
ATE_DPT.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + NXP Smart Card Controller P5CD080V0C, P5CN080V0C, P5CC080V0C, P5CC073V0C each with IC Dedicated Software   + + + NXP Semiconductors + + +   + + 2010-06-112019-09-01 + + + EAL4+ +
ADV_IMP.2 +
ATE_DPT.2 +
AVA_MSU.3 +
AVA_VLA.4 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + NXP Smart Card Controller P5CD080V0C, P5CN080V0C, P5CC080V0C, P5CC073V0C each with IC Dedicated Software   + + + NXP Semiconductors + + +   + + 2010-06-112019-09-01 + + + EAL5+ +
ADV_DVS.2 +
AVA_MSU.3 +
AVA_VLA.4 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + CC IDeal Citiz SmartCard (on SB23YR48B)   + + + Sagem Sécurité / STMicroelectronics + + +   + + 2010-06-092019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Sagem Securite CC IDeal Citiz SmartCard (on SB23YR48B), version 1.4.5 ICAO BAC application   +
+ +
+ + + + + + +
+
+ Sagem Sécurité / STMicroelectronics + + +   + + 2010-06-092019-09-01 + + + EAL4+ +
ADV_FSP.5 +
ADV_INT.2 +
ADV_TDS.4 +
ALC_CMS.5 +
ALC_DVS.2 +
ALC_TAT.2 +
ATE_DPT.3 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Sagem Securite CC IDeal Citiz SmartCard (on SB23YR80B), version 1.4   +
+ +
+ + + + + + +
+
+ Sagem Sécurité / STMicroelectronics + + +   + + 2010-06-092019-09-01 + + + EAL4+ +
ADV_FSP.5 +
ADV_INT.2 +
ADV_TDS.4 +
ALC_CMS.5 +
ALC_DVS.2 +
ALC_TAT.2 +
ATE_DPT.3 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Sagem Securite CC IDeal Citiz SmartCard (on SB23YR80B), version 1.4   +
+ +
+ + + + + + +
+
+ Sagem Sécurité / STMicroelectronics + + +   + + 2010-06-092019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Sagem Securite CC IDeal Pass Passport (on SB23YR48B), version 1.5.0 ICAO BAC application   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2011-12-22 – Rapport de maintenance ANSSI-CC-2010/31-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Sagem Sécurité / STMicroelectronics + + +   + + 2010-06-022019-09-01 + + + EAL4+ +
ADV_FSP.5 +
ADV_INT.2 +
ADV_TDS.4 +
ALC_CMS.5 +
ALC_DVS.2 +
ALC_TAT.2 +
ATE_DPT.3 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Sagem Securite CC IDeal Pass Passport (on SB23YR48B), version 1.5.0 ICAO EAC application   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2011-12-22 – Sagem Securite CC IDeal Pass Passport (on SB23YR48B), version 1.5.0 ICAO EAC application
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Sagem Sécurité / STMicroelectronics + + +   + + 2010-06-022019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Sagem Securite CC IDeal Pass Passport (on SB23YR80B), version 1.5.0 ICAO BAC application   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2011-12-22 – Rapport de maintenance ANSSI-CC-2010/29-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Sagem Sécurité / STMicroelectronics + + +   + + 2010-06-022019-09-01 + + + EAL4+ +
ADV_FSP.5 +
ADV_INT.2 +
ADV_TDS.4 +
ALC_CMS.5 +
ALC_DVS.2 +
ALC_TAT.2 +
ATE_DPT.3 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Sagem Securite CC IDeal Pass Passport (on SB23YR80B), version 1.5.0 ICAO EAC application   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2011-12-22 – Rapport de maintenance ANSSI-CC-2010/28-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Sagem Sécurité / STMicroelectronics + + +   + + 2010-06-022019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Oberthur Technologies Applet ID One Classic v1.01.1 en configuration CNS, Classic ou CIE chargée sur Cosmo v7.0-n Large, Standard et Basic (modes dual ou contact) sur composants NXP   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2011-07-18 – Rapport de maintenance ANSSI-CC-2010/27-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Oberthur Technologies / NXP Semiconductors GmbH + + +   + + 2010-05-202019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Oberthur Technologies Applet ID One Classic v1.01.1 en configuration CNS, Classic ou CIE masquée sur Cosmo v7.0-a Large Dual, Large et Standard Dual sur composants Atmel   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2011-07-18 – Rapport de maintenance ANSSI-CC-2010/25-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Oberthur Technologies / ATMEL Secure Microcontroller Solutions + + +   + + 2010-05-202019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Oberthur Technologies Applet ID One Classic v1.01.1 en configuration CNS, Classic ou CIE masquée sur Cosmo v7.0-a Standard et Basic sur composants Atmel   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2011-07-18 – Rapport de maintenance ANSSI-CC-2010/26-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Oberthur Technologies / ATMEL Secure Microcontroller Solutions + + +   + + 2010-05-202019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + SA23YT66/34A and SB23YR66/34A Secure Microcontrollers   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2011-03-21 – Rapport de Maintenance ANSSI-CC-2010/24-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ STMicroelectronics + + +   + + 2010-05-112019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ST23YT66/34A Secure Microcontrollers   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2011-03-21 – Rapport de Maintenance ANSSI-CC-2010/23-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ STMicroelectronics + + +   + + 2010-05-112019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ATMEL AT90SC12872RCFT / AT90SC12836RCFT rev. M Secure Microcontrollers   +
+ +
+ + + + + + +
+
+ Atmel Corporation + + +   + + 2010-04-292019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_MSU.3 +
AVA_VLA.4 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ATMEL Toolbox 00.03.01.07 on the AT90SC family of devices   +
+ +
+ + + + + + +
+
+ Atmel Corporation + + +   + + 2010-04-292019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_MSU.3 +
AVA_VLA.4 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + STMicroelectronics SA23YL18B and SB23YL18B Secure Microcontrollers, including the cryptographic library Neslib v2.0 or v3.0, in SA or SB configuration   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2011-03-21 – Rapport de maintenance ANSSI-CC-2009/63-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ STMicroelectronics + + +   + + 2010-04-292019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + STMicroelectronics SA23YR18A and SB23YR18A Secure Microcontrollers, including the cryptographic library Neslib v2.0, in SA or SB configuration   + + + STMicroelectronics + + +   + + 2010-04-192019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + STMicroelectronics SA23YR18A Secure Microcontroller   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2011-04-05 – Rapport de maintenance ANSSI-CC-2010/03-M01
    + Maintenance Report + +
  2. + +
    +
  3. + 2012-08-29 – Rapport de maintenance ANSSI-CC-2010/03-M02
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ STMicroelectronics + + +   + + 2010-04-192019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + STMicroelectronics ST23YR18A Secure Microcontroller   + + + STMicroelectronics + + +   + + 2010-04-192019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + STMicroelectronics ST23YR18A Secure Microcontroller   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2011-04-05 – Rapport de maintenance ANSSI-CC-2003/03-M01
    + Maintenance Report + +
  2. + +
    +
  3. + 2012-08-29 – Rapport de maintenance ANSSI-CC-2010/03-M02
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ STMicroelectronics + + +   + + 2010-04-192019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Sagem Sécurité Carte CC IDeal Citiz (sur composant SB23YR48B), version 1.4.5 Application IAS   +
+ +
+ + + + + + +
+
+ Sagem Sécurité / STMicroelectronics + + +   + + 2010-04-092019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Sagem Sécurité Carte CC IDeal Citiz (sur composant SB23YR48B), version 1.4.5 Application ICAO BAC   + + + Sagem Sécurité / STMicroelectronics + + +   + + 2010-04-092019-09-01 + + + EAL4+ +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Sagem Sécurité Carte CC IDeal Citiz (sur composant SB23YR48B), version 1.4.5 Application ICAO EAC   + + + Sagem Sécurité / STMicroelectronics + + +   + + 2010-04-092019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Sagem Sécurité Carte CC IDeal Citiz (sur composant SB23YR80B), version 1.4.5 Application IAS   + + + Sagem Sécurité / STMicroelectronics + + +   + + 2010-04-092019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Sagem Sécurité Carte CC IDeal Citiz (sur composant SB23YR80B), version 1.4.5 Application ICAO BAC   + + + Sagem Sécurité / STMicroelectronics + + +   + + 2010-04-092019-09-01 + + + EAL4+ +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Sagem Sécurité Carte CC IDeal Citiz (sur composant SB23YR80B), version 1.4.5 Application ICAO EAC   + + + Sagem Sécurité / STMicroelectronics + + +   + + 2010-04-092019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + STARCOS 3.3 Passport Edition Version 2.1a   +
+ +
+ + + + + + +
+
+ G+D Mobile Security GmbH + + +   + + 2010-03-312019-09-01 + + + EAL4+ +
ADV_IMP.2 +
ALC_DVS.2 +
AVA_MSU.3 +
AVA_VLA.4 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Gemalto Produit eTravel EAC v1.0 (version 01.03) sur composant SLE66CLX800PE   +
+ +
+ + + + + + +
+
+ Gemalto - Infineon Technologies AG + + +   + + 2010-03-242019-09-01 + + + EAL4+ +
ADV_IMP.2 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Renesas HD65256D1 Version 02   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2010-03-30 – Renesas HD65256D1 Version 03
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ Renesas Technology Corporation + + +   + + 2010-03-242019-09-01 + + + EAL4+ +
ADV_IMP.2 +
ALC_DVS.2 +
AVA_MSU.3 +
AVA_VLA.4 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + KCOS e-Passport V1.1 S3CC9 LC/GC/GW   + + + KOMSCO + + +   + + 2010-03-192019-06-01 + + + EAL4+ +
ADV_IMP.2 +
ATE_DPT.2 +
AVA_VLA.4 +
+ + KR – IT Security Certification Center(ITSCC)
KR
+
+ + Samsung SDS SPass V1.1   + + + Samsung SDS + + +   + + 2010-03-192019-06-01 + + + EAL4+ +
ADV_IMP.2 +
ALC_DVS.2 +
ATE_DPT.2 +
AVA_VLA.4 +
+ + KR – IT Security Certification Center(ITSCC)
KR
+
+ + SAMSUNG Microcontroller RISC 32-bits S3FS91J / S3FS91H / S3FS91V / S3FS93I with SWP, Rev. 7   + + + Samsung Electronics Co., Ltd. + + +   + + 2010-03-182019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + MICARDO V3.5 R1.0 eHC V1.0 (QES komplettierbar)   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2011-05-30 – MICARDO V3.5 R1.0 eHC V1.2 QESC V1.0
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ Sagem Orga GmbH + + +   + + 2010-03-082019-09-01 + + + EAL4+ + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + MICARDO V3.5 R1.0 eHC V1.1   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2011-05-30 – MICARDO V3.5 R1.0 eHC V1.2
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ Sagem Orga GmbH + + +   + + 2010-03-082019-09-01 + + + EAL4+ + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Microcontrôleurs sécurisés SA23ZL48/34/18A et SB23ZL48/34/18A, incluant la bibliothèque cryptographique NesLib v2.0 ou v3.0, en configuration SA ou SB   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2011-04-05 – Rapport de maintenance ANSSI-CC-2010/08-M01
    + Maintenance Report + +
  2. + +
    +
  3. + 2013-02-26 – Rapport de maintenance ANSSI-CC-2010/08-M02
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ STMicroelectronics + + +   + + 2010-03-082019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ST23ZL48/34/18A Secure Microcontrollers   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2011-04-05 – Rapport de maintenance ANSSI-CC-2010/07-M01
    + Maintenance Report + +
  2. + +
    +
  3. + 2012-10-17 – Rapport de maintenance ANSSI-CC-2010/07-M02
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ STMicroelectronics + + +   + + 2010-03-082019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + STMicroelectronics SA23YR48/80A and SB23YR48/80A Secure Microcontrollers, including the cryptographic library Neslib v3.0, in SA or SB configuration   + + + STMicroelectronics + + +   + + 2010-03-082019-09-01 + + + EAL6+ +
ALC_FLR.1 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Smart card reader SPR332 firmware version 6.01   +
+ +
+ + + + + + +
+
+ SCM Microsystems GmbH + + +   + + 2010-02-192019-09-01 + + + EAL3+ + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Gemalto Carte à puce Multiapp ID IAS ECC : applet de signature v4.2.7.A chargée sur la plate-forme Java Card Multiapp v1.0 avec correctif v1.2 masquée sur microcontrôleur NXP P5CD144 VOB   +
+ +
+ + + + + + +
+
+ Gemalto / NXP Semiconductors + + +   + + 2010-02-172019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + NXP MIFARE Plus MF1SPLUSx0y1   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2010-08-30 – NXP MIFARE Plus MF1SPLUSx0y1
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ NXP Semiconductors + + +   + + 2010-02-172019-09-01 + + + EAL4+ + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + IC chip for the reader / writer RC-S940 (CXD9768GG), version 4   +
+ +
+ + + + + + +
+
+ Sony Corporation + + +   + + 2010-02-162019-09-01 + + + EAL4 + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + STMicroelectronics SA23YR48/80B and SB23YR48/80B Secure Microcontrollers, including the cryptographic library Neslib v2.0 or v3.0, in SA or SB configuration   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2010-03-19 – Maintenance Report ANSSI-2010/02-M01
    + Maintenance Report + +
  2. + +
    +
  3. + 2010-07-08 – Rapport de maintenance ANSSI-CC-2010/02-M02
    + Maintenance Report + +
  4. + +
    +
  5. + 2013-02-26 – Rapport de maintenance ANSSI-CC-2010/02-M03
    + Maintenance Report + +
  6. + +
    +
  7. + 2016-12-13 – ANSSI-CC-2010/02-M04
    + Maintenance Report + +
  8. + +
+
+ + +
+
+ STMicroelectronics + + +   + + 2010-02-102019-09-01 + + + EAL6+ +
ALC_FLR.1 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + STMicroelectronics ST23YR48B and ST23YR80B Secure Microcontrollers   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2010-07-08 – Rapport de maintenance ANSSI-CC-2010/01-M01
    + Maintenance Report + +
  2. + +
    +
  3. + 2012-08-29 – Rapport de maintenance ANSSI-CC-2010/01-M02
    + Maintenance Report + +
  4. + +
    +
  5. + 2013-02-26 – Rapport de maintenance ANSSI-CC-2010/01-M03
    + Maintenance Report + +
  6. + +
    +
  7. + 2016-12-13 – ANSSI-CC-2010/01-M04
    + Maintenance Report + +
  8. + +
+
+ + +
+
+ STMicroelectronics + + +   + + 2010-02-012019-09-01 + + + EAL6+ +
ALC_FLR.1 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Samsung S3CC9LC 16-bit RISC Microcontroller for Smart Card, Revision 9 with optional secure RSA 3.7S and ECC 2.4S Libraries including specific IC Dedicated Software   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2010-03-16 – Samsung S3CC9LC 16-bit RISC Microcontroller for Smart Card, Revision 11 with optional secure RSA 3.7S and ECC 2.4S Libraries including specific IC Dedicated Software
    + Maintenance Report + + Maintenance ST + +
  2. + +
    +
  3. + 2010-06-30 – Samsung S3CC9L5 16-bit RISC Microcontroller for Smart Card, Revision 2 with optional secure RSA3.7S and ECC 2.4S Libraries including specific IC Dedicated Software
    + Maintenance Report + + Maintenance ST + +
  4. + +
    +
  5. + 2010-06-30 – Samsung S3CC9LA 16-bit RISC Microcontroller for Smart Card, Revision 2 with optional secure RSA3.7S and ECC 2.4S Libraries including specific IC Dedicated Software
    + Maintenance Report + + Maintenance ST + +
  6. + +
+
+ + +
+
+ Samsung Electronics Co., Ltd. + + +   + + 2010-01-292019-09-01 + + + EAL5+ + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Trusted Logic. Carte à puce JCLXxxjTOPyyIDv2 : applet de passeport électronique chargée sur la plate-forme JCLX80jTOP20IDv2 masquée sur le composant SLE66CLX800PE   + + + Trusted Logic / Infineon + + +   + + 2010-01-292019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Athena Smartcard Solutions Inc. Carte ASEPCOS-TS/CNS DI, Version 1.80, Build 006. Système d'exploitation ASEPCOS avec application de signature électronique TS/CNS embarqué sur le microcontrôleur AT90SC12872RCFT   + + + Athena Smartcard Solutions Inc. / Inside Secure S.A. + + +   + + 2010-01-152019-09-01 + + + EAL4+ +
AVA_MSU.3 +
AVA_VLA.4 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Athena Smartcard Solutions, Inc. Carte ASEPCOS-TS/CNS DI, Version 1.81, Build 003   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2010-03-08 – Rapport de maintenance ANSSI-CC-2010/05-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Athena Smartcard Solutions Inc. / Inside Secure S.A. + + +   + + 2010-01-152019-09-01 + + + EAL4+ +
AVA_MSU.3 +
AVA_VLA.4 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + SmartCase KB SCR eSIG (S26381-K529-Vxxx) Hardware-Version HOS:01, Firmware-Version 1.20   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2011-02-04 – SmartCase KB SCR eSIG, S26381-K529-Vxxx, HOS:01, Firmware-Version 1.21
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Fujitsu Technology Solutions GmbH + + +   + + 2010-01-112019-09-01 + + + EAL3+ + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Electronic Health Card Version 2.20   +
+ +
+ + + + + + +
+
+ Gemalto + + +   + + 2009-12-282019-09-01 + + + EAL4+ + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + CC IDeal Pass Passport (on SB23YR80A), version 1.3.3   + + + Sagem Sécurité / STMicroelectronics + + +   + + 2009-12-212019-09-01 + + + EAL4+ + + + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + CC IDeal Pass Passport (on SB23YR80A), version 1.3.3   + + + Sagem Sécurité / STMicroelectronics + + +   + + 2009-12-212019-09-01 + + + EAL4+ + + + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + SAMSUNG S3FS9CI Microcontroller RISC 32-bit Rev.8 for S-SIM applications   + + + Samsung Electronics Co., Ltd. + + +   + + 2009-12-182019-09-01 + + + EAL4+ +
ADV_IMP.2 +
ALC_DVS.2 +
AVA_MSU.3 +
AVA_VLA.4 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Sm@rtCafe Expert Version 5.0   +
+ +
+ + + + + + +
+
+ G+D Mobile Security GmbH + + +   + + 2009-12-172019-09-01 + + + EAL4+ + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + STMicroelectronics SA23YR48/80A and SB23YR48/80A Secure Microcontrollers, including the cryptographic library Neslib v2.0 in SA or SB configuration   + + + STMicroelectronics + + +   + + 2009-12-072019-09-01 + + + EAL6+ +
ALC_FLR.1 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + STMicroelectronics ST23YR48A and ST23YR80A Secure Microcontroller   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2010-07-08 – Rapport de maintenance ANSSI-CC-2010/01-M01
    + Maintenance Report + +
  2. + +
    +
  3. + 2013-02-26 – Rapport de maintenance ANSSI-CC-2010/01- M03
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ STMicroelectronics + + +   + + 2009-12-072019-09-01 + + + EAL6+ +
ALC_FLR.1 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Infineon Smart Card IC (Security Controller) SLE66CX680PE / M1534-a14, SLE66CX360PE / M1536-a14, SLE66CX182PE / M1564-a14, SLE66CX480PE / M1565-a14 and SLE66CX482PE / M1577-a14 all with optional libraries RSA V1.6, EC V1.1, SHA-2 V1.0 and with specific IC dedicated software   +
+ +
+ + + + + + +
+
+ Infineon Technologies AG + + +   + + 2009-12-032019-09-01 + + + EAL5+ + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + STMicroelectronics SB23YR48A Secure Microcontrollers, including the cryptographic library Neslib v2.0 in SB configuration   + + + STMicroelectronics + + +   + + 2009-12-012019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + STMicroelectronics SB23YR80A Secure Microcontroller, including the cryptographic library Neslib v2.0 SB   + + + STMicroelectronics + + +   + + 2009-12-012019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + STMicroelectronics ST23YR48A Secure Microcontroller   + + + STMicroelectronics + + +   + + 2009-12-012019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + MICARDO V3.5 R1.0 eHC V1.0   +
+ +
+ + + + + + +
+
+ Sagem Orga GmbH + + +   + + 2009-11-272019-09-01 + + + EAL4+ + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + S3CC91A 16-bit RISC Microcontroller for Smart Card, Revision 7 with optional Secure RSA Crypto Library and specific IC Dedicated Software   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2010-01-07 – Samsung S3CC917 16-bit Secure RISC Microcontroller for Smart Card, Revision 1 with optional Secure RSA Crypto Library and specific IC Dedicated Software
    + Maintenance Report + + Maintenance ST + +
  2. + +
    +
  3. + 2010-01-07 – Samsung S3CC918 16-bit Secure RISC Microcontroller for Smart Card, Revision 1 with optional Secure RSA Crypto Library and specific IC Dedicated Software
    + Maintenance Report + + Maintenance ST + +
  4. + +
+
+ + +
+
+ Samsung Electronics Co., Ltd. + + +   + + 2009-11-202019-09-01 + + + EAL5+ + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + ID-One Cosmo V7.0-a SmartCard in configuration Standard and Basic   +
+ +
+ + + + + + +
+
+ Oberthur Card System / Philips (NXP) + + +   + + 2009-11-192019-09-01 + + + EAL5+ + + + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ID-One Cosmo V7.0-a SmartCard in USB configuration   +
+ +
+ + + + + + +
+
+ Oberthur Card System / Philips (NXP) + + +   + + 2009-11-192019-09-01 + + + EAL4+ + + + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ID-One Cosmo V7.0-n SmartCard in configuration Basic on NXP P5CC037 V0A   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2010-10-22 – Rapport de maintenance ANSSI-CC-2009/49-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Oberthur Card System / Philips (NXP) + + +   + + 2009-11-192019-09-01 + + + EAL5+ + + + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ID-One Cosmo V7.0-n SmartCard in configuration Large, Standard, Basic (dual or contact modes) or Entry (mode dual) on NXP components   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2010-10-22 – Rapport de maintenance ANSSI-CC-2009/48-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Oberthur Card System / Philips (NXP) + + +   + + 2009-11-192019-09-01 + + + EAL5+ + + + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Infineon Smart Card IC (Security Controller) SLE66CLX800PE m1581-k11/a15, SLE66CLX800PEM m1580-k11/a15, SLE66CLX800PES m1582-k11/a15, SLE66CX800PE m1599-k11/a15, SLE66CLX360PE m1587-k11/a15, SLE66CLX360PEM m1588-k11/a15, SLE66CLX360PES m1589-k11/a15, SLE66CLX180PE m2080-a15, SLE66CLX180PEM m2081-a15, SLE66CLX120PE m2082-a15, SLE66CLX120PEM m2083-a15 all with optional libraries RSA V1.6 and EC V1.1 and SHA-2 V1.0 all with specific IC dedicated software   +
+ +
+ + + + + + +
+
+ Infineon Technologies AG + + +   + + 2009-11-192019-09-01 + + + EAL5+ + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Oberthur Carte à puce ID-One Cosmo V7.0-a en configuration Standard et Basic   + + + Oberthur Technologies / ATMEL Secure Microcontroller Solutions + + +   + + 2009-11-192019-09-01 + + + EAL5+ +
ADV_IMP.2 +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Oberthur Carte à puce ID-One Cosmo V7.0-a en configuration USB   + + + Oberthur Technologies / ATMEL Secure Microcontroller Solutions + + +   + + 2009-11-192019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Oberthur Carte à puce ID-One Cosmo V7.0-n en configuration Basic masquée sur composant NXP P5CC037 V0A   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2010-10-22 – Rapport de maintenance ANSSI-CC-2009/49-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Oberthur Technologies / NXP Semiconductors GmbH + + +   + + 2009-11-192019-09-01 + + + EAL5+ +
ADV_IMP.2 +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Oberthur Carte à puce ID-One Cosmo V7.0-n en configuration Large, Standard, Basic (modes dual ou contact) ou Entry (mode dual) masquée sur composant NXP   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2010-10-22 – Rapport de maintenance ANSSI-CC-2009/48-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Oberthur Technologies / NXP Semiconductors GmbH + + +   + + 2009-11-192019-09-01 + + + EAL5+ +
ADV_IMP.2 +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Infineon Smart Card IC (Security Controller) SLE66CX126PE / M2160-k11 and SLE66CX86PE / M2161-k11 both with optional libraries RSA V1.6, EC V1.1 and SHA-2 V1.0 both with specific IC dedicated software   +
+ +
+ + + + + + +
+
+ Infineon Technologies AG + + +   + + 2009-11-162019-09-01 + + + EAL5+ + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + SOMA_80IFX Version 1.1.0   +
+ +
+ + + + + + +
+
+ Arjo Systems - Arjowiggins Security - Gep + + +   + + 2009-11-162019-09-01 + + + EAL4+ + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + NXP Smart Card Controller P5CD081V1A and its major configurations P5CC081V1A, P5CN081V1A, P5CD041V1A, P5CD021V1A and P5CD016V1A each with IC dedicated Software   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2010-12-30 – NXP Smart Card Controller P5CD081V1A and its major configurations P5CC081V1A, P5CN081V1A, P5CD051V1A, P5CD041V1A, P5CD021V1A and P5CD016V1A each with IC dedicated Software
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ NXP Semiconductors + + +   + + 2009-11-102019-09-01 + + + EAL5+ + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + S3CC9PF 16-bit RISC Microcontroller for Smart Card, Revision 2   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2010-01-05 – S3CC9PW 16-bit RISC Microcontroller for Smart Card, Revision 0
    + Maintenance Report + + Maintenance ST + +
  2. + +
    +
  3. + 2010-03-03 – S3CC9PF 16-bit RISC Microcontroller for Smart Card, Revision 7
    + Maintenance Report + + Maintenance ST + +
  4. + +
+
+ + +
+
+ Samsung Electronics Co., Ltd. + + +   + + 2009-11-042019-09-01 + + + EAL5+ + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + NXP MIFARE Plus MF1PLUSx0y1   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2010-08-30 – NXP MIFARE Plus MF1PLUSx0y1
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ NXP Semiconductors + + +   + + 2009-11-022019-09-01 + + + EAL4+ + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + FS Sigma Version 01.01.05   +
+ +
+ + + + + + +
+
+ Toshiba Corporation + + +   + + 2009-10-272019-10-27 + + + EAL4+ +
ALC_DVS.2 +
ASE_TSS.2 +
AVA_VAN.5 +
+ + NL – NSCIB operated by
NL
+
+ + JCLX80jTOP20ID : Java Trusted Open Platform IFX#v42, with patch version 2.0, emedded on SLE66CLX800PE or SLE66CLX360PE   +
+ +
+ + + + + + +
+
+ Trusted Logic / Infineon + + +   + + 2009-10-272019-09-01 + + + EAL5+ + + + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + STMicroelectronics SA23YL18B Secure Microcontroller, including the cryptographic library Neslib v1.0 SA   + + + STMicroelectronics + + +   + + 2009-10-222019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + STMicroelectronics SA23YL80C Secure Microcontrollers, including the cryptographic library Neslib v1.0 SA   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2011-04-05 – Microcontroler sécurisé SA23YL80C et SB23YL80C, incluant la librairie cryptographique NesLib v1.0, v2.0 ou v3.0 en configuration SA ou SB
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ STMicroelectronics + + +   + + 2009-10-222019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + STMicroelectronics ST23YL18B Secure Microcontroller   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2011-03-21 – Rapport de maintenance ANSSI-CC-2009/39-M01
    + Maintenance Report + +
  2. + +
    +
  3. + 2012-08-24 – Rapport de maintenance ANSSI-CC-2009/39-M02
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ STMicroelectronics + + +   + + 2009-10-222019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + STMicroelectronics ST23YL80C Secure Microcontroller   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2011-04-05 – Rapport de maintenance ANSSI-CC-2009/37-M01
    + Maintenance Report + +
  2. + +
    +
  3. + 2012-08-29 – Rapport de maintenance ANSSI-CC-2009/37-M02
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ STMicroelectronics + + +   + + 2009-10-222019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + AT90SC320288RCT/AT90SC144144CT Rev. D   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2013-05-15 – Rapport de maintenance ANSSI-CC-2009/33-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ ATMEL Secure Products Division + + +   + + 2009-10-152019-09-01 + + + EAL4+ +
ADV_IMP.2 +
ALC_DVS.2 +
AVA_MSU.3 +
AVA_VLA.4 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + SAMSUNG S3FS91J / S3FS91H / S3FS91V / S3FS93I Secure Microcontroller RISC 32-bits, with SWP, Rev. 5   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2009-11-27 – Rapport de maintenance ANSSI-2009/25-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Samsung Electronics Co., Ltd. + + +   + + 2009-10-152019-09-01 + + + EAL4+ +
ADV_IMP.2 +
ALC_DVS.2 +
AVA_MSU.3 +
AVA_VLA.4 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + TCOS Passport Version 2.0 Release 2/P5CD080V0B Extended Access Control Version 2.0.2.m3   +
+ +
+ + + + + + +
+
+ T-Systems Enterprise Services GmbH + + +   + + 2009-10-142019-09-01 + + + EAL4+ + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Electronic Health Card and SSCD Version 2.10   +
+ +
+ + + + + + +
+
+ Gemalto + + +   + + 2009-10-072019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Athena Smartcard Solutions Inc. Carte ASEPCOS-TS/CNS DI Système d'exploitation ASEPCOS avec application de signature électronique TS/CNS embarqué sur le microcontrôleur AT90SC12872RCFT   + + + Athena Smartcard Solutions Inc. / Inside Secure S.A. + + +   + + 2009-10-062019-09-01 + + + EAL4+ +
AVA_MSU.3 +
AVA_VLA.4 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + MTCOS Pro 2.1 EAC / P5CD080/CZ   +
+ +
+ + + + + + +
+
+ MaskTech International GmbH + + +   + + 2009-09-302019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + ID-One Cosmo V7.0-a SmartCard in configuration Large Dual, Large and Standard Dual   +
+ +
+ + + + + + +
+
+ Oberthur Card System / Philips (NXP) + + +   + + 2009-09-292019-09-01 + + + EAL5+ + + + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + XSmart OpenPlatform V1.0   +
+ +
+ + + + + + +
+
+ LG CNS + + +   + + 2009-09-082019-06-01 + + + EAL4+ +
AVA_VAN.4 +
+ + KR – IT Security Certification Center(ITSCC)
KR
+
+ + Sony Smartcard RC-S251/SO2 version 1.0   +
+ +
+ + + + + + +
+
+ Sony Corporation + + +   + + 2009-09-032019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + ES – Organismo de Certificación de la Seguridad de las Tecnologías de la Información
ES
+
+ + Secure microcontroller ATMEL AT90SC24036RCU (AT58U48) rev. B   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2010-06-21 – Rapport de maintenance ANSSI-CC-2009/24-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ ATMEL Smart Card ICs + + +   + + 2009-08-212019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_MSU.3 +
AVA_VLA.4 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Secured microcontroller ATMEL AT90SC20818RCU (AT58U37) rev. C   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2010-06-21 – Rapport de maintenance ANSSI-CC-2009/22-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ ATMEL Smart Card ICs + + +   + + 2009-08-212019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Secured Microcontroller ATMEL AT91SC464384RCU (AT58U21) rev. B   +
+ +
+ + + + + + +
+
+ ATMEL Smart Card ICs + + +   + + 2009-08-212019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Secured Microcrontroller ATMEL AT90SC13612RCU (AT58U30) rev. C   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2010-06-21 – Rapport de maintenance ANSSI-CC-2009/23-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ ATMEL Smart Card ICs + + +   + + 2009-08-212019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + TCOS Passport Version 2.0 Release 2/P5CD080V0B Extended Access Control Version 2.0.2.m2   +
+ +
+ + + + + + +
+
+ T-Systems Enterprise Services GmbH + + +   + + 2009-08-192019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + IC chip for the reader / writer RC-S940 (CXD9768GG), version 4   +
+ +
+ + + + + + +
+
+ Sony Corporation + + +   + + 2009-07-302019-09-01 + + + EAL4 + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Apollo OS e-Passport Version 1.0   +
+ +
+ + + + + + +
+
+ SC Square LTD. + + +   + + 2009-07-272014-07-31 + + + EAL4+ +
AVA_MSU.3 +
AVA_VLA.4 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + eTravel EAC version 1.0 (version 01 03) on SLE66CLX800PE m1581 e13/a14   +
+ +
+ + + + + + +
+
+ Gemalto - Infineon Technologies AG + + +   + + 2009-07-272019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_IMP.2 +
ALC_DVS.2 +
ALC_FLR.3 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ID One™ ePass v2.1 with configuration BAC on NXP P5CD040V0B, P5CD080V0B, P5CD144V0B   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2010-09-21 – Rapport de maintenance ANSSI-CC-2009/20-M01
    + Maintenance Report + +
  2. + +
    +
  3. + 2010-09-23 – Rapport de maintenance ANSSI-CC-2009/20-M02
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ Oberthur Card System / Philips (NXP) + + +   + + 2009-07-232019-09-01 + + + EAL4+ +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ID One™ ePass v2.1 with configuration EAC RSA & ECC on NXP P5CD040V0B, P5CD080V0B, P5CD144V0B   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2010-09-21 – Rapport de maintenance ANSSI-CC-2009/19-M01
    + Maintenance Report + +
  2. + +
    +
  3. + 2010-09-23 – Rapport de maintenance ANSSI-CC-2009/19-M02
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ Oberthur Card System / Philips (NXP) + + +   + + 2009-07-232019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Passeport MorphoePass EAC CC with BAC, AA and EAC RSA or EAC ECC, on STMicroelectronics ST19NR66-A/1.1.0   +
+ +
+ + + + + + +
+
+ Sagem Sécurité / STMicroelectronics + + +   + + 2009-07-232019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + TL ICAO LDS smart card: electronic passport applet loaded on JCLX80jTOP20ID platform masked on SLE66CLX800PE component   +
+ +
+ + + + + + +
+
+ Trusted Logic / Infineon + + +   + + 2009-07-172019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Cryptographic Library ATMEL Toolbox 00.03.11.05   +
+ +
+ + + + + + +
+
+ ATMEL Smart Card ICs + + +   + + 2009-06-302019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + MTCOS Pro 2.1 EAC / SLE66CLX800PE   +
+ +
+ + + + + + +
+
+ MaskTech International GmbH + + +   + + 2009-06-302019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + T6NC9 Integrated Circuit with Crypto Library v1.1   +
+ +
+ + + + + + +
+
+ Toshiba Corporation Semiconductor Company, Japan + + +   + + 2009-06-252018-09-09 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + NL – NSCIB operated by
NL
+
+ + Sony RC-S957/2 Series with contact-based operating system out of scope, v1.0   +
+ +
+ + + + + + +
+
+ Sony Corporation + + +   + + 2009-06-242019-06-24 + + + EAL4 + + + NL – NSCIB operated by
NL
+
+ + NXP P5CC036V1D Secure Smart Card Controller with Cryptographic Library as IC Dedicated Support Software   +
+ +
+ + + + + + +
+
+ NXP Semiconductors + + +   + + 2009-06-032019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Secured Microcontrollers ATMEL AT90SC256144RCFT and AT90SC25672RCFT (AT58879) rev. E   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2009-05-20 – Rapport de maintenance DCSSI-2009/10-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ ATMEL Smart Card ICs + + +   + + 2009-05-202019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + MICARDO V3.4 R1.0 eHC V1.0   +
+ +
+ + + + + + +
+
+ Sagem Orga GmbH + + +   + + 2009-05-112019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
ATE_DPT.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Infineon Smart Card IC (Security Controller) SLE66CLX206PEM / m2084-a11, SLE66CLX206PE / m2085-a11, SLE66CLX206PES / m2086-a11, SLE66CDX206PEM / m2099-a11, SLE66CLX203PEM / m2098-a11, SLE66CLX207PEM / m2980-a11, SLE66CLX207PE / m2981-a11, SLE66CLX207PES / m2982-a11, SLE66CLX126PEM / m2087-a11, SLE66CLX126PE / m2088-a11, SLE66CLX126PES / m2089-a11, SLE66CLX127PEM / m2997-a11, SLE66CLX127PE / m2998-a11, SLE66CLX127PES / m2999-a11, all with optional libraries RSA V1.6, EC V1.1, SHA-2 V1.0 and all with specific IC dedicated software   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2009-06-08 – Infineon Smart Card IC (Security Controller) SLE66CLX206PEM / m2084-a12, SLE66CLX206PE / m2085-a12, SLE66CLX206PES / m2086-a12, SLE66CDX206PEM / m2099-a12, SLE66CLX203PEM / m2098-a12, SLE66CLX207PEM / m2980-a12, SLE66CLX207PE / m2981-a12, SLE66CLX207PES / m2982-a12, SLE66CLX126PEM / m2087-a12, SLE66CLX126PE / m2088-a12, SLE66CLX126PES / m2089-a12, SLE66CLX127PEM / m2997-a12, SLE66CLX127PE / m2998-a12, SLE66CLX127PES / m2999-a12, all with optional libraries RSA V1.6, EC V1.1, SHA-2 V1.0 and all with specific IC dedicated software
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Infineon Technologies AG + + +   + + 2009-05-082019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + S3FS91J/S3FS91H/S3FS91V/S3FS93I 32-bits RISC Microcontroller for Smartcard with SWP   +
+ +
+ + + + + + +
+
+ Samsung Electronics Co., Ltd. + + +   + + 2009-05-042019-09-01 + + + EAL4+ + + + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + STARCOS 3.4 Health eGK C1   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2009-08-20 – STARCOS 3.4 Health eGK C2
    + Maintenance Report + + Maintenance ST + +
  2. + +
    +
  3. + 2010-09-14 – STARCOS 3.4 Health eGK C3
    + Maintenance Report + + Maintenance ST + +
  4. + +
    +
  5. + 2011-07-19 – STARCOS 3.4 Health eGK C4
    + Maintenance Report + + Maintenance ST + +
  6. + +
+
+ + +
+
+ G+D Mobile Security GmbH + + +   + + 2009-04-302019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + NXP Smart Card Controller P5CC036V1D and P5CC009V1D each with specific IC dedicated Software   +
+ +
+ + + + + + +
+
+ NXP Semiconductors + + +   + + 2009-04-292019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Gemalto MultiApp ID Citizen 72K (generic configuration)   + + + Gemalto / Samsung + + +   + + 2009-04-232019-09-01 + + + EAL4+ +
ADV_INT.2 +
ADV_IMP.2 +
ALC_DVS.2 +
AVA_MSU.3 +
AVA_VLA.4 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Infineon Smart Card IC (Security Controller) SLE66CX366PE / M1528-k11, SLE66CX206PE / M1506-k11 and SLE66CX186PE / M1503-k11 all with optional libraries RSA2048 V1.6 and ECC V1.1 and with specific IC dedicated software   +
+ +
+ + + + + + +
+
+ Infineon Technologies AG + + +   + + 2009-04-212019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + MultiApp ID Citizen 72K with HIC/HPC applet (healthcare configuration)   +
+ +
+ + + + + + +
+
+ Gemalto / Samsung + + +   + + 2009-04-102019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + BAC application of the product eTravel EAC version 1.1 embedded on P5CD080 or P5CD144   +
+ +
+ + + + + + +
+
+ Gemalto / NXP Semiconductors + + +   + + 2009-04-072019-09-01 + + + EAL4+ + + + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + NXP Mifare DESFire8 MF3ICD81 V0C/004 Secure SmartCard Controller with Embedded Software   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2009-12-04 – NXP Mifare DESFire8 MF3ICD81 V0C/004 Secure SmartCard Controller with Embedded Software
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ NXP Semiconductors + + +   + + 2009-04-012019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + ASEPCOS-CNS/CIE with Digital Signature Application on Atmel AT90SC12872RCFT   +
+ +
+ + + + + + +
+
+ Athena Smartcard Solutions Inc + + +   + + 2009-03-262019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Secured Microcontroller ST23YR80A   +
+ +
+ + + + + + +
+
+ STMicroelectronics + + +   + + 2009-03-262019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Secured Microcontrollers SA23YR80A including the cryptographic Library NesLib SA revision 1.0   +
+ +
+ + + + + + +
+
+ STMicroelectronics + + +   + + 2009-03-262019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + NXP J3A080 v2.4.1 Secure Smart Card Controller (JCOP v2.4.1)   +
+ +
+ + + + + + +
+
+ NXP Semiconductors + + +   + + 2009-02-192019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + JCLX80jTOP20ID smart card: Java Trusted Open Platform on SLE66CLX800PE microcontroller   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2009-07-06 – Maintenance Report DCSSI-2008/43-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Trusted Logic + + +   + + 2008-12-192019-09-01 + + + EAL5 + + + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + eTravel EAC version 1.1 (version 01 02) embedded on P5CD080 and P5CD144 microcontrollers   +
+ +
+ + + + + + +
+
+ Gemalto + + +   + + 2008-12-182019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Microcontrôleur sécurisé ATMEL AT91SC464384RCU   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2010-03-19 – Rapport de maintenance ANSSI-CC-2008/36-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ ATMEL Secure Products Division + + +   + + 2008-12-172019-09-01 + + + EAL4+ +
ADV_IMP.2 +
ALC_DVS.2 +
AVA_MSU.3 +
AVA_VLA.4 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + TCOS Passport Version 2.0 Release 2-ID1/ P5CD080V0B   +
+ +
+ + + + + + +
+
+ T-Systems Enterprise Services GmbH + + +   + + 2008-12-162019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + eTravel EAC V1 64k   +
+ +
+ + + + + + +
+
+ Gemalto + + +   + + 2008-12-112019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + S3CC924/ S3CC928 16-bit RISC Microcontroller for Smart Card, Revision 1   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2009-05-19 – S3CC924/S3CC928 16-bit RISC Microcontroller for Smart Card, Revision 3
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ Samsung Electronics Co., Ltd. + + +   + + 2008-12-112019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + TCOS Passport Version 2.0 Release 2-ID1/SLE66CLX800PE   +
+ +
+ + + + + + +
+
+ T-Systems Enterprise Services GmbH + + +   + + 2008-12-082019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Atmel Smartcard ICs AT90SC28872RCU / AT90SC28848RCU with Atmel Cryptographic Toolbox Version 00.03.10.00 or 00.03.13.00   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2009-01-08 – Atmel Smartcard ICs AT90SC28872RCU / AT90SC28848RCU with Atmel Cryptographic Toolbox Version 00.03.10.00 or 00.03.13.00
    + Maintenance Report + + Maintenance ST + +
  2. + +
    +
  3. + 2009-04-06 – Atmel Smartcard ICs AT90SC28872RCU / AT90SC28848RCU with Atmel Cryptographic Toolbox Version 00.03.10.00 or 00.03.13.00
    + Maintenance Report + + Maintenance ST + +
  4. + +
+
+ + +
+
+ Atmel Corporation + + +   + + 2008-12-042019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + NXP Smart Card Controller P5CC052V0A with IC dedicated software: Secured Crypto Library Release 2.0   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2008-12-15 – NXP Smart Card Controller P5CC52V0A with IC dedicated software: Secured Crypto Library Release 2.1
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ NXP Semiconductors + + +   + + 2008-12-022019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + NXP Smart Card Controller P5CC037V0A with IC dedicated software: Secured Crypto Library Release 2.0   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2008-12-15 – NXP Smart Card Controller P5CC37V0A with IC dedicated software: Secured Crypto Library Release 2.1
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ NXP Semiconductors + + +   + + 2008-11-272019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + NXP Smart Card Controller P5CC024V0A, P5CC020V0A, P5SC020V0A, P5CC012V0A all with IC dedicated software: Secured Crypto Library Release 2.0   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2008-12-08 – NXP Smart Card Controller P5CC024V0A,P5CC020V0A, P5SC020V0A, P5CC012V0A all with IC dedicated software: Secured Crypto Library Release 2.1
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ NXP Semiconductors + + +   + + 2008-11-262019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_MSU.3 +
AVA_VLA.4 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Infineon Smart Card IC (Security Controller) SLE66CL187PEM / m2984-a11, SLE66CL187PE / m2985-a11, SLE66CL187PES / m2986-a11, SLE66CL88PEM / m2995-a11, SLE66CL88PE / m2994-a11, SLE66CL87PEM / m2992-a11, SLE66CL87PES / m2993-a11, SLE66CL87PE / m2991-a11 and SLE66CL48PE / m2983-a11 all with specific IC dedicated software   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2009-03-27 – Infineon Smart Card IC's (Security Controller) SLE66CL187PEM / m2984-a12, SLE66CL187PE / m2985-a12, SLE66CL187PES / m2986-a12, SLE66CL88PEM / m2995-a12, SLE66CL88PE / m2994-a12, SLE66CL87PEM / m2992-a12, SLE66CL87PES / m2993-a12, SLE66CL87PE / m2991-a12, SLE66CL48PE / m2983-a12 all with specific dedicated software
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Infineon Technologies AG + + +   + + 2008-11-252019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Infineon Smart Card IC (Security Controller) SLE66CLX1600PEM / m1590-a12, SLE66CLX1600PE / m1596-a12, SLE66CLX1600PES / m1597-a12,SLE66CX1600PE / m1598-a12, SLE66CLX1440PEM / m2090-a12, SLE66CLX1440PE / m2091-a12, SLE66CLX1440PES / m2092-a12, SLE66CX1440PE / m2093-a12, SLE66CLX1280PEM / m2094-a12, SLE66CLX1280PE / m2095-a12, SLE66CLX1280PES / m2096-a12, SLE66CX1280PE / m2097-a12 all optional with RSA2048 V1.5 and ECC V1.1 and all with specific IC dedicated software   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2009-06-09 – Infineon Smart Card IC (Security Controller) SLE66CLX1600PEM / m1590-a13, SLE66CLX1600PE / m1596-a13, SLE66CLX1600PES / m1597-a13, SLE66CX1600PE / m1598-a13, SLE66CLX1440PEM / m2090-a13, SLE66CLX1440PE / m2091-a13, SLE66CLX1440PES / m2092-a13, SLE66CX1440PE / m2093-a13, SLE66CLX1280PEM / m2094-a13, SLE66CLX1280PE / m2095-a13,SLE66CLX1280PES / m2096-a13, SLE66CX1280PE / m2097-a13 all optional with RSA2048 V1.5 and ECC V1.1 and all with specific IC dedicated software
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Infineon Technologies AG + + +   + + 2008-11-062019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + MTCOS Pro 2.0 ICAO / ST19NR66   +
+ +
+ + + + + + +
+
+ MaskTech International GmbH + + +   + + 2008-11-042019-09-01 + + + EAL4+ +
ADV_IMP.2 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + LINQUS USIM 128K Smartcard: ESIGN PKI signature application loaded on GemXplore Generations G152B-EP3B platform embedded on SLE88CFX4002P/m8834b17, version 1.0   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2010-03-12 – Maintenance Report ANSSI-CC-2008/37-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Gemalto - Infineon Technologies AG + + +   + + 2008-11-032019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Adapter Compatible High-Speed Juki Card Software   +
+ +
+ + + + + + +
+
+ NTT Communications Corporation + + +   + + 2008-10-302013-12-09 + + + EAL4+ +
AVA_MSU.3 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Advantis Crypto v3.1   +
+ +
+ + + + + + +
+
+ Servicios para Medios de Pago S.A. + + +   + + 2008-10-292011-07-12 + + + EAL4+ +
AVA_MSU.3 +
AVA_VLA.4 +
+ + ES – Organismo de Certificación de la Seguridad de las Tecnologías de la Información
ES
+
+ + Chipkartenterminal SmartTerminal ST-2xxx Firmware Version 5.11   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2009-01-07 – SmartTerminal ST-2xxx Firmware Version 5.13
    + Maintenance Report + + Maintenance ST + +
  2. + +
    +
  3. + 2009-12-04 – SmartTerminal ST-2xxx Firmware Version 5.11 und 5.13
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ Cherry GmbH + + +   + + 2008-10-152019-09-01 + + + EAL3+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADO_DEL.2 +
ADV_LLD.1 +
ADV_IMP.1 +
ALC_TAT.1 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + STARCOS 3.3 Passport Edition Version 2.0b   +
+ +
+ + + + + + +
+
+ G+D Mobile Security GmbH + + +   + + 2008-10-102019-09-01 + + + EAL4+ +
ADV_IMP.2 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Secured Microcontrollers ATMEL AT91SO100 and AT91SO101 (AT58815 - package LFBGA) rev. G   +
+ +
+ + + + + + +
+
+ ATMEL Smart Card ICs + + +   + + 2008-10-072019-09-01 + + + EAL4+ +
ADV_IMP.2 +
ALC_DVS.2 +
AVA_MSU.3 +
AVA_VLA.4 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + S3FS91J/S3FS91H/S3FS91V   +
+ +
+ + + + + + +
+
+ Samsung Electronics Co., Ltd. + + +   + + 2008-09-292019-06-01 + + + EAL4+ + + + KR – IT Security Certification Center(ITSCC)
KR
+
+ + KCOS e-Passport Version 1.0   + + + KOMSCO + + +   + + 2008-09-242019-06-01 + + + EAL4+ +
AVA_MSU.2 +
AVA_VLA.3 +
+ + KR – IT Security Certification Center(ITSCC)
KR
+
+ + Samsung SDS SPass V1.0   + + + Samsung SDS + + +   + + 2008-09-242019-06-01 + + + EAL4+ +
ADV_IMP.2 +
ALC_DVS.2 +
ATE_DPT.2 +
AVA_VLA.3 +
+ + KR – IT Security Certification Center(ITSCC)
KR
+
+ + Xsmart e-Passport V1.0   + + + LG CNS + + +   + + 2008-09-242019-06-01 + + + EAL4+ +
ADV_IMP.2 +
ATE_DPT.2 +
AVA_VLA.3 +
+ + KR – IT Security Certification Center(ITSCC)
KR
+
+ + STARCOS 3.3 Passport Edition Version 2.0a   +
+ +
+ + + + + + +
+
+ G+D Mobile Security GmbH + + +   + + 2008-09-182019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Renesas AE57C1 (HD65257C1) smartcard integrated circuit V01   +
+ +
+ + + + + + +
+
+ Renesas Technology Corporation + + +   + + 2008-09-162019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Renesas HD65256D smartcard integrated circuit V01   +
+ +
+ + + + + + +
+
+ Renesas Technology Corporation + + +   + + 2008-09-162019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Secure Microcontroller SA23YL18A with Cryptographic Library NesLib SA rev 1.0   +
+ +
+ + + + + + +
+
+ STMicroelectronics + + +   + + 2008-09-162019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Secure Microcontroller SA23YL80B with Cryptographic Library NesLib SA rev 1.0   +
+ +
+ + + + + + +
+
+ STMicroelectronics + + +   + + 2008-09-162019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Secure Microcontroller ST23YL18A   +
+ +
+ + + + + + +
+
+ STMicroelectronics + + +   + + 2008-09-162019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Secure Microcontroller ST23YL80B   +
+ +
+ + + + + + +
+
+ STMicroelectronics + + +   + + 2008-09-162019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + BAROC/FISC Terminal Security Access Module, Version 1.0   +
+ +
+ + + + + + +
+
+ Financial Information Service Co. Ltd. (FISC) + + +   + + 2008-09-152019-09-01 + + + EAL4+ +
AVA_VLA.4 +
ADV_IMP.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Infineon Smart Card IC (Security Controller) SLE66CL180PE / m1585-a14, SLE66CL180PEM / m1584-a14, SLE66CL180PES / m1586-a14,SLE66CL81PE / m1594-a14, SLE66CL81PEM / m1595-a14, SLE66CL80PE / m1591-a14, SLE66CL80PEM / m1592-a14, SLE66CL81PES / m1593-a14,SLE66CL41PE / m1583-a14 with specific dedicated software   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2009-01-29 – Infineon Smart Card IC (Security Controller) SLE66CL180PE / m1585-a14, SLE66CL180PEM / m1584-a14, SLE66CL180PES / m1586-a14, SLE66CL81PE / m1594-a14, SLE66CL81PEM / m1595-a14, SLE66CL80PE / m1591-a14, SLE66CL80PEM / m1592-a14, SLE66CL81PES / m1593-a14, SLE66CL41PE / m1583-a14 with specific dedicated software
    + Maintenance Report + +
  2. + +
    +
  3. + 2009-03-27 – Infineon Smart Card IC''s (Security Controller) SLE66CL180PE / m1585-a15, SLE66CL180PEM / m1584-a15, SLE66CL180PES / m1586-a15, SLE66CL81PE / m1594-a15, SLE66CL81PEM / m1595-a15, SLE66CL80PE / m1591-a15, SLE66CL80PEM / m1592-a15,SLE66CL80PES / m1593-a15, SLE66CL41PE / m1583-a15 with specific dedicated software
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ Infineon Technologies AG + + +   + + 2008-08-222019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + eTravel EAC version 1.1 embedded on secure microcontroller P5CD080 and P5CD144   +
+ +
+ + + + + + +
+
+ Gemalto + + +   + + 2008-08-142019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + TCOS Passport Version 2.0 Release 2-EAC/SLE66CLX800PE   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2008-11-11 – TCOS Passport Version 2.02-EAC/SLE66CLX800PE-a14
    + Maintenance Report + + Maintenance ST + +
  2. + +
    +
  3. + 2008-11-19 – TCOS Passport Version 2.02-EAC/ SLE66CLX800PE
    + Maintenance Report + + Maintenance ST + +
  4. + +
+
+ + +
+
+ T-Systems Enterprise Services GmbH + + +   + + 2008-08-122019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Infineon Smart Card IC (Security Controller) SLE66CX162PE /m1531-a24 and SLE66CX80PE / m1533-a24 both optional with RSA2048 V1.5 and ECC V1.1 and both with specific IC dedicated software   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2008-09-30 – Infineon Smart Card IC (Security Controller) SLE66CX162PE /m1531-a24 and SLE66CX80PE /m1533-a24 both optional with RSA2048 V1.5 and ECC V1.1 and both with specific IC dedicated software
    + Maintenance Report + +
  2. + +
    +
  3. + 2009-04-06 – Infineon Smart Card IC (Security Controller) SLE66CX162PE /m1531-a25 and SLE66CX80PE /m1533-a25 both optional with RSA2048 V1.5 and ECC V1.1 and both with specific IC dedicated software
    + Maintenance Report + + Maintenance ST + +
  4. + +
+
+ + +
+
+ Infineon Technologies AG + + +   + + 2008-08-082019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + TCOS Passport Version 2.0 Release 2-EAC/P5CD080V0B   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2008-11-19 – TCOS Passport Version 2.02-EAC/ P5CD080V0B
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ T-Systems Enterprise Services GmbH + + +   + + 2008-08-082019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + ASEPcos-CNS/CIE with with Digital Signature Application embedded on secure microcontroller AT90SC12872RCFT   +
+ +
+ + + + + + +
+
+ Athena Smartcard Solutions Inc + + +   + + 2008-07-282019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + E-Passport Morpho-ePass V3 with BAC, AA and EAC RSA / EAC ECC embedded on secure microcontroller STMicroelectronics   +
+ +
+ + + + + + +
+
+ Sagem Défense Sécurité/ ATMEL Smart Card ICs + + +   + + 2008-07-282019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + MTCOS Pro 2.1 EAC on P5CD080V0B   +
+ +
+ + + + + + +
+
+ MaskTech GmbH + + +   + + 2008-07-082019-09-01 + + + EAL4+ +
ADV_IMP.2 +
ALC_DVS.2 +
AVA_MSU.3 +
AVA_VLA.4 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + NXP Smart Card Controller P5CD144V0B with IC Dedicated Software, Secured Crypto Library Release 2.0   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2008-09-30 – NXP Smart Card Controller P5CD144V0B with IC dedicated software: Secured Crypto Library Release 2.1
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ NXP Semiconductors + + +   + + 2008-07-032019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + S3CC91A 16-bit RISC Microcontroller for Smart Card, Revision 3   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2008-07-10 – S3CC917 16-bit RISC Microcontroller for Smart Card, Revision 0
    + Maintenance Report + + Maintenance ST + +
  2. + +
    +
  3. + 2008-07-10 – S3CC918 16-bit RISC Microcontroller for Smart Card, Revision 0
    + Maintenance Report + + Maintenance ST + +
  4. + +
+
+ + +
+
+ Samsung Electronics Co., Ltd. + + +   + + 2008-07-012019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + S3CC9LC 16-bit RISC Microcontroller for Smart Card, Revision 2   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2008-07-10 – S3CC9LA 16-bit RISC Microcontroller for Smart Card, Revision 0
    + Maintenance Report + + Maintenance ST + +
  2. + +
    +
  3. + 2008-08-18 – S3CC9L5 16-bit RISC Microcontroller for Smart Card, Revision 1
    + Maintenance Report + + Maintenance ST + +
  4. + +
    +
  5. + 2009-01-08 – S3CC9LC 16-bit RISC Microcontroller for Smart Card, Revision 5
    + Maintenance Report + + Maintenance ST + +
  6. + +
    +
  7. + 2009-02-27 – S3CC9LC 16-bit RISC Microcontroller for Smart Card Version: Revision 8
    + Maintenance Report + + Maintenance ST + +
  8. + +
+
+ + +
+
+ Samsung Electronics Co., Ltd. + + +   + + 2008-07-012019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Sony FeliCa Contactless Smart Card IC Chip RC-S962/1   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2008-12-01 – Maintenance Report DCSSI-2008/18-M01
    + Maintenance Report + +
  2. + +
    +
  3. + 2014-11-28 – ANSSI-CC-2008/18-M02
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ Sony Corporation + + +   + + 2008-06-272019-09-01 + + + EAL4 + + + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Starcos 3.3 Passport Edition, Version 1.0   +
+ +
+ + + + + + +
+
+ G+D Mobile Security GmbH + + +   + + 2008-06-272019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + NXP Smart Card Controller P5CD040V0B with IC dedicated software: Secured Crypto Library Release 2.0 to EAL5+   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2008-07-07 – NXP Smart Card Controller P5CD012V0B with dedicated software, Secured Crypto Library Release 2.0
    + Maintenance Report + + Maintenance ST + +
  2. + +
    +
  3. + 2008-09-30 – NXP Smart Card Controller P5CD040V0B with IC dedicated software: Secured Crypto Library Release 2.1
    + Maintenance Report + + Maintenance ST + +
  4. + +
    +
  5. + 2010-06-21 – Crypto Library V2.1 on P5CD040V0B, P5CC040V0B, P5CD020V0B, P5CC021V0B, P5CD012V0B
    + Maintenance Report + + Maintenance ST + +
  6. + +
+
+ + +
+
+ NXP Semiconductors + + +   + + 2008-06-262019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + NXP Smart Card Controller P5CC052V0A with specific IC Dedicated Software   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2009-09-08 – NXP Smart Card Controller P5CC052V0A with specific IC Dedicated Software
    + Maintenance Report + + Maintenance ST + +
  2. + +
    +
  3. + 2012-07-31 – NXP Smart Card Controller P5CC052V0A/V0B with specific IC Dedicated Software
    + Maintenance Report + + Maintenance ST + +
  4. + +
    +
  5. + 2013-12-19 – NXP Smart Card Controller P5CC052V0A with specific IC Dedicated Software
    + Maintenance Report + +
  6. + +
+
+ + +
+
+ NXP Semiconductors + + +   + + 2008-06-242019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Secure Microcontroller RISC S3FS9CI 32-bit for S-SIM applications   +
+ +
+ + + + + + +
+
+ Samsung Electronics Co., Ltd. + + +   + + 2008-06-232019-09-01 + + + EAL4+ +
ADV_IMP.2 +
ALC_DVS.2 +
AVA_MSU.3 +
AVA_VLA.4 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + NXP Smart Card Controller P5CC037V0A with specific IC Dedicated Software   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2009-09-07 – NXP Smart Card Controller P5CC037V0A with specific IC Dedicated Software
    + Maintenance Report + + Maintenance ST + +
  2. + +
    +
  3. + 2012-07-31 – NXP Smart Card Controller P5CC037V0A with specific IC Dedicated Software
    + Maintenance Report + + Maintenance ST + +
  4. + +
    +
  5. + 2013-12-19 – NXP Smart Card Controller P5CC037V0A with specific IC Dedicated Software
    + Maintenance Report + +
  6. + +
+
+ + +
+
+ NXP Semiconductors + + +   + + 2008-06-202019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + NXP Smart Card Controller P5CC024V0A, P5CC020V0A, P5SC020V0a and P5CC012V0A each with IC Dedicated Software: Secured Crypto Library Release 2.0 to CC EAL5+   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2009-09-02 – NXP Smart Card Controller P5CC024V0A, P5CC020V0A, P5SC020V0A and P5CC012V0A each with specific IC Dedicated Software
    + Maintenance Report + + Maintenance ST + +
  2. + +
    +
  3. + 2012-07-31 – NXP Smart Card Controller P5CC024V0A, P5CC020V0A, P5SC020V0A and P5CC012V0A each with specific IC Dedicated Software
    + Maintenance Report + + Maintenance ST + +
  4. + +
    +
  5. + 2013-12-19 – NXP Smart Card Controller P5CC024V0A, P5CC020V0A, P5SC020V0A and P5CC012V0A each with specific IC Dedicated Software
    + Maintenance Report + +
  6. + +
+
+ + +
+
+ NXP Semiconductors + + +   + + 2008-06-132019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + NXP Smart Card Controller P5CD080V0B with Dedicated software: Secured Crypto Library Release 2.0   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2008-09-18 – NXP Smart Card Controller P5CD080V0B with IC dedicated software: Secured Crypto Library Release 2.1
    + Maintenance Report + + Maintenance ST + +
  2. + +
    +
  3. + 2010-06-21 – Crypto Library V2.1 on P5CD080V0B, P5CN080V0B, P5CC080V0B, P5CC073V0B
    + Maintenance Report + + Maintenance ST + +
  4. + +
+
+ + +
+
+ NXP Semiconductors + + +   + + 2008-06-132019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + ID-One ePass 64 v1 with BAC and AA embedded on secure microcontroller Atmel   +
+ +
+ + + + + + +
+
+ Oberthur Card System / Philips (NXP) + + +   + + 2008-06-112019-09-01 + + + EAL4+ +
ADV_IMP.2 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + TCOS Passport Version 2.0, Release 2-BAC/P5CD080V0B   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2008-08-12 – TCOS Passport Version 2.02-BAC-pv22/P5CD080V0B
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ T-Systems Enterprise Services GmbH + + +   + + 2008-05-302019-09-01 + + + EAL4+ +
ADV_IMP.2 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + TCOS Passport Version 2.0, Release 2-BAC/SLE66CLX800PE   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2008-09-03 – TCOS Passport Version 2.02-BAC/SLE66CLX800PE-e13
    + Maintenance Report + + Maintenance ST + +
  2. + +
    +
  3. + 2008-11-11 – TCOS Passport Version 2.02-BAC/SLE66CLX800PE-a14
    + Maintenance Report + + Maintenance ST + +
  4. + +
+
+ + +
+
+ T-Systems Enterprise Services GmbH + + +   + + 2008-05-302019-09-01 + + + EAL4+ +
ADV_IMP.2 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Infineon Smart Card IC (Security Controller), SLE66CX680PE / m1534-a14, SLE66CX360PE / m1536-a14, SLE66CX482PE / m1577-a14, SLE66CX480PE / 1565-a14, SLE66CX182PE / m1564-a14, all optional with RSA 2048 V1.5 and all with specific IC dedicated software   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2008-09-25 – Infineon Smart Card IC (Security Controller) SLE66CX680PE / m1534-a14, SLE66CX360PE / m1536-a14, SLE66CX482PE / m1577-a14, SLE66CX480PE / m1565-a14, SLE66CX182PE / m1564-a14, all optional with RSA 2048 V1.5 and all with specific Dedicated Software
    + Maintenance Report + +
  2. + +
    +
  3. + 2009-01-29 – Infineon Smart Card IC (Security Controller) SLE66CX680PE / m1534-a14, SLE66CX360PE / m1536-a14, SLE66CX482PE / m1577-a14, SLE66CX480PE / m1565-a14, SLE66CX182PE / m1564-a14, all optional with RSA2048 V1.5 and all with specific IC dedicated software
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ Infineon Technologies AG + + +   + + 2008-05-272019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Infineon Smart Card IC (Security Controller)SLE66CLX800PE / m1581-e13/a14, SLE66CLX800PEM / m1580-e13/a14, SLE66CLX800PES / m1582-e13/a14, SLE66CX800PE / m1599-e13/a14, SLE66CLX360PE / m1587-e13/a14, SLE66CLX360PEM / m1588-e13/a14, SLE66CLX360PES / m1589-e13/a14, SLE66CLX180PE / m2080-a14, SLE66CLX180PEM / m2081-a14, SLE66CLX120PE / m2082-a14, SLE66CLX120PEM / m2083-a14, all optional with RSA2048 V1.5 and ECC V1.1 and all with specific IC dedicated software   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2008-11-04 – SLE66CLX800PE / m1581-e13/a14, SLE66CLX800PEM / m1580-e13/a14,SLE66CLX800PES / m1582-e13/a14, SLE66CX800PE / m1599-e13/a14, SLE66CLX360PE / m1587-e13/a14, SLE66CLX360PEM / m1588-e13/a14,SLE66CLX360PES / m1589-e13/a14, SLE66CLX180PE / m2080-a14, SLE66CLX180PEM / m2081-a14, SLE66CLX120PE / m2082-a14,SLE66CLX120PEM / m2083-a14, all optional with RSA2048 V1.5 and ECC V1.1 and all with specific IC dedicated software
    + Maintenance Report + +
  2. + +
    +
  3. + 2009-01-29 – Infineon Smart Card IC (Security Controller) SLE66CLX800PE / m1581-e13/a14, SLE66CLX800PEM / m1580-e13/a14, SLE66CLX800PES / m1582-e13/a14, SLE66CX800PE / m1599-e13/a14, SLE66CLX360PE / m1587-e13/a14, SLE66CLX360PEM / m1588-e13/a14, SLE66CLX360PES / m1589-e13/a14, SLE66CLX180PE / m2080-a14, SLE66CLX180PEM / m2081-a14, SLE66CLX120PE / m2082-a14, SLE66CLX120PEM / m2083-a14, all optional with RSA2048 V1.5 and ECC V1.1 and all with specific IC dedicated software
    + Maintenance Report + +
  4. + +
    +
  5. + 2009-03-05 – Infineon Smart Card IC (Security Controller) SLE66CLX800PE / m1581-a15, SLE66CLX800PEM / m1580-a15, SLE66CLX800PES / m1582-a15, SLE66CX800PE / m1599-a15, SLE66CLX360PE / m1587-a15, SLE66CLX360PEM / m1588-a15, SLE66CLX360PES / m1589-a15 all with optional libraries RSA V1.5 and ECC V1.1 and all with specific IC dedicated software
    + Maintenance Report + +
  6. + +
    +
  7. + 2009-04-15 – Infineon Smart Card IC (Security Controller) SLE66CLX800PE / m1581-a15, SLE66CLX800PEM / m1580-a15, SLE66CLX800PES / m1582-a15, SLE66CX800PE / m1599-a15, SLE66CLX360PE / m1587-a15, SLE66CLX360PEM / m1588-a15, SLE66CLX360PES / m1589-a15, SLE66CLX180PE / m2080-a15, SLE66CLX180PEM / m2081-a15, SLE66CLX120PE / m2082-a15, SLE66CLX120PEM / m2083-a15 all with optional libraries RSA V1.5 and ECC V1.1 and all with specific IC dedicated software
    + Maintenance Report + + Maintenance ST + +
  8. + +
    +
  9. + 2009-04-15 – Infineon Smart Card IC (Security Controller) SLE66CLX800PE / m1581-e13/a14, SLE66CLX800PEM / m1580-e13/a14, SLE66CLX800PES / m1582-e13/a14, SLE66CX800PE / m1599-e13/a14, SLE66CLX360PE / m1587-e13/a14, SLE66CLX360PEM / m1588-e13/a14, SLE66CLX360PES / m1589-e13/a14, SLE66CLX180PE /m2080-a14, SLE66CLX180PEM / m2081-a14, SLE66CLX120PE / m2082-a14, SLE66CLX120PEM / m2083-a14 all with optional libraries RSA V1.5 and ECC V1.1 and all with specific IC dedicated software
    + Maintenance Report + +
  10. + +
+
+ + +
+
+ Infineon Technologies AG + + +   + + 2008-05-272019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + ID-One EPass 64 v2.0 with BAC and AA   +
+ +
+ + + + + + +
+
+ Oberthur Card Systems + + +   + + 2008-05-262019-09-01 + + + EAL4+ +
ADV_IMP.2 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Secure Microcontroller CXD9916H3 / MB94RS403 & HAL Library for contactless smart-card FeliCa   +
+ +
+ + + + + + +
+
+ Fujitsu Limited + + +   + + 2008-05-262019-09-01 + + + EAL4+ +
ADV_IMP.2 +
ALC_DVS.2 +
AVA_MSU.3 +
AVA_VLA.4 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Secure Microcontroller ATMEL AT90SC12818RCU rev. B   +
+ +
+ + + + + + +
+
+ ATMEL Secure Products Division + + +   + + 2008-05-202019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ID-One EPass 64 v2.0 with EAC ECC   +
+ +
+ + + + + + +
+
+ Oberthur Card Systems + + +   + + 2008-05-162019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ID-One EPass 64 v2.0 with EAC RSA   +
+ +
+ + + + + + +
+
+ Oberthur Card Systems + + +   + + 2008-05-162019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Infineon Smart Card IC (Security Controller), SLE66CLX800PE / m1581-e12, SLE66CLX800PEM / m1580-e12, SLE66CLX800PES / m1582-e12, SLE66CLX360PE / 1587 e12, SLE66CLX360PEM / m1588-e12, SLE66CLX360PES /m1589-e12, SLE66CLX800PE /m1599-e12 all with RSA 2048 V 1.5 and ECC V 1.1 and specific Dedicated Software   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2008-09-19 – Infineon Smart Card IC (Security Controller) SLE66CLX800PE / m1581-e12, SLE66CLX800PEM / m1580-e12, SLE66CLX800PES / m1582-e12, SLE66CLX360PE / m1587-e12, SLE66CLX360PEM / m1588-e12, SLE66CLX360PES / m1589-e12, SLE66CX800PE / m1599-e12 all with RSA 2048 V1.5 and ECC V1.1 and specific Dedicated Software
    + Maintenance Report + +
  2. + +
    +
  3. + 2009-01-29 – Infineon Smart Card IC (Security Controller) SLE66CLX800PE / m1581-e12, SLE66CLX800PEM / m1580-e12, SLE66CLX800PES / m1582-e12, SLE66CLX360PE / m1587-e12, SLE66CLX360PEM / m1588-e12, SLE66CLX360PES / m1589-e12, SLE66CX800PE / m1599-e12 all with RSA 2048 V1.5 and ECC V1.1 and specific Dedicated Software
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ Infineon Technologies AG + + +   + + 2008-05-152019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + TCOS Passport Version 2.0 Release 1.1/P5CD080V0B   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2008-11-19 – TCOS Passport Version 2.02-EAC/ P5CD080V0B
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ T-Systems Enterprise Services GmbH + + +   + + 2008-04-042019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Secure Microcontroller ATMEL AT90SC256144RCFT / AT90SC25672RCFT rev. E   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2009-01-05 – Maintenance Report DCSSI-2008/18-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ ATMEL Secure Products Division + + +   + + 2008-03-252019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Secure Microcontroller ATMEL AT90SC9604RU rev. E   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2010-04-20 – Rapport de maintenance ANSSI-CC-2008/08-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ ATMEL Secure Products Division + + +   + + 2008-03-142019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + STARCOS 3.3 Passport Edition Version 1.0   +
+ +
+ + + + + + +
+
+ G+D Mobile Security GmbH + + +   + + 2008-03-032019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_IMP.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Secure Microcontroller ATMEL AT90SC12872RCFT / AT90SC12836RCFT rev. M   +
+ +
+ + + + + + +
+
+ ATMEL Secure Products Division + + +   + + 2008-02-272019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ATMEL Toolbox 00.03.01.07 on the AT90SC family of devices   +
+ +
+ + + + + + +
+
+ ATMEL Secure Products Division + + +   + + 2008-02-202019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + MultiApp ID Java Card Platform - MultiApp ID v1.0 and patch v3.1 embedded on the secure Microcontroller SLE66CX680PE-A13   +
+ +
+ + + + + + +
+
+ Gemalto - Infineon Technologies AG + + +   + + 2008-02-132019-09-01 + + + EAL4+ +
ADV_IMP.2 +
ALC_DVS.2 +
AVA_MSU.3 +
AVA_VLA.4 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + MultiApp ID SSCD - MultiApp ID v1.0 and patch v3.1 embedded on Secure Microcontroller SLE66CX680PE-A13   +
+ +
+ + + + + + +
+
+ Gemalto - Infineon Technologies AG + + +   + + 2008-02-132019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + TCOS Passport Version 2.0 Release 1/ SLE66CLX800PE   +
+ +
+ + + + + + +
+
+ T-Systems Enterprise Services GmbH + + +   + + 2008-02-062019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + STARCOS 3.01 PE Version 1.2   +
+ +
+ + + + + + +
+
+ G+D Mobile Security GmbH + + +   + + 2008-01-312019-09-01 + + + EAL4+ +
ADV_IMP.2 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + STARCOS 3.2 eGK Version 1.0   +
+ +
+ + + + + + +
+
+ G+D Mobile Security GmbH + + +   + + 2007-12-182019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_IMP.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + E-passport (MRTD) configuration of the Xaica-Alpha64K platform embedded on the ST19WR66I secure microcontroller   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2008-05-29 – Maintenance Report DCSSI-2007/24-M01
    + Maintenance Report + +
  2. + +
    +
  3. + 2008-08-28 – Maintenance Report DCSSI-2007/24-M02
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ NTT Data Corporation + + +   + + 2007-12-142019-09-01 + + + EAL4+ +
AVA_VLA.3 +
ADV_SPM.3 +
ACM_SCP.3 +
ADV_IMP.2 +
ALC_DVS.2 +
ALC_LCD.2 +
ALC_TAT.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ST19NR66-A Secure Microcontroller   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2009-05-12 – Rapport de maintenance DCSSI-2007/23-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ STMicroelectronics S.A. + + +   + + 2007-12-132019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + CardOS V4.2B FIPS with Application for Digital Signature, running on Infineon Chips SLE66CX322P and SLE66CX642P   +
+ +
+ + + + + + +
+
+ Siemens AG + + +   + + 2007-11-292019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + MultiApp ID Tachograph 36K card: GEOS platform and TachographV1.1 application masked on SLE66CX360PE; Ref. T1002264 A7 / version 1.1   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2008-08-27 – Maintenance Report DCSSI-2007/20-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Gemalto + + +   + + 2007-11-162019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADO_IGS.2 +
ADV_IMP.2 +
ALC_DVS.2 +
ATE_DPT.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Card ASEPcos-CNS/CIE: AT90SC144144CT microcontroller embedding the software ASEPcos-CNS/CIE with Digital Signature Application   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2008-07-15 – Maintenance Report DCSSI-2007/22-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Athena Smartcard Solutions Inc + + +   + + 2007-11-082019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + TCOS Passport Version 2.0 Release 1/P5CD080V0B   +
+ +
+ + + + + + +
+
+ T-Systems Enterprise Services GmbH, SSC Testfactory & Security + + +   + + 2007-10-292019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Application Morpho-Citiz 32 embedded on ATMEL microcontroller AT90SC12836RCT-E microcontroller (ref.: MC32/AT58819E/1.0.1)   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2009-05-12 – Rapport de maintenance DCSSI-M2007/17-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Sagem Défense Sécurité/ ATMEL Smart Card ICs + + +   + + 2007-09-242019-09-01 + + + EAL4+ +
ADV_IMP.2 +
ALC_DVS.2 +
AVA_MSU.3 +
AVA_VLA.4 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Application Morpho-Citiz 32 embedded on PHILIPS/NXP P5CC036V1-D microcontroller (ref.: MC32/P5CC036V1D/1.0.0)   +
+ +
+ + + + + + +
+
+ Sagem Défense Sécurité/ NXP Semiconductors + + +   + + 2007-09-242019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Java Card System of Usimera Protect V1.0 card on SLE88CFX4000P   +
+ +
+ + + + + + +
+
+ Gemalto + + +   + + 2007-09-172019-09-01 + + + EAL4+ +
ADV_HLD.5 +
ADV_IMP.3 +
ADV_LLD.2 +
ADV_RCR.3 +
ADV_FSP.4 +
ADV_INT.3 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + S3CC91C 16-Bit RISC Microcontroller for Smart Card Version 0   +
+ +
+ + + + + + +
+
+ Unknown + + +   + + 2007-09-102019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + S3CC9LC 16-Bit RISC Microcontroller for Smart Card Version 2   +
+ +
+ + + + + + +
+
+ Samsung Electronics Co., Ltd. + + +   + + 2007-09-102019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Infineon Smart Card IC (Security Controller) SLE66CL180PE / m1585-e12, SLE66CL180PEM / m1584-e12, SLE66CL180PES / m1586-e12, SLE66CL81PE / m1594-e12, SLE66CL81PEM / m1595-e12, SLE66CL80PE / m1591-e12, SLE66CL80PEM / m1592-e12, SLE66CL80PES / m1593-e12, SLE66CL41PE / m1583-e12 with specific IC Dedicated Software   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2008-02-22 – Infineon Smart Card IC (Security Controller) SLE66CL180PE / m1585-e13, SLE66CL180PEM / m1584-e13, SLE66CL180PES / m1586-e13, SLE66CL180PE / m1594-e13, SLE66CL81PEM / m1595-e13, SLE66CL80PE / m1591-e13, SLE66CL80PEM / m1592-e13, SLE66CL80PES / m1593-e13, SLE66CL41PE / m1583-e13 (BSI-DSZ-CC-0431-2007-MA-01)
    + Maintenance Report + +
  2. + +
    +
  3. + 2009-01-29 – Infineon Smart Card IC (Security Controller) SLE66CL180PE / m1585-e13, SLE66CL180PEM / m1584-e13, SLE66CL180PES / m1586-e13, SLE66CL81PE / m1594-e13, SLE66CL81PEM / m1595-e13, SLE66CL80PE / m1591-e13, SLE66CL80PEM / m1592-e13, SLE66CL80PES / m1593-e13, SLE66CL41PE / m1583-e13 with specific IC Dedicated Software
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ Infineon Technologies AG + + +   + + 2007-08-302019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + COSMOS V1.1 card: ID One IAS applet v1.01 (SSCD configuration) loaded on COSMO 64 RSA D v5.4 embedded on P5CT072VOP   +
+ +
+ + + + + + +
+
+ Oberthur Card Systems + + +   + + 2007-08-292019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + NXP P541G072V0P (JCOP 41 v2.3.1)   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2007-08-13 – NXP P521G072V0P (JCOP 21 v2.3.1), NXP P531G072V0P (JCOP 31 v2.3.1) and NXP P531G072V0Q (JCOP 31 v2.3.1)
    + Maintenance Report + + Maintenance ST + +
  2. + +
    +
  3. + 2007-08-13 – NXP P531G072V0P/Q (JCOP 31 v2.3.1) Security target lite
    + Maintenance Report + + Maintenance ST + +
  4. + +
+
+ + +
+
+ IBM Deutschland Entwicklung GmbH + + +   + + 2007-08-102019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + MICARDO V3.0 R1.0   +
+ +
+ + + + + + +
+
+ Sagem Orga GmbH + + +   + + 2007-07-312019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + TCOS Passport Version 1.0 Release 2 / P5CD072V0Q and TCOS Passport Version 1.0 Release 3 / SLE66CLX641P/m1522-a14   +
+ +
+ + + + + + +
+
+ T-Systems Enterprise Services GmbH + + +   + + 2007-07-312019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + STARCOS 3.01 PE V1.1   +
+ +
+ + + + + + +
+
+ G+D Mobile Security GmbH + + +   + + 2007-07-172019-09-01 + + + EAL4+ +
ADV_IMP.2 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + NXP Secure Smart Card Controller P5CD040V0B, P5CC040V0B, P5CD020V0B and P5CC021V0B each with specific IC Dedicated Software   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2007-09-28 – NXP Secure Smart Card Controller P5CD012V0B with specific IC Dedicated Software
    + Maintenance Report + +
  2. + +
    +
  3. + 2007-12-17 – NXP Secure Smart Card Controller P5CD040V0B with specific IC Dedicated Software
    + Maintenance Report + +
  4. + +
    +
  5. + 2008-04-30 – NXP Secure Smart Card Controller P5CD040V0B, P5CC040V0B, P5CD020V0B, P5CC021V0B and P5CD012V0B with especific IC Dedicated Software
    + Maintenance Report + +
  6. + +
    +
  7. + 2008-07-23 – NXP Secure Smart Card Controller P5CD040V0B, P5CC040V0B, P5CD020V0B, P5CC021V0B and P5CD012V0B with specific IC Dedicated Software
    + Maintenance Report + + Maintenance ST + +
  8. + +
    +
  9. + 2009-07-07 – NXP Smart Card Controller P5CD040V0B, P5CC040V0B, P5CD020V0B, P5CC021V0B and P5CD012V0B with specific IC Dedicated Software
    + Maintenance Report + + Maintenance ST + +
  10. + +
    +
  11. + 2009-11-06 – NXP Smart Card Controller P5CD040V0B, P5CC040V0B, P5CD020V0B, P5CC021V0B and P5CD012V0B each with specific IC Dedicated Software
    + Maintenance Report + + Maintenance ST + +
  12. + +
    +
  13. + 2011-10-10 – NXP Smart Card Controller P5CD040V0B, P5CD020V0B, P5CD012V0B, P5CC040V0B, P5CC021V0B
    + Maintenance Report + + Maintenance ST + +
  14. + +
    +
  15. + 2011-12-16 – NXP Smart Card Controller P5CD040V0B, P5CD020V0B, P5CD012V0B, P5CC040V0B, P5CC021V0B
    + Maintenance Report + + Maintenance ST + +
  16. + +
+
+ + +
+
+ NXP Semiconductors + + +   + + 2007-07-052019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + NXP Secure Smart Card Controller P5CD080V0B, P5CN080V0B and P5CC080V0B each with specific IC Dedicated Software   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2007-07-06 – NXP Secure Smart Card Controller P5CC073V0B with specific IC Dedicated Software
    + Maintenance Report + + Maintenance ST + +
  2. + +
    +
  3. + 2008-04-30 – NXP Secure Smart Card Controller P5CD080V0B, P5CN080V0B, P5CC080V0B and P5CC073V0B each with specific IC Dedicated Software (BSI-DSZ-CC-0410-2007-MA-02)
    + Maintenance Report + +
  4. + +
    +
  5. + 2008-07-18 – NXP Secure Smart Card Controller P5CD080V0B, P5CN080V0B, P5CC080V0B and P5CC073V0B with additional delivery form MOB6 & Inlay
    + Maintenance Report + + Maintenance ST + +
  6. + +
    +
  7. + 2008-07-29 – NXP Secure Smart Card Controller P5CD080V0B, P5CC080V0B, P5CN080V0B and P5CC073V0B with specific IC Dedicated Software
    + Maintenance Report + +
  8. + +
    +
  9. + 2009-07-07 – NXP Smart Card Controller P5CD080V0B, P5CN080V0B, P5CC080V0B, P5CC073V0B with specific IC Dedicated Software
    + Maintenance Report + + Maintenance ST + +
  10. + +
    +
  11. + 2009-09-16 – NXP Smart Card Controller P5CD080V0B with specific IC Dedicated Software
    + Maintenance Report + +
  12. + +
    +
  13. + 2009-11-06 – NXP Smart Card Controller P5CD080V0B, P5CN080V0B, P5CC080V0B, P5CC073V0B each with IC Dedicated Software
    + Maintenance Report + + Maintenance ST + +
  14. + +
+
+ + +
+
+ NXP Semiconductors Germany GmbH Business Line Identification + + +   + + 2007-07-052019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + NXP Secure Smart Card Controller P5CD144V0B, P5CN144V0B and P5CC144V0B each with specific IC Dedicated Software   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2008-04-30 – NXP Secure Smart Card Controller P5CD144V0B, P5CN144V0B and P5CC144V0B each with specific IC Dedicated Software (BSI-DSZ-CC-0411-2007-MA-01)
    + Maintenance Report + +
  2. + +
    +
  3. + 2008-07-18 – NXP Smart Card Controller P5CD144V0B, P5CN144V0B and P5CC144V0B with additional delivery form MOB6
    + Maintenance Report + + Maintenance ST + +
  4. + +
    +
  5. + 2008-07-29 – NXP Secure Smart Card Controller P5CD144V0B, P5CC144V0B and P5CN144V0B, with specific IC Dedicated Software
    + Maintenance Report + +
  6. + +
    +
  7. + 2009-07-07 – NXP Smart Card Controller P5CD144V0B, P5CN144V0B and P5CC144V0B, each with specific IC Dedicated Software
    + Maintenance Report + + Maintenance ST + +
  8. + +
    +
  9. + 2009-11-06 – NXP Smart Card Controller P5CD144V0B, P5CN144V0B and P5CC144V0B each with IC Dedicated Software
    + Maintenance Report + + Maintenance ST + +
  10. + +
    +
  11. + 2011-10-10 – NXP Smart Card Controller P5CD144V0B, P5CC144V0B, P5CN144V0B
    + Maintenance Report + + Maintenance ST + +
  12. + +
    +
  13. + 2011-12-16 – NXP Smart Card Controller P5CD144V0B, P5CC144V0B, P5CN144V0B
    + Maintenance Report + + Maintenance ST + +
  14. + +
+
+ + +
+
+ NXP Semiconductors Germany GmbH Business Line Identification + + +   + + 2007-07-052019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Renesas AE55C1 (HD65255C1) smartcard integrated circuit version 03 with ACL version 2.22   +
+ +
+ + + + + + +
+
+ Renesas Technology Corporation + + +   + + 2007-07-042019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + SM4148 LSI module for Smart Card   +
+ +
+ + + + + + +
+
+ Sharp Corporation + + +   + + 2007-07-042019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Sony FeliCa Contactless Smart Card IC Chip RC-S960/1   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2014-11-28 – ANSSI-CC-2007/14-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Sony Corporation / Fujitsu + + +   + + 2007-06-282019-09-01 + + + EAL4 + + + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + NXP Secure Smart Card Controller P5CT072V0N, P5CD072V0N, P5CD036V0N, including specific Inlay Packages OM95xx, each with specific IC Dedicated Software   +
+ +
+ + + + + + +
+
+ NXP Semiconductors Germany GmbH Business Line Identification + + +   + + 2007-06-262019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Renesas HD65256D version 01 smartcard integrated circuit   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2007-10-12 – Renesas HD65256D version 01 smartcard integrated circuit
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Renesas Technology Corporation + + +   + + 2007-05-302019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + MICARDO V3.0 R1.0 HPC V1.0   +
+ +
+ + + + + + +
+
+ Sagem Orga GmbH + + +   + + 2007-05-252019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_IMP.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + DNIe V1.13   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2011-05-12 – DNIe v1.13 with install, generation and start-up procedure v1.4
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ FNMT-RCM + + +   + + 2007-05-162019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_FLR.1 +
+ + ES – Organismo de Certificación de la Seguridad de las Tecnologías de la Información
ES
+
+ + Sdu ICAO eMRTD version 1.0   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2007-08-07 – Sdu ICAO eMRTD version 1.1.0
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Sdu Identification bv + + +   + + 2007-05-022019-09-01 + + + EAL4+ +
ADV_IMP.2 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Infineon Smart Card IC (Security controller) SLE88CFX4001P/m8835b18, SLE88CFX4003P/m8837b18, SLE88CFX3521P/m8857b18, SLE88CFX2921P/m8859b18, each with PSL V2.00.07 and specific IC Dedicated Software   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2007-09-12 – Infineon Smart Card IC (Security Controller) SLE88CFX4001P/m8835b18 SLE88CFX4003P/m8837b18 SLE88CFX3521P/m8857b18 SLE88CFX2921P/m8859b18 each with PSL V2.00.07 and specific IC Dedicated Software
    + Maintenance Report + +
  2. + +
    +
  3. + 2009-01-29 – Infineon Smart Card IC (Security Controller)SLE88CFX4001P/m8835b18, SLE88CFX4003P/m8837b18, SLE88CFX3521P/m8857b18, SLE88CFX2921P/m8859b18 each with PSL V2.00.07 and specific IC Dedicated Software
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ Infineon Technologies AG + + +   + + 2007-04-272019-09-01 + + + EAL5+ +
ADV_IMP.2 +
AVA_MSU.3 +
AVA_VLA.4 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Card Usimera Protect: SLE88CFX4000P microcontroller embedding SIM, USIM and OTA applications on Java card open platform (version 2.1).   +
+ +
+ + + + + + +
+
+ Gemalto - Infineon Technologies AG + + +   + + 2007-03-302019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ST19NA18C secure microcontroller   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2009-05-04 – Rapport de maintenance DCSSI-2007/07-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ STMicroelectronics + + +   + + 2007-03-282019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Oberthur Card ID-One ePass 64K: application ID-One ePass 64K embedded on Philips (NXP) P5CD072/V0P and P5CD072/V0Q components   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2007-07-11 – Rapport de maintenance M-2007/14
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Oberthur Card System / Philips (NXP) + + +   + + 2007-03-232019-09-01 + + + EAL4+ +
ADV_IMP.2 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + PhenoStor® Kartenlesegerät GRE100010   +
+ +
+ + + + + + +
+
+ Bayer Innovation GmbH + + +   + + 2007-03-092019-09-01 + + + EAL3 + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Renesas HD65256D version 01 smartcard integrated circuit   +
+ +
+ + + + + + +
+
+ Renesas Technology Corporation + + +   + + 2007-03-082019-09-01 + + + EAL4+ +
ADV_IMP.2 +
ALC_DVS.2 +
AVA_MSU.3 +
AVA_VLA.4 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + S3CC9GC 16-Bit RISC Microcontroller for Smart Card, Version 11   +
+ +
+ + + + + + +
+
+ Samsung Electronics Co., Ltd. + + +   + + 2007-03-012019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + S3CC9GW 16-Bit RISC Microcontroller for Smart Card, Version 5   +
+ +
+ + + + + + +
+
+ Samsung Electronics Co., Ltd. + + +   + + 2007-02-212019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + ATMEL Secure Microcontroller AT90SC12872RCFT / AT90SC12836RCFT rev. I & J   +
+ +
+ + + + + + +
+
+ Atmel Corporation + + +   + + 2007-02-162019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_MSU.3 +
AVA_VLA.4 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + MTCOS Pro 2.0 ICAO   +
+ +
+ + + + + + +
+
+ MaskTech GmbH + + +   + + 2007-02-142019-09-01 + + + EAL4+ +
ADV_IMP.2 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + ATMEL Secure Microcontroller AT90SC6404RT rev. B   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2007-04-25 – Maintenance Report M-2007/06
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ ATMEL Smart Card ICs + + +   + + 2007-02-092019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + IDOneClassIC Card : ID-One Cosmo 64 RSA v5.4 and applet IDOneClassIC v1.0 embedded on P5CT072VOP   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2007-04-23 – Rapport de maintenance M-2007/04
    + Maintenance Report + +
  2. + +
    +
  3. + 2010-05-19 – Rapport de Maintenance ANSSI-CC-2007/02-M02
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ Oberthur Card Systems + + +   + + 2007-01-292019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_IMP.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Infineon Smart Card IC (Security Controller) SLE66CLX800PE / m1581-e12, SLE66CLX800PEM / m1580-e12, SLE66CLX800PES / m1582-e12, SLE66CLX360PE / m1587-e12, SLE66CLX360PEM / m1588-e12 and SLE66CLX360PES / m1589-e12 with specific IC Dedicated Software   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2007-11-26 – Infineon Smart Card IC (Security Controller) SLE66CLX800PE / m1581-e12, SLE66CLX800PEM / m1580-e12, SLE66CLX800PES / m1582-e12, SLE66CLX360PE / m1587-e12, SLE66CLX360PEM / m1588-e12 and SLE66CLX360PES / m1589-e12 with specific IC Dedicated Software
    + Maintenance Report + +
  2. + +
    +
  3. + 2009-01-29 – Infineon Smart Card IC (Security Controller) SLE66CLX800PE / m1581-e12, SLE66CLX800PEM / m1580-e12, SLE66CLX800PES / m1582-e12, SLE66CLX360PE / m1587-e12, SLE66CLX360PEM / m1588-e12 and SLE66CLX360PES / m1589-e12 with specific IC Dedicated Software
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ Infineon Technologies AG + + +   + + 2007-01-292019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + ATMEL Secure Microcontroller AT90SC6408RFT rev. E   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2007-02-08 – Maintenance Report M-2007/01
    + Maintenance Report + +
  2. + +
    +
  3. + 2008-03-28 – Maintenance Report DCSSI-2007/01-M02
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ ATMEL Smart Card ICs + + +   + + 2007-01-152019-09-01 + + + EAL4+ +
ADV_IMP.2 +
ALC_DVS.2 +
AVA_MSU.3 +
AVA_VLA.4 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Infineon Smart Card IC (Security Controller) SLE66C166PE/m1532-a24   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2006-09-20 – Infineon Smart Card IC (Security Controller) SLE66C166PE/m1532-a24 with specific IC Dedicated Software
    + Maintenance Report + +
  2. + +
    +
  3. + 2007-09-12 – Infineon Smart Card IC (Security Controller) SLE66C166PE/m1532-a24 with specific IC Dedicated Software
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ Infineon Technologies AG + + +   + + 2007-01-012019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Infineon Smart Card IC (Security Controller) SLE66CL80P/m1457-a14 and SLE66CL81P/m1436-a14 with specific IC Dedicated Software   +
+ +
+ + + + + + +
+
+ Infineon Technologies AG + + +   + + 2007-01-012019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + JavaCard Platform GXP3.2-E64PK-CC with GemSAFE V2 Version 1.0   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2006-07-18 – JavaCard Platform GXP3.2-E64PK-CC with GemSAFE V2 Version 2.01
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ Gemplus S.A. + + +   + + 2007-01-012019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_IMP.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + MN67S140, RV3, FV12 - EAST JAPAN RAILWAY COMPANY SuicaII Contactless Smart Card IC Chip   +
+ +
+ + + + + + +
+
+ Matsushita Electric Industrial Co., Ltd. + + +   + + 2007-01-012019-09-01 + + + EAL4 + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Philips Secure Smart Card Controller P5CT072V0P, P5CC072V0P,P5CD072V0P and P5CD036V0P each with specific IC Dedicated Software   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2006-06-20 – Philips Secure Smart Card Controller P5CD072V0P, P5CD036V0P, P5CN072V0P and P5CN036V0P each with specific IC Dedicated Software
    + Maintenance Report + +
  2. + +
    +
  3. + 2009-06-26 – NXP Secure Smart Card Controller P5CT072V0P, P5CC072V0P, P5CD072V0P and P5CD036V0P each with IC specific Dedicated Software
    + Maintenance Report + + Maintenance ST + +
  4. + +
    +
  5. + 2009-06-29 – NXP Smart Card Controller P5CT072V0S, P5CN072V0S, P5CC072V0S P5CD072V0S, P5CD036V0S and P5CN036V0S each with specific IC Dedicated Software
    + Maintenance Report + + Maintenance ST + +
  6. + +
    +
  7. + 2011-01-18 – NXP Secure Smart Card Controller P5CT072V0S, P5CC072V0S, P5CD072V0S and P5CD036V0S each with specific IC Dedicated Software
    + Maintenance Report + + Maintenance ST + +
  8. + +
+
+ + +
+
+ Philips Semiconductors GmbH + + +   + + 2007-01-012019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Philips Secure Smart Card Controller P5CT072V0Q, P5CD072V0Q,P5CD036V0Q, including specific Inlay Packages OM95xx, each with specific IC Dedicated Software   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2009-06-26 – NXP Smart Card Controller P5CT072V0Q, P5CD072V0Q, P5CD036V0Q, including specific Inlay Packages OM95xx, each with specific IC
    + Maintenance Report + + Maintenance ST + +
  2. + +
    +
  3. + 2011-01-26 – NXP Secure Smart Card Controller P5CT072V0Q, P5CD072V0Q, P5CD036V0Q, including specific Inlay Packages OM95xx, each with specific IC Dedicated Software
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ Philips Semiconductors GmbH + + +   + + 2007-01-012019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Tachograph Card Version 1.1 128/64 R1.0   +
+ +
+ + + + + + +
+
+ ORGA Kartensysteme GMBH + + +   + + 2007-01-012019-09-01 + + + EAL4+ +
AVA_VLA.4 +
ADO_IGS.2 +
ADV_IMP.2 +
ATE_DPT.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + TCOS Passport Version 1.0 Release 2 / P5CD072V0Q and TCOS Passport Version 1.0 Release 2 / SLE66CLX641P/m1522-a12   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2006-09-18 – TCOS Passport Version 1.0 Release 2 / P5CD072V0Q and TCOS Passport Version 1.0 Release 3 / SLE66CLX641P / m1522-a12
    + Maintenance Report + +
  2. + +
    +
  3. + 2006-10-03 – TCOS Passport Version 1.0 Release 2 / P5CD072V0Q and TCOS Passport Version 1.0 Release 2 / SLE66CLX641P/m1522-a12
    + Maintenance Report + +
  4. + +
    +
  5. + 2006-11-30 – TCOS Passport Version 1.0 Release 2 / P5CD072V0Q and TCOS Passport Version 1.0 Release 3 / SLE66CLX641P/m1522-a14
    + Maintenance Report + +
  6. + +
+
+ + +
+
+ T-Systems Enterprise Services GmbH, SSC Testfactory & Security + + +   + + 2007-01-012019-09-01 + + + EAL4+ +
ADV_IMP.2 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + ATMEL Secure Microcontroller AT90SC25672RCT-USB rev. D   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2013-05-15 – Rapport de maintenance ANSSI-CC-2006/30-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ ATMEL Smart Card ICs + + +   + + 2006-12-192019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ATMEL Secure Microcontroller AT90SC9618RCT rev. D   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2007-05-25 – Maintenance Report M-2007/07
    + Maintenance Report + +
  2. + +
    +
  3. + 2008-03-28 – Maintenance Report DCSSI-2006/26-M02
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ ATMEL Smart Card ICs + + +   + + 2006-12-142019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + IC Platform of FeliCa Contactless Smartcard CXD9861/ MB94RS402 with HAL-API & DRNG Library   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2007-04-23 – Maintenance Report M-2007/03
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Fujitsu Limited + + +   + + 2006-12-142019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + AXSEAL CC V2 72K e-Passport application embedded on Philips P5CD072 V0Q microcontroller   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2008-08-27 – Maintenance Report DCSSI-2006/28-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Gemalto / Philips Semiconductors + + +   + + 2006-12-122019-09-01 + + + EAL4+ +
ADV_IMP.2 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ST19NR66B secure microcontroller   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2007-07-10 – Maintenance Report M-2007/17
    + Maintenance Report + +
  2. + +
    +
  3. + 2009-05-12 – Rapport de maintenance DCSSI-2006/27-M01
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ STMicroelectronics + + +   + + 2006-12-082019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Application e-Passport AXSEAL CC V2 36K embedded on Philips P5CD036V0Q microcontroller   +
+ +
+ + + + + + +
+
+ Gemalto / Philips Semiconductors + + +   + + 2006-11-282019-09-01 + + + EAL4+ +
ADV_IMP.2 +
ADV_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ATMEL Secure Microcontroller AT90SC12836RCT rev. K   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2007-05-14 – Maintenance Report M-2007/05
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ ATMEL Smart Card ICs + + +   + + 2006-11-272019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ATMEL Secure Microcontroller ATMEL AT90SC320288RCT/AT90SC144144CT rev. G   +
+ +
+ + + + + + +
+
+ ATMEL Smart Card ICs + + +   + + 2006-11-162019-09-01 + + + EAL4+ + + + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ST19WR66I secure microcontroller   +
+ +
+ + + + + + +
+
+ STMicroelectronics + + +   + + 2006-11-072019-09-01 + + + EAL5+ +
AVA_VLA.3 +
ADV_SPM.3 +
ACM_SCP.3 +
ADV_IMP.2 +
ALC_DVS.2 +
ALC_LCD.2 +
ALC_TAT.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + MULTOS SM10 R2 V1.0   +
+ +
+ + + + + + +
+
+ Samsung SDS + + +   + + 2006-09-292019-06-01 + + + EAL4+ +
ADV_IMP.2 +
ALC_DVS.2 +
ATE_DPT.2 +
AVA_VLA.4 +
+ + KR – IT Security Certification Center(ITSCC)
KR
+
+ + Sharp passport booklet module Version 1.1   +
+ +
+ + + + + + +
+
+ Sharp Corporation + + +   + + 2006-09-292019-09-01 + + + EAL4+ +
AVA_VLA.4 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Carta Nazionale dei Servici (CNS) based on component P5CT072VOP masked by GOP ID MX 64 with CNS 1.0.7 application   +
+ +
+ + + + + + +
+
+ Oberthur Card Systems + + +   + + 2006-09-152019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_IMP.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Infineon Smart Card IC (Security Controller), SLE66CL80P / m1457a14 and SLE66CL81P / m1436a14 with specific IC Dedicated Software   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2007-11-26 – Infineon Smart Card IC (Security Controller) SLE66CL80P / m1457a14 and SLE66CL81P / m1436a14 with specific IC Dedicated Software
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Infineon Technologies AG + + +   + + 2006-09-132019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Renesas AE45X1-C (HD65145X1)smartcard integrated circuit version 02   +
+ +
+ + + + + + +
+
+ Renesas Technology Corporation + + +   + + 2006-09-132019-09-01 + + + EAL4 + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Renesas AE57C1 (HD65257C1)smartcard integrated circuit version 01   +
+ +
+ + + + + + +
+
+ Renesas Technology Corporation + + +   + + 2006-09-132019-09-01 + + + EAL4+ +
ALC_DVS.2 +
ADV_IMP.2 +
AVA_MSU.3 +
AVA_VLA.4 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + ATMEL Secure Microcontroller AT90SC6404RT rev. I   +
+ +
+ + + + + + +
+
+ ATMEL Smart Card ICs + + +   + + 2006-09-082019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + MICARDO Tachograph Version 1.0 R1.0   +
+ +
+ + + + + + +
+
+ Sagem Orga GmbH + + +   + + 2006-09-062019-09-01 + + + EAL4+ +
AVA_VLA.4 +
ADO_IGS.2 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + ATMEL Secure Microcontroller AT90SC12872RCFT rev. E   +
+ +
+ + + + + + +
+
+ ATMEL Smart Card ICs + + +   + + 2006-09-012019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Philips P541G072V0P (JCOP 41 v2.2)   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2006-09-01 – Philips P531G072V0Q (JCOP 31 v2.2)
    + Maintenance Report + + Maintenance ST + +
  2. + +
    +
  3. + 2007-03-06 – Philips P541G072V0P (JCOP 41 v2.2) with Patch 7
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ Philips Semiconductors GmbH + + +   + + 2006-08-312019-09-01 + + + EAL4+ +
ADV_IMP.2 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + STARCOS 3.01 PE   +
+ +
+ + + + + + +
+
+ G+D Mobile Security GmbH + + +   + + 2006-08-032019-09-01 + + + EAL4+ +
ALC_DVS.2 +
ADV_IMP.2 +
AVA_VLA.4 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Infineon Smart Card IC (Security Controller) SLE88CFX4000P/m8830b17, SLE88CFX4002P/m8834b17, SLE88CFX3520P/m8847b17, SLE88CFX2920P/m8849b17, SLE88CF4000P/m8845b17, SLE88CF4002P/m8846b17 SLE88CF3520P/m8848b17, SLE88CF2920P/m8850b17 each with PSL V0.50.23_E107 or PSL V0.50.23_E110 and specific IC Dedicated Software   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2007-02-28 – Infineon Smart Card IC (Security Controller) SLE88CFX4000P/m8830b17, SLE88CFX4002P/m8834b17, SLE88CFX3520P/m8847b17, SLE88CFX2920P/m8849b17, SLE88CF4000P/m8845b17, SLE88CF4002P/m8846b17, SLE88CF3520P/m8848b17, SLE88CF2920P/m8850b17
    + Maintenance Report + +
  2. + +
    +
  3. + 2007-09-10 – Infineon Smart Card IC (Security Controller)SLE88CFX4000P/m8830b17, SLE88CFX4002P/m8834 b17, SLE88CFX3520P/m8847b17,SLE88CFX2920P/m8849b17, SLE88CF4000P/m8845b17, SLE88CF4002P/m8846b17, SLE88CF3520P/m8848b17, SLE88CF2920P/m8850b17, each with
    + Maintenance Report + +
  4. + +
    +
  5. + 2009-05-19 – Infineon Smart Card IC (Security Controller) SLE88CFX4000P/M8830-b17, SLE88CFX4002P/M8834-b17, SLE88CFX3520P/M8847-b17, SLE88CFX2920P/M8849-b17, SLE88CF4000P/M8845-b17, SLE88CF4002P/M8846-b17, SLE88CF3520P/M8848-b17, SLE88CF2920P/M8850-b17 each with specific IC Dedicated Software
    + Maintenance Report + +
  6. + +
+
+ + +
+
+ Infineon Technologies AG + + +   + + 2006-06-212019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Philips Secure Smart Card Controller P5CD009V2A and P5CC009V2A each   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2009-06-22 – NXP Smart Card Controller P5CD009V2A and P5CC009V2A each with IC Dedicated Software
    + Maintenance Report + +
  2. + +
    +
  3. + 2009-06-23 – NXP Smart Card Controller P5CD009V2C and P5CC009V2C each with IC dedicated software
    + Maintenance Report + + Maintenance ST + +
  4. + +
    +
  5. + 2011-02-03 – NXP Secure Smart Card Controller P5CD009V2C and P5CC009V2C each with specific IC Dedicated Software
    + Maintenance Report + + Maintenance ST + +
  6. + +
+
+ + +
+
+ Philips Semiconductors GmbH + + +   + + 2006-05-232019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Philips Secure Smart Card Controller P5CD009V2B with specific IC Dedicated Software   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2009-06-22 – NXP Smart Card Controller P5CD009V2B with IC Dedicated Software
    + Maintenance Report + + Maintenance ST + +
  2. + +
    +
  3. + 2011-02-03 – NXP Secure Smart Card Controller P5CD009V2B with specific IC Dedicated Software
    + Maintenance Report + + Maintenance ST + +
  4. + +
+
+ + +
+
+ Philips Semiconductors GmbH + + +   + + 2006-05-232019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Renesas AE55C1 (HD65255C1) smartcard integrated circuit version 02 with ACL version 1.43 and additional SHA-256 function   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2006-06-12 – Renesas AE55C1 (HD65255C1) smartcard integrated circuit version 03 with ACL version 1.43 and additional SHA-256 function
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ Renesas Technology Corporation + + +   + + 2006-05-152019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Java Card Open Platform   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2009-05-04 – Rapport de maintenance DCSSI-2006/08-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Axalto + + +   + + 2006-05-102019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ST19WR08C secure microcontroller   +
+ +
+ + + + + + +
+
+ STMicroelectronics + + +   + + 2006-04-202019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Renesas AE55C1 (HD65255C1) smartcard integrated circuit version 02 with ACL version 1.43   +
+ +
+ + + + + + +
+
+ Renesas + + +   + + 2006-03-282019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Infineon Smart Card IC (Security Controller) SLE88CFX4000P/m8830b17, SLE88CFX4002P/m8834b17, SLE88CFX3520P/m8847b17 and SLE88CFX2920P/m8849b17 each with PSL V0.50.23 and specific IC Dedicated Software   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2006-10-31 – Infineon Smart Card IC (Security Controller) SLE88CFX4000P/m8830b17, SLE88CFX4002P/m8834b17, SLE88CFX3520P/m8847b17 and SLE88CFX2920P/m8849b17 each with PSL V0.50.23 and specific IC Dedicated Software
    + Maintenance Report + +
  2. + +
    +
  3. + 2007-02-28 – Infineon Smart Card IC (Security Controller) SLE88CFX4000P/m8830b17, SLE88CFX4002P/m8834b17, SLE88CFX3520P/m8847b17 and SLE88CFX2920P/m8849b17 each with PSL V0.50.23 and specific IC Dedicated Software
    + Maintenance Report + +
  4. + +
    +
  5. + 2007-09-21 – Infineon Smart Card IC (Security Controller) SLE88CFX4000P/m8830b17, SLE88CFX4002P/m8834b17, SLE88CFX3520P/m8847b17 and SLE88CFX2920P/m8849b17 each with PSL V0.50.23 and specific IC Dedicated Software
    + Maintenance Report + +
  6. + +
+
+ + +
+
+ Infineon Technologies AG + + +   + + 2006-03-232019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Philips P5CC036V1D Secure Smart Card Controller with Cryptographic Library as IC Dedicated Support Software   +
+ +
+ + + + + + +
+
+ Philips Semiconductors GmbH + + +   + + 2006-03-132019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Philips P5CC036V1D Secure Smart Card Controller with Cryptographic Libraries IC Dedicated Support Software   +
+ +
+ + + + + + +
+
+ Philips Semiconductors GmbH + + +   + + 2006-03-102019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Sony IC with Operating System for Mobile CXD3715GG/GU-x, version 0701   +
+ +
+ + + + + + +
+
+ Sony Corporation + + +   + + 2006-01-242013-04-30 + + + EAL4 + + + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + Tarjeta Electrónica del Ministerio de Defensa TEMD 1.0   +
+ +
+ + + + + + +
+
+ Microelectrónica Española S.A. + + +   + + 2006-01-232011-07-12 + + + EAL4+ +
AVA_MSU.3 +
AVA_VLA.4 +
+ + ES – Organismo de Certificación de la Seguridad de las Tecnologías de la Información
ES
+
+ + TEMD version 1.0 (2004-3)   +
+ +
+ + + + + + +
+
+ Microelectrónica Española S.A. + + +   + + 2006-01-232019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
+ + ES – Organismo de Certificación de la Seguridad de las Tecnologías de la Información
ES
+
+ + ACOS EMV-A03V1 Configuration A   +
+ +
+ + + + + + +
+
+ Austria Card plastikkarten und Ausweissysteme Gmbh + + +   + + 2006-01-202019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + ACOS EMV-A03V1 Configuration B   +
+ +
+ + + + + + +
+
+ Austria Card plastikkarten und Ausweissysteme Gmbh + + +   + + 2006-01-202019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + ATMEL Secure Microcontroller AT90SC12872RCFT rev. E   +
+ +
+ + + + + + +
+
+ ATMEL Smart Card ICs + + +   + + 2005-12-222019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + jTOP e-Passport - Composant SLE66CLX641P masqué par l'application jTOP e-Passport version 8.05   +
+ +
+ + + + + + +
+
+ Trusted Logic / Infineon + + +   + + 2005-12-192019-09-01 + + + EAL4+ +
ADV_IMP.2 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ATMEL AT90SC6404RT rev. I microcontroller   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2005-12-16 – Rapport de maintenance M-2005/09
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ ATMEL Smart Card ICs + + +   + + 2005-12-152019-09-01 + + + EAL4+ +
AVA_VLA.4 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Infineon Smart Card IC (Security Controller) SLE66CLX320P / m1559b19 and SLE66CLX321P / m1359b19 both with RSA2048 V1.3 and specific IC Dedicated Software   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2005-02-06 – Infineon Smart Card IC (Security Controller) SLE66CLX320P/m1559-b22 and SLE66CLX321P/m1359-b22 both with RSA2048 V1.3 and specific IC Dedicated Software
    + Maintenance Report + +
  2. + +
    +
  3. + 2007-02-09 – Infineon Smart Card IC (Security Controller) SLE66CLX320P/m1559-b23 and SLE66CLX321P/m1359-b23 both with RSA2048 V1.3 and specific IC Dedicated Software
    + Maintenance Report + +
  4. + +
    +
  5. + 2007-09-21 – Infineon Smart Card IC (Security Controller) SLE66CLX320P/m1559-b23 and SLE66CLX321P/m1359-b23 both with RSA2048 V1.3 and specific IC Dedicated Software
    + Maintenance Report + +
  6. + +
+
+ + +
+
+ Infineon Technologies AG + + +   + + 2005-12-122019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + ATMEL AT90SC9618RCT rev. B microcontroller   +
+ +
+ + + + + + +
+
+ ATMEL Smart Card ICs + + +   + + 2005-12-082019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Applet CryptoSmart V2.0 on platform Oberthur COSMO64RSA D V5.2   +
+ +
+ + + + + + +
+
+ ERCOM SA. + + +   + + 2005-12-012019-09-01 + + + EAL2+ +
ALC_FLR.3 +
AVA_VLA.2 +
AVA_MSU.1 +
ADV_HLD.2 +
ADV_LLD.1 +
ALC_DVS.1 +
ALC_TAT.1 +
ADV_IMP.1 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + TCOS Passport Version 1.01 / P5CT072 and TCOS Passport Version 1.01/ SLE66CLX641P   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2006-03-31 – TCOS Passport Version 1.01 / P5CT072 and TCOS Passport Version 1.01 / SLE66CLX641P
    + Maintenance Report + +
  2. + +
    +
  3. + 2006-10-03 – TCOS Passport Version 1.01 / P5CT072 and TCOS Passport Version 1.01 / SLE66CLX641P
    + Maintenance Report + +
  4. + +
    +
  5. + 2007-08-15 – TCOS Passport Version 1.01 / P5CT072 and TCOS Passport Version 1.01 / SLE66CLX641P
    + Maintenance Report + +
  6. + +
+
+ + +
+
+ T-Systems International GMBH + + +   + + 2005-11-302019-09-01 + + + EAL4+ +
ADV_IMP.2 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + ITSO SAM (reference 00_06_13) embedded on microcontroller ATMEL AT90SC3232CS (reference AT568D9 revision K)   +
+ +
+ + + + + + +
+
+ Ecebs + + +   + + 2005-11-242019-09-01 + + + EAL4+ +
AVA_VLA.4 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ST19WL34A microcontroller   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2007-06-15 – Maintenance Report M-2007/12
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ STMicroelectronics + + +   + + 2005-11-182019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_MSU.3 +
AVA_VLA.4 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ST19WP18E microcontroller   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2006-06-14 – Maintenance Report M-2006/05
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ STMicroelectronics + + +   + + 2005-11-182019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_MSU.3 +
AVA_VLA.4 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ST19WR66D microcontroller   +
+ +
+ + + + + + +
+
+ STMicroelectronics + + +   + + 2005-11-182019-09-01 + + + EAL5+ +
ALC_DVS.2 +
AVA_MSU.3 +
AVA_VLA.4 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Infineon Smart Card IC (Security Controller) SLE66CX162PE/m1531-a24 and SLE66CX80PE/m1533-a24 both with RSA2048 V1.4 and specific IC Dedicated Software   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2006-09-20 – Infineon Smart Card IC (Security Controller) SLE66CX162PE/m1531-a24 SLE66CX80PE/m1533-a24 both with RSA 2048 V1.4 and specific IC Dedicated Software
    + Maintenance Report + +
  2. + +
    +
  3. + 2007-09-10 – Infineon Smart Card IC (Security Controller) SLE66CX162PE/m1531-a24 and SLE66CX80PE/m1533-a24 both with RSA2048 V1.4 and specific IC Dedicated Software
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ Infineon Technologies AG + + +   + + 2005-11-112019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Java Card Mokard Safe 2.2 V2.4.0   +
+ +
+ + + + + + +
+
+ ST Incard S.R.L. + + +   + + 2005-11-112019-09-01 + + + EAL4+ +
AVA_VLA.3 +
ADV_IMP.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Infineon Smart Card IC (Security Controller) SLE66CLX640P/m1523-a11 and SLE66CLX641P/m1522-a11 both with RSA2048 V1.3 and specific IC Dedicated Software   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2005-12-15 – Infineon Smart Card IC (Security Controller) SLE66CLX640P/m1523-a12 and SLE66CLX641P/m1522-a12 both with RSA2048 V1.3 and specific IC Dedicated Software
    + Maintenance Report + +
  2. + +
    +
  3. + 2006-10-31 – Infineon Smart Card IC (Security Controller) SLE66CLX640P/m1523-a14 and SLE66CLX641P/m1522-a14 both with RSA2048 V1.3 and specific IC Dedicated Software
    + Maintenance Report + +
  4. + +
    +
  5. + 2007-05-08 – Infineon Smart Card IC (Security Controller) SLE66CLX640P/m1523-a15 and SLE66CLX641P/m1522-a15 both with RSA2048 V1.3 and specific IC Dedicated Software
    + Maintenance Report + +
  6. + +
    +
  7. + 2007-11-26 – Infineon Smart Card IC (Security Controller) SLE66CLX640P/m1523-a15 and SLE66CLX641P/m1522-a15 both with RSA2048 V1.3 and specific IC Dedicated Software
    + Maintenance Report + +
  8. + +
+
+ + +
+
+ Infineon Technologies AG + + +   + + 2005-11-082019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Micro-circuit S3CJ9QD (reference S3CJ9QDX01 rev. 6)   +
+ +
+ + + + + + +
+
+ Samsung + + +   + + 2005-10-272019-09-01 + + + EAL4+ +
AVA_VLA.3 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Philips Secure Smart Card Controller P5CT072V0N including OM9500/1 and OM9501/2, P5CD072V0N and P5CD036V0N with specific IC Dedicated Software   +
+ +
+ + + + + + +
+
+ Philips Semiconductors GmbH + + +   + + 2005-10-072019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Infineon Smart Card IC (Security Controller) SLE66C168PE/m1530-a25, SLE66C84PE/m1538-a25, SLE66C44PE/m1539-a25 and SLE66C24PE/m1563-a25 with specific IC Dedicated Software   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2006-09-20 – Infineon Smart Card IC (Security Controller) SLE66C168PE/m1530-a25, SLE66C84PE/m1538-a25, SLE66C44PE/m1539-a25 and SLE66C24PE/m1563-a25 with specific IC Dedicated Software
    + Maintenance Report + +
  2. + +
    +
  3. + 2007-09-12 – Infineon Smart Card IC (Security Controller) SLE66C168PE/m1530-a25, SLE66C84PE/m1538-a25, SLE66C44PE/m1539-a25 and SLE66C24PE/m1563-a25 with specific IC Dedicated Software
    + Maintenance Report + +
  4. + +
    +
  5. + 2009-03-27 – Infineon Smart Card IC (Security Controller) SLE66C168PE/m1530-a26, SLE66C84PE/m1538-a26, SLE66C44PE/m1539-a26 and SLE66C24PE/m1563-a26 with specific IC Dedicated Software
    + Maintenance Report + +
  6. + +
+
+ + +
+
+ Infineon Technologies AG + + +   + + 2005-09-302019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + SM4128 (V3) A5-step module   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2006-03-28 – SM4128 (V3) A7-step module
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Sharp Corporation + + +   + + 2005-09-202019-09-01 + + + EAL4+ +
ADV_IMP.2 +
ALC_DVS.2 +
AVA_MSU.3 +
AVA_VLA.4 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Infineon Smart Card IC (Security Controller) SLE66CX680PE/m1534a13 and SLE66CX360PE/m1536a13 both with RSA 2048 V1.4 and specific IC Dedicated Software   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2006-03-23 – Infineon Smart Card IC (Security Controller) SLE66CX182PE/m1564-a13 with RSA 2048 V1.4 and specific IC Dedicated Software
    + Maintenance Report + +
  2. + +
    +
  3. + 2006-03-23 – Infineon Smart Card IC (Security Controller) SLE66CX480PE/m1565-a13 with RSA 2048 V1.4 and specific IC Dedicated Software
    + Maintenance Report + +
  4. + +
    +
  5. + 2006-03-23 – Infineon Smart Card IC (Security Controller) SLE66CX482PE/m1577-a13 with RSA 2048 V1.4 and specific IC Dedicated Software
    + Maintenance Report + +
  6. + +
    +
  7. + 2006-09-20 – Infineon Smart Card IC (Security Controller) SLE66CX680PE/m1534a13 and SLE66CX360PE/m1536a13 both with RSA 2048 V1.4 and specific IC Dedicated Software
    + Maintenance Report + +
  8. + +
    +
  9. + 2007-09-10 – Infineon Smart Card IC´s (Security Controller) SLE66CX680PE / 534-a13, SLE66CX360PE / m1536-a13 both with RSA2048 V1.4 and specific IC Dedicated Software
    + Maintenance Report + +
  10. + +
    +
  11. + 2007-09-10 – Infineon Smart Card IC´s (Security Controller)SLE66CX482PE / m1577-a13, SLE66CX480PE / m1565-a13 and SLE66CX182PE / m1564-a13 each with RSA 2048 V1.4 and specific IC Dedicated Software
    + Maintenance Report + +
  12. + +
    +
  13. + 2009-04-06 – Infineon Smart Card IC (Security Controller) SLE66CX680PE/m1534-a15, SLE66CX360PE/m1536-a15, SLE66CX182PE/m1564-a15, SLE66CX480PE/m1565-a15 and SLE66CX482PE/m1577-a15 with RSA 2048 V1.4 and specific IC Dedicated Software
    + Maintenance Report + +
  14. + +
+
+ + +
+
+ Infineon Technologies AG + + +   + + 2005-09-142019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Philips P5CC036V1C and P5CC009V1C with specific IC Dedicated Software Secure Smart Card Controller   +
+ +
+ + + + + + +
+
+ Philips Semiconductors GmbH + + +   + + 2005-09-122019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + IC chip for the reader / writer RC-S940 (CXD9768GG), version 4   +
+ +
+ + + + + + +
+
+ Sony Corporation + + +   + + 2005-09-012019-09-01 + + + EAL4 + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + ATMEL AT90SC19272RC rev. E Microcontroller f   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2005-12-19 – Rapport de maintenance M-2005/08
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ ATMEL Smart Card ICs + + +   + + 2005-08-252019-09-01 + + + EAL4+ +
AVA_VLA.4 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Philips P5CC036V1D and P5CC009V1D with specific IC Dedicated Software Secure Smart Card Controller   +
+ +
+ + + + + + +
+
+ Philips Semiconductors GmbH + + +   + + 2005-08-192019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Infineon Smart Card IC (Security Controller) SLE66CX642P/m1485b16 with RSA 2048 V1.30 and specific IC Dedicated Software   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2007-09-26 – Infineon Smart Card IC (Security Controller) SLE66CX642P/m1485b16 with RSA 2048 V1.30 and specific IC Dedicated Software
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Infineon Technologies AG + + +   + + 2005-08-122019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + ATMEL AT90SC12836RCT rev. E Microcontroller   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2005-09-30 – Rapport de maintenance M-2005/06
    + Maintenance Report + +
  2. + +
    +
  3. + 2013-05-15 – Rapport de maintenance ANSSI-CC-2005/20-M02
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ ATMEL Smart Card ICs + + +   + + 2005-08-092019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Infineon Smart Card IC (Security Controller) SLE66CX322P/m1484b14 and m1484f18 with RSA 2048 V1.30 and specific IC Dedicated Software   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2005-06-07 – Infineon Smart Card IC (Security Controller) SLE66CX322P/m1484b14 and m1484f18, with RSA 2048 V1.30 and specific IC Dedicated Software
    + Maintenance Report + +
  2. + +
    +
  3. + 2006-05-16 – SLE66CX322P/m1484b14 and m1484f18, with RSA 2048 V1.30 and specific IC Dedicated Software
    + Maintenance Report + +
  4. + +
    +
  5. + 2006-07-25 – SLE66CX322P/m1484b14 and m1484f18, with RSA 2048 V1.30 and specific IC Dedicated Software
    + Maintenance Report + +
  6. + +
    +
  7. + 2007-09-26 – Infineon Smart Card IC (Security Controller) SLE66CX322P/m1484b14 and m1484f18, with RSA 2048 V1.30 and specific IC Dedicated Software
    + Maintenance Report + +
  8. + +
+
+ + +
+
+ Infineon Technologies AG + + +   + + 2005-04-222019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + ST19XL18P microcontroller   +
+ +
+ + + + + + +
+
+ STMicroelectronics + + +   + + 2005-04-052019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_CCA.1 +
ADV_IMP.2 +
ADV_FSP.3 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ATMEL AT90SC7272C rev. D microcontroller   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2005-03-11 – Rapport de maintenance M-2006/02
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ ATMEL Smart Card ICs + + +   + + 2005-03-112019-09-01 + + + EAL4+ +
AVA_VLA.4 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Plate-forme Xaica-alpha version V150i_alpha7rs3_SM032 sur micro-circuit ST19XR34F   +
+ +
+ + + + + + +
+
+ NTT Data Corporation / STMicroelectronics. + + +   + + 2005-03-082019-09-01 + + + EAL4+ +
ADV_IMP.2 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ATMEL AT90SC6404RT rev. F microcontroller   +
+ +
+ + + + + + +
+
+ ATMEL Smart Card ICs + + +   + + 2005-02-142019-09-01 + + + EAL4+ +
AVA_VLA.4 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Chipkartenterminalfamilie KBPC CX / CX Top   +
+ +
+ + + + + + +
+
+ Unknown + + +   + + 2004-12-162019-09-01 + + + EAL3+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_IMP.1 +
ADO_DEL.2 +
ADV_LLD.1 +
ALC_TAT.1 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + ATMEL AT90SC6404R rev.I microcontroller   +
+ +
+ + + + + + +
+
+ ATMEL Smart Card ICs + + +   + + 2004-12-152019-09-01 + + + EAL4+ +
AVA_VLA.4 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ATMEL AT90SC9608RC rev. I microcontroller   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2008-03-10 – Maintenance Report DCSSI-2004/35-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ ATMEL Smart Card ICs + + +   + + 2004-12-152019-09-01 + + + EAL4+ +
AVA_VLA.4 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ST19WK08G microcontroller   +
+ +
+ + + + + + +
+
+ STMicroelectronics + + +   + + 2004-12-152019-09-01 + + + EAL4+ +
ALC_FLR.1 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + SmartBord xx44   +
+ +
+ + + + + + +
+
+ Cherry GmbH + + +   + + 2004-12-102019-09-01 + + + EAL3+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_IMP.1 +
ADO_DEL.2 +
ADV_LLD.1 +
ALC_TAT.1 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + ATMEL AT05SC1604R rev.K microcontroller   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2005-08-10 – Rapport de maintenance M-2005/04
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ ATMEL Smart Card ICs + + +   + + 2004-12-062019-09-01 + + + EAL4+ +
AVA_VLA.4 +
ADV_IMP.2 +
ADV_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Infineon Smart Card IC (Security Controller) SLE66C82P/m1474a15 and SLE66C42P/m1495a15   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2006-02-22 – Infineon Smart Card IC (Security Controller) SLE66C82P/m1474-a15 and
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Infineon Technologies AG + + +   + + 2004-11-162019-09-01 + + + EAL5 + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Philips P5CC036V1C and P5CC009V1C Secure Smart Card Controller   +
+ +
+ + + + + + +
+
+ Philips Semiconductors GmbH + + +   + + 2004-11-112019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + ST19XR34F Microcontroller   +
+ +
+ + + + + + +
+
+ STMicroelectronics + + +   + + 2004-10-082019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_CCA.1 +
ADV_IMP.2 +
ADV_FSP.3 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + NEC V-WAY 64 V3.0 (µPD79216000) microcontroller   +
+ +
+ + + + + + +
+
+ NEC SCAC / NEC + + +   + + 2004-09-162019-09-01 + + + EAL4+ +
ALC_DVS.2 +
ADV_IMP.2 +
AVA_VLA.4 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Philips P5CT072V0M and P5CC072VOM Secure Smart Card Controller   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2005-03-14 – Philips P5CT072V0M und P5CC072V0M Secure Smart Card Controller with updated IC Dedicated Software
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Philips Semiconductors GmbH + + +   + + 2004-09-162019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Philips P5CC036VOM Secure Smart Card Controller   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2004-03-14 – Philips P5CC036V0M, P5CD036V0M und P5CD072V0M Secure Smart Card Controller
    + Maintenance Report + +
  2. + +
    +
  3. + 2007-10-12 – NXP P5CD036V0M Secure Smart Card Controller with IC Dedicated Software
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ Philips Semiconductors GmbH + + +   + + 2004-09-082019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Philips P5CC009VOM Secure Smart Card Controller   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2005-03-14 – Philips P5CC009V0M und P5CD009V0M Secure Smart Card Controller with updated IC Dedicated Software
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Philips Semiconductors GmbH + + +   + + 2004-09-062019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + ST19WL66B microcontroller   +
+ +
+ + + + + + +
+
+ STMicroelectronics + + +   + + 2004-08-202019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_CCA.1 +
AVA_MSU.3 +
ADV_IMP.2 +
ADV_FSP.3 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ST19XL34P microcontroller   +
+ +
+ + + + + + +
+
+ STMicroelectronics + + +   + + 2004-08-202019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_CCA.1 +
ADV_IMP.2 +
ADV_FSP.3 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Samsung S3CC9FB microcontroller   +
+ +
+ + + + + + +
+
+ Samsung Electronics Co., Ltd. + + +   + + 2004-05-112019-09-01 + + + EAL4+ +
AVA_VLA.4 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Samsung S3CC9P9 microcontroller   +
+ +
+ + + + + + +
+
+ Samsung Electronics Co., Ltd. + + +   + + 2004-05-112019-09-01 + + + EAL4+ +
AVA_VLA.4 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Samsung S3CC9RB microcontroller   +
+ +
+ + + + + + +
+
+ Samsung Electronics Co., Ltd. + + +   + + 2004-05-112019-09-01 + + + EAL4+ +
AVA_VLA.4 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Tachograph Card Version 1.1 128/64 R1.1   +
+ +
+ + + + + + +
+
+ ORGA Kartensysteme GMBH + + +   + + 2004-05-012019-09-01 + + + EAL4+ +
AVA_VLA.4 +
ADV_IMP.2 +
ADO_IGS.2 +
ATE_DPT.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + TCOS Tachograph Card Version 1.0   +
+ +
+ + + + + + +
+
+ T-Systems Enterprise Services GmbH + + +   + + 2004-05-012019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_IMP.2 +
ADO_IGS.2 +
ATE_DPT.2 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + ATMEL AT90SC9608R rev. F microcontroller   +
+ +
+ + + + + + +
+
+ ATMEL Smart Card ICs + + +   + + 2004-04-022019-09-01 + + + EAL4+ +
AVA_VLA.4 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Renesas AE45C1 (HD65145C1) smartcard integrated circuit, Version 01   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2004-09-20 – Renesas AE45C1 (HD65145C1) Smartcard Integrated Circuit Version 02
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ Renesas Technology Corporation + + +   + + 2004-01-012019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + ATMEL AT90SC9608R rev. E microcontroller   +
+ +
+ + + + + + +
+
+ ATMEL Smart Card ICs + + +   + + 2003-12-182019-09-01 + + + EAL4+ +
AVA_VLA.4 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + MULTOS I4C (1-1-1) platform with patch AMD 0029v002 on component SLE66CX322P/m1484a24   +
+ +
+ + + + + + +
+
+ Keycorp Limited / Infineon Technologies AG + + +   + + 2003-12-042019-09-01 + + + EAL4+ +
AVA_VLA.4 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ATMEL AT90SC3232CS microcontroller   +
+ +
+ + + + + + +
+
+ ATMEL Smart Card ICs + + +   + + 2003-11-182019-09-01 + + + EAL4+ +
AVA_VLA.4 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Infineon Smart Card IC (Security Controller) SLE66CX322P with RSA 2048/m1484 a24/ m1484a27 and m1484b14   +
+ +
+ + + + + + +
+
+ Infineon Technologies AG + + +   + + 2003-10-012019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + ATMEL AT90SC9608RC microcontroller   +
+ +
+ + + + + + +
+
+ ATMEL Smart Card ICs + + +   + + 2003-09-222019-09-01 + + + EAL4+ +
AVA_VLA.4 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Application M/Chip 4 version 1.0.1.1 for MULTOS   +
+ +
+ + + + + + +
+
+ Mondex International Ltd + + +   + + 2003-09-082019-09-01 + + + EAL4+ +
AVA_VLA.4 +
ADV_IMP.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ICitizen Tachograph version 0.9.0 (reference M256LFCHRON_SI_A5_05_01)   +
+ +
+ + + + + + +
+
+ Schlumberger Systemes, Infineon Technologies + + +   + + 2003-09-082019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_IMP.2 +
ADO_IGS.2 +
ATE_DPT.2 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Tachograph Card Version 1.0 128/64 R1.0   +
+ +
+ + + + + + +
+
+ ORGA Kartensysteme GMBH + + +   + + 2003-08-012019-09-01 + + + EAL4+ +
AVA_VLA.4 +
ADV_IMP.2 +
ADO_IGS.2 +
ATE_DPT.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Philips Smart Card Controller P16WX064V0C   +
+ +
+ + + + + + +
+
+ Philips Semiconductors GmbH Business Unit Identification + + +   + + 2003-06-012019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + ATMEL AT05SC3208R microcontroller (AT568D6 Rev E)   +
+ +
+ + + + + + +
+
+ ATMEL Smart Card ICs + + +   + + 2003-01-012019-09-01 + + + EAL4+ +
AVA_VLA.4 +
ALC_FLR.1 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Philips Smart Card Controller P8WE6017V1J   +
+ +
+ + + + + + +
+
+ Philips Semiconductors GmbH Business Unit Identification + + +   + + 2003-01-012019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Renesas AE43C (HD65143C) Smartcard Integrated Circuit Version 01   +
+ +
+ + + + + + +
+
+ Renesas Technology Corporation + + +   + + 2003-01-012019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Hitachi AE450 (HD651450) Smartcard Integrated Circuit Version 01   +
+ +
+ + + + + + +
+
+ Hitachi, Ltd. + + +   + + 2002-12-012019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Philips Smart Card Controller P8WE5033V0F   +
+ +
+ + + + + + +
+
+ Philips Semiconductors GmbH Business Unit Identification + + +   + + 2002-08-012019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Philips Smart Card Controller P8WE5033V0G   +
+ +
+ + + + + + +
+
+ Philips Semiconductors GmbH Business Unit Identification + + +   + + 2002-08-012019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + GemXpresso Pro E 64 PK - Java Card Platform Embedded Software V3 (Core)   +
+ +
+ + + + + + +
+
+ Gemplus S.A. + + +   + + 2002-07-012019-09-01 + + + EAL4 + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + GemXpresso Pro E64 PK - Java Card Platform Embedded Software V3 (Core)   +
+ +
+ + + + + + +
+
+ Gemplus S.A. + + +   + + 2002-07-012019-09-01 + + + EAL5+ +
AVA_VLA.4 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Hitachi AE45C (HD65145C) Smartcard Integrated Circuit Version 01   +
+ +
+ + + + + + +
+
+ Hitachi, Ltd. + + +   + + 2002-05-012019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Smart Card IC (Security Controller) SLE66CX322P with RSA 2048 / m1484a23   +
+ +
+ + + + + + +
+
+ Infineon Technologies AG + + +   + + 2002-05-012019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + GemXplore Xpresso V3 Java Card Platform Embedded Software V3 (Core)   +
+ +
+ + + + + + +
+
+ Gemplus S.A. + + +   + + 2002-04-012019-09-01 + + + EAL4 + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Philips Smart Card Controller P8WE6004 V0D   +
+ +
+ + + + + + +
+
+ Philips Semiconductors GmbH Business Unit Identification + + +   + + 2002-03-012019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Sony FeliCa Contactless Smart Card RC-S860   +
+ +
+ + + + + + +
+
+ Sony Corporation + + +   + + 2002-03-012013-02-27 + + + EAL4 + + + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + GemXplore Xpresso V3 Java Card Platform Embedded Software V3 (Core)   +
+ +
+ + + + + + +
+
+ Gemplus S.A. + + +   + + 2002-02-012019-09-01 + + + EAL5+ +
AVA_VLA.4 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + ATMEL AT05SC1604R Integrated circuit (reference AT568C6 rev. H)   +
+ +
+ + + + + + +
+
+ ATMEL Smart Card ICs + + +   + + 2002-01-012019-09-01 + + + EAL4+ +
AVA_VLA.4 +
ALC_FLR.1 +
ADV_IMP.2 +
ADV_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ATMEL AT90SC19264RC microcontroller (AT568D5 rev F)   +
+ +
+ + + + + + +
+
+ ATMEL Smart Card ICs + + +   + + 2002-01-012019-09-01 + + + EAL4+ +
AVA_VLA.4 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ATMEL ATE05SC1604R Integrated circuit (AT568C6 rev. I)   +
+ +
+ + + + + + +
+
+ ATMEL Smart Card ICs + + +   + + 2002-01-012019-09-01 + + + EAL4+ +
AVA_VLA.4 +
ALC_FLR.1 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + COSMOPOLIC 2.1 V4 JavaCard Open Platform Embedded Software version 1   +
+ +
+ + + + + + +
+
+ Oberthur Card Systems + + +   + + 2002-01-012019-09-01 + + + EAL4+ +
AVA_VLA.4 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Gemplus CB-B0'/EMV : P8WE6004 V0D Component embedded by MPH021 application(reference : P8WE6004 V0D/C017D)   +
+ +
+ + + + + + +
+
+ Philips, Gemplus + + +   + + 2002-01-012019-09-01 + + + EAL4+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + JavaCard 32K CRISTAL (reference M256LCAC2)   + + + Schlumberger Systemes, Infineon Technologies + + +   + + 2002-01-012019-09-01 + + + EAL4 + + + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + JavaCard 32K CRISTAL (reference M256LCAC2)   + + + Schlumberger Systemes, Infineon Technologies + + +   + + 2002-01-012019-09-01 + + + EAL4+ +
ALC_DVS.2 +
ADV_IMP.2 +
AVA_MSU.3 +
AVA_VLA.4 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Samsung S3CC9PB microcontroller (reference S3CC9PBX01)   +
+ +
+ + + + + + +
+
+ Samsung Electronics Co., Ltd. + + +   + + 2002-01-012019-09-01 + + + EAL4+ +
AVA_VLA.4 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ST19SF02AD Component embedded by O.C.S. B0' V3 application (reference ST19SF02AD/RRR)   +
+ +
+ + + + + + +
+
+ STMicroelectronics, Oberthur Card Systems + + +   + + 2002-01-012019-09-01 + + + EAL4+ +
AVA_VLA.4 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Philips Smart Card Controller P8WE6017V1I   +
+ +
+ + + + + + +
+
+ Philips Semiconductors Hamburg Unternehmensbereichder Philips GmbH + + +   + + 2001-07-012019-09-01 + + + EAL5+ +
AVA_VLA.4 +
AVA_MSU.3 +
ADV_LLD.2 +
ALC_DVS.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + ATMEL AT05SC3208R Integrated circuit (reference AT55898 r,v. Q)   +
+ +
+ + + + + + +
+
+ ATMEL Smart Card ICs + + +   + + 2001-01-012019-09-01 + + + EAL4+ +
ALC_FLR.1 +
AMA_CAT.1 +
AMA_AMP.1 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ATMEL AT90SC6464C Integrated circuit (reference AT568A9 rev. F)   +
+ +
+ + + + + + +
+
+ ATMEL Smart Card ICs + + +   + + 2001-01-012019-09-01 + + + EAL1+ +
AVA_VLA.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + CT2000 embedded Component (reference ST16RFHD50/RSG-A)   +
+ +
+ + + + + + +
+
+ ASK + + +   + + 2001-01-012019-09-01 + + + EAL1+ +
AVA_VLA.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + M/Chip Select v2.0.5.2 Application   +
+ +
+ + + + + + +
+
+ Mondex International Ltd + + +   + + 2001-01-012019-09-01 + + + EAL1+ +
AVA_VLA.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + MODEUS electronic purse : MODEUS carrier card v1.1 (reference : ST16RF58/RSE+) and SAM TC/C v1.1 retailer security module (reference : ST19SF16FF/RVN)   +
+ +
+ + + + + + +
+
+ ASK, CP8, STMicroelectronics + + +   + + 2001-01-012019-09-01 + + + EAL1+ +
AVA_VLA.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Mondex Purse 2 version 0203 Applet for Multos 4   +
+ +
+ + + + + + +
+
+ Mondex International Ltd + + +   + + 2001-01-012019-09-01 + + + EAL4+ +
ALC_DVS.2 +
ADV_IMP.2 +
AVA_VLA.4 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + MONEO/CB hybrid card : MONEO electronic purse application and B4/B0' V3 bank application (reference ST19SF16CC/RCQ version B312/B023) and SAM retailer security module (reference ST19SF16CC/RCQ version C112)   +
+ +
+ + + + + + +
+
+ IBM, STMicroelectronics + + +   + + 2001-01-012019-09-01 + + + EAL4+ +
AVA_VLA.4 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + MONEO/CB hybrid card: MONEO electronic purse application and B4/B0' V3 bank application (reference ST19SF04AB/RCU version B312/B024) and trader SAM security Module (reference ST19SF16CC/RCQ version C112)   +
+ +
+ + + + + + +
+
+ IBM, STMicroelectronics + + +   + + 2001-01-012019-09-01 + + + EAL4+ +
AVA_VLA.4 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Oberthur B0' application v1.0.1 and GemClub v1.3 loaded on Javacard/VOP GemXpresso platform 211 V2   +
+ +
+ + + + + + +
+
+ Oberthur Card Systems, Gemplus, Trusted Logic + + +   + + 2001-01-012019-09-01 + + + EAL1+ +
AVA_VLA.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Oberthur B4-B0' V3 version 1.0 Applet for Multos 4   +
+ +
+ + + + + + +
+
+ Oberthur Card Systems + + +   + + 2001-01-012019-09-01 + + + EAL4+ + + + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Palmera Protect platform V2.0 JavaCard (SLE66CX320P/SB62 embedded component)   +
+ +
+ + + + + + +
+
+ Schlumberger Systemes, Infineon Technologies + + +   + + 2001-01-012019-09-01 + + + EAL1+ +
AVA_VLA.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ST19 platform (0.6æ technology) : ST19SF04A Integrated circuit   +
+ +
+ + + + + + +
+
+ STMicroelectronics + + +   + + 2001-01-012019-09-01 + + + EAL4+ +
AVA_VLA.4 +
ALC_FLR.1 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ST19 platform (0.6æ technology) : ST19SF16CCxyz Integrated circuit   +
+ +
+ + + + + + +
+
+ STMicroelectronics + + +   + + 2001-01-012019-09-01 + + + EAL4+ +
AVA_VLA.4 +
ALC_FLR.1 +
AMA_CAT.1 +
AMA_AMP.1 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + VOP 2.0.1 / Javacard 2.1.1 JPH33V2 Operating system version 1 installed on Integrated circuit PHILIPS P8WE5033   +
+ +
+ + + + + + +
+
+ Oberthur Card Systems + + +   + + 2001-01-012019-09-01 + + + EAL1+ +
AVA_VLA.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + GemVision SmartD/C application embedded on ST19SF08AC/RMY component   + + + Gemplus + + +   + + 2000-01-012019-09-01 + + + EAL4+ +
ALC_DVS.2 +
ADV_IMP.2 +
AVA_VLA.4 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + GemVision SmartD/C application embedded on ST19SF08AC/RMY component   + + + Gemplus + + +   + + 2000-01-012019-09-01 + + + EAL4 + + + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Javacard/VOP GemXpresso 211 platform (Philips Integrated circuit P8WE5032/MPH02)   +
+ +
+ + + + + + +
+
+ Philips Semiconductors, Gemplus + + +   + + 2000-01-012019-09-01 + + + EAL1+ +
AVA_VLA.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Javacard/VOP GemXpresso 211 platform V2 (Philips P8WE5032/MPH04 embedded component, A000000018434D Card Manager)   +
+ +
+ + + + + + +
+
+ Philips Semiconductors, Gemplus + + +   + + 2000-01-012019-09-01 + + + EAL1+ +
AVA_VLA.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Oberthur B0' applications v1.0 and Routeur v1.0 designed for Multos v4.02   +
+ +
+ + + + + + +
+
+ Oberthur Card Systems + + +   + + 2000-01-012019-09-01 + + + EAL4+ +
AVA_VLA.3 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + S3C8975 for smart cards Integrated circuit   +
+ +
+ + + + + + +
+
+ Samsung Electronics Co., Ltd. + + +   + + 2000-01-012019-09-01 + + + EAL1+ +
AVA_VLA.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ST19 platform (0.6æ technology): ST19SF08BDxyz Integrated circuit   +
+ +
+ + + + + + +
+
+ STMicroelectronics S.A. + + +   + + 2000-01-012019-09-01 + + + EAL4+ +
AVA_VLA.4 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ST19 platform (0.6æ technology). ST19SF02ADxyz Integrated circuit   +
+ +
+ + + + + + +
+
+ STMicroelectronics + + +   + + 2000-01-012019-09-01 + + + EAL4+ +
AMA_AMP.1 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ST19 platform (0.6æ technology). ST19SF04ABxyz Integrated circuit   +
+ +
+ + + + + + +
+
+ STMicroelectronics + + +   + + 2000-01-012019-09-01 + + + EAL4+ +
AVA_VLA.4 +
ALC_FLR.1 +
AMA_AMP.1 +
ADV_IMP.2 +
ALC_DVS.2 +
AMA_EVA.1 +
AMA_SIA.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ST19 platform (0.6æ technology). ST19SF08CExyz Integrated circuit   +
+ +
+ + + + + + +
+
+ STMicroelectronics + + +   + + 2000-01-012019-09-01 + + + EAL4+ +
AVA_VLA.4 +
ALC_FLR.1 +
ADV_IMP.2 +
ALC_DVS.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ST19 platform (0.6æ technology). ST19SF16FFxyz Integrated circuit   +
+ +
+ + + + + + +
+
+ STMicroelectronics + + +   + + 2000-01-012019-09-01 + + + EAL4+ +
AVA_VLA.4 +
ALC_FLR.1 +
ADV_IMP.1 +
ALC_DVS.1 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Philips Smart Card Controller P8WE5032V0B   +
+ +
+ + + + + + +
+
+ Philips Semiconductors Hamburg Unternehmensbereichder Philips GmbH + + +   + + 1999-11-012019-09-01 + + + EAL3 + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + 'Mondex Purse 2' electronic purse version 0203 component SLE66CX160S, MULTOS V4.1N operating system)   +
+ +
+ + + + + + +
+
+ Mondex International Ltd + + +   + + 1999-01-012019-09-01 + + + EAL1+ +
AVA_VLA.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + B4/B0' V2 bank application of the MONEO/CB hybrid card (reference : ST19SF16B RCL version B303/B002)   +
+ +
+ + + + + + +
+
+ Société Européenne de Monnaie Electronique + + +   + + 1999-01-012019-09-01 + + + EAL1+ +
AVA_VLA.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Javacard/VOP GemXpresso 211 platform (Philips P8WE5032/MPH02 Integrated circuit ) with Oberthur B0' v0.32 and Visa VSDC v1.08 applets   +
+ +
+ + + + + + +
+
+ Philips Semiconductors, Gemplus, Oberthur Card Systems, Visa International, Groupement Carte Bleue + + +   + + 1999-01-012019-09-01 + + + EAL1+ +
AVA_VLA.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + MONEO electronic wallet card carrier (ST19SF16B RCL v. B303) and PSAM retailer security module (ST19SF16B RCL v. C103)   +
+ +
+ + + + + + +
+
+ Société Européenne de Monnaie Electronique + + +   + + 1999-01-012019-09-01 + + + EAL1+ +
AVA_VLA.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ProductVendorProduct
Certificate
Date Certificate
Issued
Certificate
Validity
Expiration
Date
(Archived)
ComplianceScheme
+ This list was generated on Friday, April 16, 2021, at 10:31 AM +
+ Key Management Systems – 46 Certified Products +
+ + ELECTRONIC CERTIFICATE MANAGEMENT INFRASTRUCTURE(ESYA) v2.0   + + + TÜBİTAK BİLGEM UEKAE + + +   + + 2015-09-082018-09-08 + + + EAL4+ +
ALC_FLR.2 +
+ + TR – TSE (Turkish Standards Institution) Common Criteria Certification Scheme
TR
+
+ + PKID ECC Generator v1.1   +
+ +
+ + + + + + +
+
+ WannaStation.com (M) Sdn Bhd + + +   + + 2013-11-202019-09-01 + + + EAL2 + + + MY – CyberSecurity Malaysia
MY
+
+ + Keyper Hardware Security Module (HSM) v2.0: a) Enterprise (Hardware: 9720, Software: 011126) b) Professional (Hardware: 9720, Software: 010405)   +
+ +
+ + + + + + +
+
+ AEP Networks Ltd. + + +   + + 2013-01-042019-09-01 + + + EAL4+ +
AVA_VAN.5 +
+ + MY – CyberSecurity Malaysia
MY
+
+ + MetaPKI   +
+ +
+ + + + + + +
+
+ BULL S.A. + + +   + + 2012-12-062019-09-01 + + + EAL3+ +
ALC_FLR.3 +
AVA_VAN.3 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + EJBCA, version 5.0.4   + + + PrimeKey Solutions AB + + +   + + 2012-10-042019-09-01 + + + EAL4+ +
ALC_FLR.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + CESeCore, version 1.1.2   +
+ +
+ + + + + + +
+
+ CESeCore Consortium + + +   + + 2012-06-142019-09-01 + + + EAL4+ +
ALC_FLR.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Red Hat Certificate System 8   + + + Red Hat, Inc. + + +   + + 2012-03-082014-11-01 + + + EAL4+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Luna® CA4 System Version 2.6   +
+ +
+ + + + + + +
+
+ SafeNet Inc. + + +   + + 2012-02-232017-05-15 + + + EAL4+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Entrust Authority Security Manager and Security Manager Administration v8.1 SP1   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2014-05-15 – Entrust Authority Security Manager and Entrust Authority Security Manager Administration with April 2014 Cumulative Patch 185298 (May 2014)
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ Entrust, Inc. + + +   + + 2012-02-062017-05-15 + + + EAL4+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + TrustyKey CA   +
+ +
+ + + + + + +
+
+ C.S. + + +   + + 2011-07-132019-09-01 + + + EAL3+ +
ALC_FLR.3 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + TrustyTime v2.1.5   +
+ +
+ + + + + + +
+
+ C.S. + + +   + + 2011-06-232019-09-01 + + + EAL3+ +
ALC_FLR.3 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Gradkell DBSign for HTML Applications Version 4.0   +
+ +
+ + + + + + +
+
+ Gradkell Systems, Inc. + + +   + + 2011-03-092014-11-01 + + + EAL2+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + TrustedX v3.0.10S1R1_T   +
+ +
+ + + + + + +
+
+ Safelayer Secure Communications, S.A. + + +   + + 2010-10-012019-09-01 + + + EAL4+ +
ALC_FLR.2 +
+ + ES – Organismo de Certificación de la Seguridad de las Tecnologías de la Información
ES
+
+ + SEQUOIA v2 made up with K.Registration® v2.6.6, Trust.Center® v2.3.4 and KeySeed® v2.6.2 components   +
+ +
+ + + + + + +
+
+ Keynectis + + +   + + 2010-09-232019-09-01 + + + EAL4+ +
ALC_FLR.3 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + E-CERTIFICATE MANAGEMENT INFRASTRUCTURE (ESYA) V1   +
+ +
+ + + + + + +
+
+ TÜBİTAK BİLGEM UEKAE + + +   + + 2010-03-012017-03-27 + + + EAL4+ +
ALC_FLR.2 +
+ + TR – TSE (Turkish Standards Institution) Common Criteria Certification Scheme
TR
+
+ + OpenTrust PKI software, version 4.3.4   +
+ +
+ + + + + + +
+
+ OpenTrust SA + + +   + + 2009-07-072019-09-01 + + + EAL3+ +
ALC_CMS.4 +
ALC_FLR.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + IBM Tivoli Directory Server Version 6.2   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2009-03-162019-09-01 + + + EAL4+ +
ALC_FLR.1 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + BigFix Enterprise Suite v7.1.1.315   +
+ +
+ + + + + + +
+
+ BigFix, Inc. + + +   + + 2009-01-162012-07-20 + + + EAL3 + + + US – National Information Assurance Partnership
US
+
+ + EnCase Enterprise Version 6.8   +
+ +
+ + + + + + +
+
+ Guidance Software, Inc. + + +   + + 2008-11-202012-07-20 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + Fidelis Extrusion Prevention System 5.0.3   +
+ +
+ + + + + + +
+
+ Fidelis Security Systems, Inc. + + +   + + 2008-10-292012-07-20 + + + EAL2+ +
ALC_FLR.3 +
+ + US – National Information Assurance Partnership
US
+
+ + SafeNet DataSecure Appliance i416, i426, and i116 Release 4.5.2 (formerly Ingrian Networks DataSecure Appliance i416, i426, and i116 Release 4.5.2)   +
+ +
+ + + + + + +
+
+ SafeNet Inc. + + +   + + 2008-05-202012-07-20 + + + EAL2+ +
ALC_FLR.1 +
+ + US – National Information Assurance Partnership
US
+
+ + IBM Tivoli Directory Server version 6.1   +
+ +
+ + + + + + +
+
+ IBM Informationssysteme Deutschland GmbH + + +   + + 2008-04-222019-09-01 + + + EAL4+ +
ALC_FLR.1 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + NetIQ Secure Configuration Manager Version 5.6 and Solaris executable of the NetIQ Security Agent for Unix Version 5.6   +
+ +
+ + + + + + +
+
+ NetIQ, Incorporated + + +   + + 2008-03-312012-07-20 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + Public Key Infrastructure Framework Version 2.1   +
+ +
+ + + + + + +
+
+ United States Marine Corps + + +   + + 2008-01-082012-07-20 + + + EAL4+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Public Key Infrastructure Framework (PKIF) Version 1.2   +
+ +
+ + + + + + +
+
+ United States Marine Corps + + +   + + 2006-08-082012-09-07 + + + EAL4+ +
ALC_FLR.1 +
+ + US – National Information Assurance Partnership
US
+
+ + Tumbleweed Valicert Validation Authority Version 4.8, Hot Fix 3 (build 388)   +
+ +
+ + + + + + +
+
+ Tumbleweed Communications Corp. + + +   + + 2006-06-082012-09-07 + + + EAL3 + + + US – National Information Assurance Partnership
US
+
+ + IBM Tivoli Directory Server Version 6.0 Fix Pack 1, Interim Fix 5   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2006-03-022019-09-01 + + + EAL4+ +
ALC_FLR.1 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + KEYONE 3.0   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2006-12-18 – KeyOne 3.0 04S2R1 TWS
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ Safelayer Secure Communications, S.A. + + +   + + 2006-01-232019-09-01 + + + EAL4+ +
ALC_FLR.2 +
+ + ES – Organismo de Certificación de la Seguridad de las Tecnologías de la Información
ES
+
+ + KEYONE 2.1   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2007-02-27 – KEYONE 2.1.04S1R2_B25
    + Maintenance Report + + Maintenance ST + +
  2. + +
    +
  3. + 2009-07-08 – KEYONE 2.1.04S1R2_TN_A06
    + Maintenance Report + + Maintenance ST + +
  4. + +
+
+ + +
+
+ Safelayer Secure Communications, S.A. + + +   + + 2005-06-222019-09-01 + + + EAL2 + + + ES – Organismo de Certificación de la Seguridad de las Tecnologías de la Información
ES
+
+ + Entrust Authority Security Manager 7.0   +
+ +
+ + + + + + +
+
+ Entrust, Inc. + + +   + + 2004-11-152015-09-29 + + + EAL4+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + CoreStreet Real Time Credential Validation Authority Version 4.0   +
+ +
+ + + + + + +
+
+ CoreStreet + + +   + + 2004-09-012012-09-06 + + + EAL3+ +
ALC_FLR.1 +
+ + US – National Information Assurance Partnership
US
+
+ + IBM Directory Server 5.2   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2004-03-012019-09-01 + + + EAL3 + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Alacris OCSP Server Professional v3.0.0   +
+ +
+ + + + + + +
+
+ Alacris Corporation + + +   + + 2004-02-012015-09-28 + + + EAL2 + + + CA – Canadian Common Criteria Scheme
CA
+
+ + Alacris OCSP Client Professional v4.0.0   +
+ +
+ + + + + + +
+
+ Alacris Corporation + + +   + + 2004-01-012015-09-28 + + + EAL2 + + + CA – Canadian Common Criteria Scheme
CA
+
+ + IBM Directory Server 5.1   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2003-08-012019-09-01 + + + EAL2 + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Timestamp Server Version 2.0.2 Patch 1   +
+ +
+ + + + + + +
+
+ Baltimore Technologies Pty Limited + + +   + + 2003-05-012019-09-01 + + + EAL3 + + + AU – Australasian Certification Authority (ACA)
AU
+
+ + TrustedNet Connect, V 2.0   +
+ +
+ + + + + + +
+
+ SecureNet Limited + + +   + + 2003-05-012019-09-01 + + + EAL4 + + + AU – Australasian Certification Authority (ACA)
AU
+
+ + Netscape Certificate Management System 6.1 Service Pack 1   +
+ +
+ + + + + + +
+
+ America Online, Inc. + + +   + + 2003-03-012012-09-07 + + + EAL4+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + RSA Keon CA System, Version 6.5   +
+ +
+ + + + + + +
+
+ RSA Keon CA System + + +   + + 2002-12-012012-09-07 + + + EAL4+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Luna® CA3 v3.97   +
+ +
+ + + + + + +
+
+ SafeNet Inc. + + +   + + 2002-11-012015-09-29 + + + EAL4+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Passport Certificate Server® v 4.1.1   +
+ +
+ + + + + + +
+
+ Diversinet + + +   + + 2002-05-012015-09-29 + + + EAL2+ + + + CA – Canadian Common Criteria Scheme
CA
+
+ + Entrust/Authority from Entrust/PKI 5.1   +
+ +
+ + + + + + +
+
+ Entrust, Inc. + + +   + + 2001-02-012013-02-27 + + + EAL3 + + + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + Entrust/RA from Entrust/PKI 5.1   +
+ +
+ + + + + + +
+
+ Entrust, Inc. + + +   + + 2001-02-012013-02-27 + + + EAL3 + + + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + Entrust/RA from Entrust/PKI 5.0   +
+ +
+ + + + + + +
+
+ Entrust, Inc. + + +   + + 2000-03-062013-02-27 + + + EAL3 + + + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + Entrust Authority from Entrust/PKI 5.0   +
+ +
+ + + + + + +
+
+ Entrust, Inc. + + +   + + 2000-03-012013-02-27 + + + EAL3 + + + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + Entrust/Admin & Entrust/Authority from Entrust/PKI 4.0a   +
+ +
+ + + + + + +
+
+ Entrust, Inc. + + +   + + 1999-03-012013-02-27 + + + EAL3 + + + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ProductVendorProduct
Certificate
Date Certificate
Issued
Certificate
Validity
Expiration
Date
(Archived)
ComplianceScheme
+ This list was generated on Friday, April 16, 2021, at 10:31 AM +
+ Mobility – 42 Certified Products +
+ + Apple iOS 12   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2019-04-22 – Apple iPad and iPhone Mobile Devices with iOS 12
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ Apple Inc. + + + CCRA Certificate + + 2019-03-142021-03-14 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + MobileIron Platform version 10   + + + MobileIron + + + CCRA Certificate + + 2019-02-222021-02-22 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Samsung Galaxy Devices with Android 8 & 8.1   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2019-09-19 – SAMSUNG GALAXY DEVICES ON ANDROID 8.0 and 8.1
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Samsung Electronics Co., Ltd. + + + CCRA Certificate + + 2018-12-202020-12-20 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + LG Electronics Inc. LG Android 8 devices (G7 ThinQ, V35 ThinQ, V30, G6)   + + + LG Electronics, Inc. + + + CCRA Certificate + + 2018-12-142020-12-14 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Samsung Galaxy Devices on Android 8   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2018-10-18 – Samsung Galaxy S9 Tactical Edition
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Samsung Electronics Co., Ltd. + + + CCRA Certificate + + 2018-05-292020-05-29 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Apple iOS 11   + + + Apple Computer, Inc. + + + CCRA Certificate + + 2018-03-302020-03-30 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Samsung Galaxy Devices on Android 7.1   + + + Samsung Electronics Co., Ltd. + + + CCRA Certificate + + 2017-11-152019-11-15 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Samsung Galaxy VPN Client on Android 7.1   + + + Samsung Electronics Co., Ltd. + + + CCRA Certificate + + 2017-11-152019-11-15 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + LG Electronics Inc. V30 Smartphone   + + + LG Electronics, Inc. + + + CCRA Certificate + + 2017-11-032019-11-03 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + KeyW BlackBerry Suite B Data at Rest, Version 1.2.2.1   + + + KeyW Corporation + + + CCRA Certificate + + 2017-08-082019-08-08 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Apple iOS 10.2 on iPhone & iPad Devices   + + + Apple Inc. + + + CCRA Certificate + + 2017-07-272019-07-07 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Apple IOS 10.2 VPN Client on iPhone and iPad   + + + Apple Computer, Inc. + + + CCRA Certificate + + 2017-07-272019-07-27 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Samsung Galaxy VPN Client on Android 7   + + + Samsung Electronics Co., Ltd. + + + CCRA Certificate + + 2017-06-212019-06-21 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Samsung Galaxy Devices with Android 7   + + + Samsung Electronics Co., Ltd. + + + CCRA Certificate + + 2017-06-152019-06-15 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Avast Workspace v3.4   + + + Avast Software, Inc. + + + CCRA Certificate + + 2017-06-012019-06-01 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Forcepoint Trusted Access Mobile Client v1.1   + + + Forcepoint LLC + + + CCRA Certificate + + 2017-06-012019-06-01 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + HTC A9, Secured by D4   + + + Cog Systems + + + CCRA Certificate + + 2017-05-252019-05-25 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + LG Electronics, Inc. G6 Smartphone   + + + LG Electronics, Inc. + + + CCRA Certificate + + 2017-05-022019-05-02 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Microsoft Windows 10 and Windows 10 Mobile (Anniversary Update) with Microsoft Surface Book, Surface Pro 4, Lumia 950, 950 XL, 650, HP Elite x3, and Dell Latitude 5580   + + + Microsoft Corporation + + + CCRA Certificate + + 2017-04-122019-04-12 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Getac, Inc. MX50   + + + Getac, Inc. + + + CCRA Certificate + + 2017-04-062019-04-06 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + VMware AirWatch Mobile Device Management v9.1   + + + AirWatch, LLC + + + CCRA Certificate + + 2017-02-242019-02-24 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Kyocera DuraForce PRO   + + + Kyocera Corporation + + + CCRA Certificate + + 2017-01-052019-01-05 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Samsung SDS EMM v1.5.1   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2018-08-31 – Samsung SDS EMM v1.5.1 with Patch for iOS11
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Samsung SDS Co., Ltd. + + + CCRA Certificate + + 2016-12-292018-12-29 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + LG Electronics, Inc. V20 and G5 Smartphones   + + + LG Electronics, Inc. + + + CCRA Certificate + + 2016-11-102018-11-10 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Apple iOS 9.3.2 with MDM Agent   + + + Apple Inc. + + + CCRA Certificate + + 2016-07-182018-01-28 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Microsoft Windows 10 with Surface Book   + + + Microsoft Corporation + + + CCRA Certificate + + 2016-06-232018-06-23 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + MobileIron Core / Mobile@Work for Android   + + + MobileIron + + + CCRA Certificate + + 2016-06-142018-06-14 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Samsung Galaxy Devices with Android 6   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2016-11-03 – Maintenance Update of Samsung Electronics Co., Ltd. Samsung Galaxy Devices on Android 6 (MDFPP20)
    + Maintenance Report + + Maintenance ST + +
  2. + +
    +
  3. + 2017-04-11 – Samsung Galaxy Devices with Android 6 Update
    + Maintenance Report + + Maintenance ST + +
  4. + +
+
+ + +
+
+ Samsung Electronics Co., Ltd. + + + CCRA Certificate + + 2016-06-092018-06-09 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Samsung Galaxy S7 Devices on Android 6   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2017-04-11 – Samsung Galaxy S7 on Android 6 Update
    + Maintenance Report + +
  2. + +
    +
  3. + 2017-06-27 – Samsung Galaxy S7 Classified
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ Samsung Electronics Co., Ltd. + + + CCRA Certificate + + 2016-05-252018-05-25 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Microsoft Windows 10 Mobile with Lumia 950, 950 XL, 550, 635, and Windows 10 with Surface Pro 4   + + + Microsoft Corporation + + + CCRA Certificate + + 2016-05-122018-05-12 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + LG Electronics, Inc. G5, V10, and G4 Smartphones   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2017-04-21 – LG Electronics, Inc. G5, V10, and G4 Smartphones Update
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ LG Electronics, Inc. + + + CCRA Certificate + + 2016-04-142018-04-14 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Microsoft Windows 10   + + + Microsoft Corporation + + + CCRA Certificate + + 2016-01-292018-01-29 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Apple iOS 9   + + + Apple Inc. + + + CCRA Certificate + + 2016-01-282018-01-28 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Samsung Galaxy Note 5 & Tab S2   + + + Samsung Electronics Co., Ltd. + + + CCRA Certificate + + 2015-10-132017-10-13 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Samsung Galaxy Note 5 and Tab S2   + + + Samsung Electronics Co., Ltd. + + + CCRA Certificate + + 2015-10-132017-10-13 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Windows 8.1 with Surface 3 and Windows Phone 8.1 with Lumia 635 and Lumia 830   + + + Microsoft Corporation + + +   + + 2015-08-272017-08-27 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Samsung Z VPN on Tizen Version 2.3   + + + Samsung Electronics Co., Ltd. + + +   + + 2015-08-212017-08-21 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Samsung Z with Tizen Version 2.3   + + + Samsung Electronics Co., Ltd. + + +   + + 2015-08-212017-08-21 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + LG Electronics Inc. G4 Smartphone   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2017-04-21 – LG Electronics Inc. G4 Smartphone Update
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ LG Electronics, Inc. + + +   + + 2015-07-012017-07-01 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Samsung SDS CellWe EMM   + + + Samsung SDS Co., Ltd. + + +   + + 2015-05-082017-05-08 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + LG Electronic, Inc. G3 Smartphone Lollipop OS   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2015-06-30 – LG Electronics, Inc. G3 Smartphone Lollipop OS
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ LG Electronics, Inc. + + +   + + 2015-03-302017-06-30 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + LG Electronics, Inc. G3 Smartphone   + + + LG Electronics, Inc. + + +   + + 2014-11-142016-11-14 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ProductVendorProduct
Certificate
Date Certificate
Issued
Certificate
Validity
Expiration
Date
(Archived)
ComplianceScheme
+ This list was generated on Friday, April 16, 2021, at 10:31 AM +
+ Multi-Function Devices – 252 Certified Products +
+ + Xerox AltaLink C8030, C8035, C8045, C8055, C8070   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2018-06-06 – Xerox® AltaLink™ C8030 / C8035 / C8045 / C8055 / C8070 (HCDPP)
    + Maintenance Report + +
  2. + +
    +
  3. + 2019-12-09 – Xerox® AltaLink™ C8030 / C8035 / C8045 / C8055 / C8070 (HCDPP)
    + Maintenance Report + + Maintenance ST + +
  4. + +
+
+ + +
+
+ Xerox Corporation + + + CCRA Certificate + + 2017-11-202019-11-20 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Xerox® AltaLink™ B8045, B8055, B8065, B8075, B8090   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2018-06-06 – Xerox® AltaLink™ B8045 / B8055 / B8065 / B8075 B8090 (HCDPP)
    + Maintenance Report + +
  2. + +
    +
  3. + 2019-09-11 – Xerox® AltaLink™ B8045 / B8055 / B8065 / B8075 / B8090
    + Maintenance Report + + Maintenance ST + +
  4. + +
+
+ + +
+
+ Xerox Corporation + + + CCRA Certificate + + 2017-11-202019-11-20 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Pro 8100/8110/8120 (Ricoh/Savin/Lanier/nashuatec/Rex-Rotary/Gestetner/infotec) E-1.00   + + + Ricoh Company, Ltd. + + +   + + 2016-08-102017-02-13 + + + EAL2+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + RICOH MP C306Z J-1.01   + + + Ricoh Company, Ltd. + + +   + + 2016-04-252017-02-13 + + + EAL2+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Fuji Xerox ApeosPort-V 3065/3060/2060 DocuCentre-V 3065/3060/2060 models with Hard Disk, Data Security, Scan, Print, and Fax Controller ROM Ver. 1.0.13, FAX ROM Ver. 2.0.8   + + + Fuji Xerox Co., Ltd. + + +   + + 2016-03-312021-03-31 + + + EAL2+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Fuji Xerox DocuCentre-V C2265/C2263 models with Hard Disk, Data Security, Scan, and Fax Controller ROM Ver. 1.0.13, FAX ROM Ver. 2.0.8   + + + Fuji Xerox Co., Ltd. + + +   + + 2016-03-312021-03-31 + + + EAL2+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + RICOH MP 305+ J-1.00   + + + Ricoh Company, Ltd. + + +   + + 2016-03-312021-03-31 + + + EAL2+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + RICOH SP 4510,RICOH MP 401 J-1.02   + + + Ricoh Company, Ltd. + + +   + + 2016-03-312021-03-31 + + + EAL2+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Xerox WorkCentre 5755   +
+ +
+ + + + + + +
+
+ Xerox Corporation + + + CCRA Certificate + + 2016-03-112021-03-11 + + + EAL2+ +
ALC_FLR.3 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Canon imageRUNNER ADVANCE C350/C250 Series 2600.1 model 1.0   + + + Canon Inc. + + +   + + 2016-02-252021-02-25 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Samsung Multifunction MultiXpress X3220, X3280, K3250, K3300 Series   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2016-07-22 – Samsung Multifunction MultiXpress X3220, X3280, K3250, K3300 Series
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ HP Inc. + + +   + + 2016-01-212021-01-21 + + + EAL2+ +
ALC_FLR.2 +
+ + KR – IT Security Certification Center(ITSCC)
KR
+
+ + Canon imagePRESS C800/C700/C700L/C600 2600.1 model 1.0   + + + Canon Inc. + + +   + + 2015-12-212020-12-21 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Canon imageRUNNER ADVANCE C3300 Series 2600.1 model 1.0   + + + Canon Inc. + + +   + + 2015-12-212020-12-21 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + MP 2554SP/3054SP/3554SP/4054SP/ 5054SP/6054SP (Ricoh/Savin/Lanier/nashuatec/Rex-Rotary/Gestetner/infotec), +MP 2554SPG/3054SPG/3554SPG/4054SPG/ 5054SPG/6054SPG (Ricoh/Savin/Lanier), +MP 4054ASP/5054ASP (Ricoh/nashuatec/Rex-Rotary/Gestetner/infotec), +MP 2554SPJ/3054SPJ/3554SPJ (Ricoh) +E-1.02   + + + Ricoh Company, Ltd. + + +   + + 2015-10-292020-10-29 + + + EAL2+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + MP C2003SP/C2503SP (Ricoh/Savin/Lanier/Gestetner), +MP C2003SPG/C2503SPG (Ricoh/Savin/Lanier), +MP C2003SPJ/C2503SPJ (Ricoh) +ENGAK-1.03   + + + Ricoh Company, Ltd. + + +   + + 2015-10-292020-10-29 + + + EAL2+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Samsung Multifunction ProXpress C2680, M4080 Series   + + + HP Inc. + + +   + + 2015-09-092020-09-09 + + + EAL2+ +
ALC_FLR.2 +
+ + KR – IT Security Certification Center(ITSCC)
KR
+
+ + MP C2003/C2003G/C2503/C2503G (Ricoh/Savin/Lanier) +ENG-1.01   + + + Ricoh Company, Ltd. + + +   + + 2015-06-292020-07-01 + + + EAL2+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Canon imageRUNNER ADVANCE 4200 Series 2600.1 model +1.2   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2016-01-15 – Canon imageRUNNER ADVANCE 4900KB/4200 Series 2600.1 model 1.3
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ Canon Inc. + + +   + + 2015-05-272020-06-01 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + MP 401 (Ricoh/Savin/Lanier/nashuatec/Rex-Rotary/Gestetner/infotec), +SP 4510 (Ricoh/Savin/Lanier/nashuatec/Rex-Rotary/Gestetner) +E-1.02   + + + Ricoh Company, Ltd. + + +   + + 2015-05-192020-06-01 + + + EAL2+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Xerox WorkCentre 4265   +
+ +
+ + + + + + +
+
+ Xerox Corporation + + + CCRA Certificate + + 2015-05-152020-05-15 + + + EAL2+ +
ALC_FLR.3 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Xerox WorkCentre 3655 and WorkCentre 6655   +
+ +
+ + + + + + +
+
+ Xerox Corporation + + + CCRA Certificate + + 2015-04-302020-04-30 + + + EAL2 +
ALC_FLR.3 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Samsung Multifunction MultiXpress K7400, K7500, K7600, K7650, K703 Series   + + + HP Inc. + + +   + + 2015-04-172020-04-17 + + + EAL2+ +
ALC_FLR.2 +
+ + KR – IT Security Certification Center(ITSCC)
KR
+
+ + Samsung Multifunction MultiXpress X7400, X7500, X7600, X703 Series   + + + HP Inc. + + +   + + 2015-04-172020-04-17 + + + EAL2+ +
ALC_FLR.2 +
+ + KR – IT Security Certification Center(ITSCC)
KR
+
+ + Xerox WorkCentre 5945/5955   +
+ +
+ + + + + + +
+
+ Xerox Corporation + + + CCRA Certificate + + 2015-04-082020-04-08 + + + EAL2+ +
ALC_FLR.3 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + MP 2554/3054/3554/4054/5054/6054 (Ricoh/Lanier/nashuatec/Rex-Rotary/Gestetner/infotec) EEA-1.00   + + + Ricoh Company, Ltd. + + +   + + 2015-03-312020-04-02 + + + EAL2+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + MP C401(Ricoh/nashuatec/Rex-Rotary/Gestetner/infotec) EE-1.00   + + + Ricoh Company, Ltd. + + +   + + 2015-03-312020-04-02 + + + EAL2+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + MP C2003/C2503 (Ricoh/Lanier/nashuatec/Rex-Rotary/Gestetner/infotec) EEA-1.00   + + + Ricoh Company, Ltd. + + +   + + 2015-02-272020-03-03 + + + EAL2+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + TASKalfa 6501i, TASKalfa 8001i, TASKalfa 6501iG, TASKalfa 8001iG, CS 6501i, CS 8001i, 6555i, 8055i with Data Security Kit (E), FAX System (W) System:2N7_2000.C02.201 Panel:2N4_7000.C02.010 FAX:3N6_5100.B04.001   + + + KYOCERA Document Solutions Inc. + + +   + + 2015-02-132020-03-03 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + TASKalfa 6551ci, TASKalfa 7551ci, TASKalfa 6551ciG, TASKalfa 7551ciG, CS 6551ci, CS 7551ci, 6505ci, 7505ci with Data Security Kit (E), FAX System (W) System:2N2_2000.C02.201 Panel:2N4_7000.C02.010 FAX:3N6_5100.B04.001   + + + KYOCERA Document Solutions Inc. + + +   + + 2015-02-132020-03-03 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + MP C401/C401SR(Ricoh/Savin/Lanier) EN-1.00   + + + Ricoh Company, Ltd. + + +   + + 2015-01-282020-02-10 + + + EAL2+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Samsung Multifunction MultiXpress M4370, M5370, M5270 Series   + + + HP Inc. + + +   + + 2015-01-202020-01-20 + + + EAL2+ +
ALC_FLR.1 +
ALC_FLR.2 +
+ + KR – IT Security Certification Center(ITSCC)
KR
+
+ + Samsung Multifunction ProXpress M4580, M4583 Series   + + + HP Inc. + + +   + + 2015-01-202020-01-20 + + + EAL2+ +
ALC_FLR.2 +
+ + KR – IT Security Certification Center(ITSCC)
KR
+
+ + Xerox WorkCentre 7970   +
+ +
+ + + + + + +
+
+ Xerox Corporation + + + CCRA Certificate + + 2015-01-092020-01-09 + + + EAL2+ +
ALC_FLR.3 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Fuji Xerox ApeosPort-IV 3065/3060/2060 for Asia Pacific Controller ROM Ver. 1.140.21, IOT ROM Ver. 40.2.0, ADF ROM Ver. 7.9.0   + + + Fuji Xerox Co., Ltd. + + +   + + 2014-12-252020-01-06 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Xerox Color C60/C70 Controller ROM Ver. 1.200.17, IOT ROM Ver. 67.20.0, ADF ROM Ver. 13.19.3   + + + Fuji Xerox Co., Ltd. + + +   + + 2014-12-252020-01-06 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + bizhub 554e / bizhub 454e / bizhub 364e / +bizhub 284e / bizhub 224e / ineo 554e / +ineo 454e / ineo 364e / ineo 284e / ineo 224e +G00-09   + + + KONICA MINOLTA, INC. + + +   + + 2014-12-242020-01-06 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + bizhub 754e/bizhub 654e/ineo 754e/ineo 654e G00-60   + + + KONICA MINOLTA, INC. + + +   + + 2014-12-242020-01-06 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + bizhub C754e / bizhub C654e / ineo+ 754e / ineo+ 654e G00-80   + + + KONICA MINOLTA, INC. + + +   + + 2014-12-242020-01-06 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + MP 2554SP/2554SPG/3054SP/3054SPG/3554SP/ 3554SPG/4054SP/4054SPG/5054SP/5054SPG/ 6054SP/6054SPG(Ricoh/Savin/Lanier) ENG-1.00   + + + Ricoh Company, Ltd. + + +   + + 2014-12-242020-01-06 + + + EAL2+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + RICOH MP 6054SP/6054SPF/5054SP/ 5054SPF/4054SP/4054SPF/3554SP/ 3554SPF/2554SP/2554SPF J-1.00   + + + Ricoh Company, Ltd. + + +   + + 2014-12-242017-01-24 + + + EAL2+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Xerox WorkCentre 5845, 5855, 5865, 5875, 5890, 7220, 7225, 7830, 7835, 7845, 7855 & ColorQube 8700, 8900, 9301, 9302, 9303 Xerox ConnectKey 1.5 Technology   +
+ +
+ + + + + + +
+
+ Xerox Corporation + + + CCRA Certificate + + 2014-12-102019-12-10 + + + EAL2+ +
ALC_FLR.3 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Canon imageRUNNER ADVANCE 500/400 Series 2600.1 model 1.3   + + + Canon Inc. + + +   + + 2014-11-272019-12-02 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Canon imageRUNNER ADVANCE C5200 Series 2600.1 model 1.3   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2015-12-22 – Canon imageRUNNER ADVANCE C5900KB/C5200 Series 2600.1 model 1.4
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ Canon Inc. + + +   + + 2014-11-272019-12-02 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + RICOH MP C2003/C2003G/C2503/C2503G (Ricoh/Savin/Lanier) ENG-1.00   + + + Ricoh Company, Ltd. + + +   + + 2014-11-272019-12-02 + + + EAL2+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Samsung Multifunction MultiXpress X4220, X4250, X4300, X401, K4250, K4300, K4350, K401 Series   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2016-07-22 – Samsung Multifunction MultiXpress X4220, X4250, X4300, X401, K4250, K4300, K4350, K401 Series
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ HP Inc. + + +   + + 2014-11-132019-11-13 + + + EAL2+ +
ALC_FLR.2 +
+ + KR – IT Security Certification Center(ITSCC)
KR
+
+ + TASKalfa 2551ci, TASKalfa 2551ciG, CS 2551ci, 2500ci with Data Security Kit (E), FAX System (W) System:2NP_2000.C01.201 Panel:2NP_7000.C01.200 FAX:3N6_5100.B04.001   + + + KYOCERA Document Solutions Inc. + + +   + + 2014-10-302019-11-01 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + TASKalfa 3010i, TASKalfa 3510i, TASKalfa 3010iG, TASKalfa 3510iG, CS 3010i, CS 3510i, 3060i, 3560i with Data Security Kit (E), FAX System (W) System:2NL_2000.C01.201 Panel:2NP_7000.C01.200 FAX:3N6_5100.B04.001   + + + KYOCERA Document Solutions Inc. + + +   + + 2014-10-302019-11-01 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + TASKalfa 3501i, TASKalfa 4501i, TASKalfa 5501i, TASKalfa 3501iG, TASKalfa 4501iG, TASKalfa 5501iG, CS 3501i, CS 4501i, CS 5501i, 3555i, 4555i, 5555i with Data Security Kit (E), FAX System (W) System:2N9_2000.C02.201 Panel:2N4_7000.C02.010 FAX:3N6_5100.B04.001   + + + KYOCERA Document Solutions Inc. + + +   + + 2014-10-302019-11-01 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + bizhub C554e/bizhub C454e/bizhub C364e/bizhub C284e/bizhub C224e/ineo+ 554e/ineo+ 454e/ineo+ 364e/ineo+ 284e/ineo+ 224e G00-19   + + + KONICA MINOLTA, INC. + + +   + + 2014-10-232019-11-01 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + TASKalfa 3051ci, TASKalfa 3551ci, TASKalfa 4551ci, TASKalfa 5551ci, TASKalfa 3051ciG, TASKalfa 3551ciG, TASKalfa 4551ciG, TASKalfa 5551ciG, CS 3051ci, CS 3551ci, CS 4551ci, CS 5551ci, 3005ci, 3505ci, 4505ci, 5505ci with Data Security Kit (E), FAX System (W) System:2N4_2000.C02.013 Panel:2N4_7000.C02.010 FAX:3N6_5100.B04.001   + + + KYOCERA Document Solutions Inc. + + +   + + 2014-10-232019-11-01 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Dell C5765dn Color Laser Multifunction Printer Version: Controller ROM Ver. 2.205.1 IOT ROM Ver. 3.0.2 ADF ROM Ver. 11.1.0 Fax ROM Ver. 100.19.0   +
+ +
+ + + + + + +
+
+ Dell, Inc. + + +   + + 2014-09-252019-10-03 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Dell C7765dn Color Multifunction Printer Version: Controller ROM Ver. 2.205.5 IOT ROM Ver. 41.1.0 ADF ROM Ver. 12.5.0   +
+ +
+ + + + + + +
+
+ Dell, Inc. + + +   + + 2014-09-252019-10-03 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + RICOH MP C2503/C1803 Version:J-1.00   + + + Ricoh Company, Ltd. + + +   + + 2014-08-282019-09-02 + + + EAL2+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + RICOH MP C305 Version: J-1.00   + + + Ricoh Company, Ltd. + + +   + + 2014-06-302019-07-01 + + + EAL2+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + HP LaserJet MFP M525, M725, M830, Color LaserJet MFP M575, M775 och M880   + + + HP Inc. + + + CCRA Certificate + + 2014-06-112019-09-01 + + + EAL2 +
ALC_FLR.2 +
+ + SE – Swedish Certification Body for IT Security FMV/CSEC
SE
+
+ + RICOH MP C6003Z/C5503AZ/C4503AZ Version: J-1.01   + + + Ricoh Company, Ltd. + + +   + + 2014-05-302017-01-24 + + + EAL2+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Samsung CLX-9201 CLX-9251 CLX-9301 CLX-9206 CLX-9256 CLX-9306 CLX-8650 CLX-8640 CLX-9811 CLX-9812 CLX-9813 SCX-8128 Multi-Function Printers   + + + HP Inc. + + +   + + 2014-04-212019-06-01 + + + EAL3+ +
ALC_FLR.2 +
+ + KR – IT Security Certification Center(ITSCC)
KR
+
+ + Samsung CLX-9252 CLX-9352 CLX-9258 CLX-9358 CLX-9821 CLX-9822 SCX-8230 SCX-8240 SCX-8238 SCX-8248 SCX-8821 SCX-8822 Multi-Function Printers   + + + HP Inc. + + +   + + 2014-04-212019-06-01 + + + EAL3+ +
ALC_FLR.2 +
+ + KR – IT Security Certification Center(ITSCC)
KR
+
+ + HP LaserJet M4555 MFP Series and Color LaserJet CM4540 Series with Jetdirect Inside   + + + HP Inc. + + + CCRA Certificate + + 2014-02-052019-09-01 + + + EAL2 +
ALC_FLR.2 +
+ + SE – Swedish Certification Body for IT Security FMV/CSEC
SE
+
+ + Lexmark MS610e(LW20.PR4.P235CC), MS810e(LW20.DN4.P231CC), MS812e(LW20.DN7.P231CC), M3150(LW20.PR4.P235CC), M5155(LW20.DN4.P231CC), M5163(LW20.DN4.P231CC), M5170(LW20.DN7.P231CC), and CS510(LW20.VY4.P231CC) Single Function Printers   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2015-02-25 – Lexmark MS610e, MS810e, MS812e, MS911e, M3150, M5155, M5163, M5170, and CS510 Single Function Printers
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Lexmark International, Inc. + + +   + + 2014-01-312016-01-31 + + + EAL2 +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Lexmark MX410(LW20.SB4.P231CC), MX510(LW20.SB4.P231CC), MX511(LW20.SB4.P231CC), MX610(LW20.SB7.P231CC), MX611(LW20.SB7.P231CC), MX710(LW20.TU.P231CC), MX711(LW20.TU.P231CC), XM1145(LW20.SB4.P231CC), XM3150(LW20.SB7.P231CC), XM5163(LW20.TU.P231CC), XM5170(LW20.TU.P231CC), CX410(LW20.GM4.P231CC), CX510(LW20.GM7.P231CC) and Dell B3465(LW20.SB7.P231CC) and B5465(LW20.TU.P231CC) Multi-Function Printers   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2015-02-25 – Lexmark MX410, MX510, MX511, MX610, MX611, MX710, MX711, XM1145, XM3150, XM5163, XM5170, CX410, CX510 and Dell B3465 and B5465 Multi-Function Printers
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Lexmark International, Inc. + + +   + + 2014-01-312016-01-31 + + + EAL2 +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Lexmark MX511h(LW20.SB4.P231CC), MX611h(LW20.SB7.P231CC), MX710h(LW20.TU.P231CC), MX711h(LW20.TU.P231CC), MX810(LW20.TU.P231CC), MX811(LW20.TU.P231CC), MX812(LW20.TU.P231CC), XM7155(LW20.TU.P231CC), XM7163(LW20.TU.P231CC), XM7170(LW20.TU.P231CC), CX510h(LW20.GM7.P231CC) and XC2132(LW20.GM7.P231CC) Multi-Function Printers   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2015-02-25 – Lexmark MX511h, MX611h, MX710h, MX711h, MX810, MX811, MX812, MX910, MX911, MX912, XM7155, XM7163, XM7170, XM9145, XM9155, XM9165, CX510h and XC2132 Multi-Function Printers
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Lexmark International, Inc. + + +   + + 2014-01-312016-01-31 + + + EAL2 +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Pro 8100EX/8100S/8110S/8120S (Ricoh/Savin/Lanier/nashuatec/Rex-Rotary/Gestetner/infotec) Version: E-1.01   + + + Ricoh Company, Ltd. + + +   + + 2014-01-282017-02-07 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + RICOH Pro 8120S/8110S/8100S Version: J-1.01   + + + Ricoh Company, Ltd. + + +   + + 2014-01-282017-02-13 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Hewlett-Packard LaserJet MFP Models CM3530, CM6030, CM6040, M9040 and M9050 with Jetdirect Inside Firmware   + + + Hewlett-Packard Company + + +   + + 2014-01-272019-09-01 + + + EAL2+ +
ALC_FLR.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + ColorQube 8700/8900 Xerox ConnectKey Controller   + + + Xerox Corporation + + +   + + 2014-01-132016-01-13 + + + EAL2 +
ALC_FLR.3 +
+ + US – National Information Assurance Partnership
US
+
+ + MP 2553/3053/3353(Ricoh/Savin/Lanier/nashuatec/Rex-Rotary/Gestetner/infotec) Version:E-1.00   + + + Ricoh Company, Ltd. + + +   + + 2013-12-242017-01-24 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + RICOH MP 3353/2553 Version:J-1.00   + + + Ricoh Company, Ltd. + + +   + + 2013-12-242017-01-24 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + MP C6502/C8002(Ricoh/Savin/Lanier/nashuatec/Rex-Rotary/Gestetner/infotec) Version:E-1.00   + + + Ricoh Company, Ltd. + + +   + + 2013-11-252017-01-24 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + RICOH MP C8002/C6502 Version:J-1.00   + + + Ricoh Company, Ltd. + + +   + + 2013-11-252017-01-24 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Xerox Color 560/570 Printer Version:Controller ROM Ver. 1.208.1, IOT ROM Ver. 64.19.0, IIT ROM Ver. 6.16.1, ADF ROM Ver. 12.11.0   + + + Fuji Xerox Co., Ltd. + + +   + + 2013-10-302018-11-26 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Xerox D136 Copier/Printer Version:Controller+PS ROM Ver. 1.200.6, IOT ROM Ver. 113.27.0, IIT ROM Ver. 13.1.0, ADF ROM Ver. 13.17.1   + + + Fuji Xerox Co., Ltd. + + +   + + 2013-10-302018-11-26 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + MP C4503/C4503G/C5503/C5503G/C6003G (Ricoh/Savin/Lanier), MP C4503A/C5503A (Ricoh/nashuatec/ Rex-Rotary/Gestetner/infotec), MP C6003 (Ricoh/Savin/Lanier/nashuatec/Rex-Rotary/Gestetner/infotec), Version: ES-1.00   + + + Ricoh Company, Ltd. + + +   + + 2013-09-272018-10-05 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + MP C4503/C5503 (Ricoh/Lanier/nashuatec/Rex-Rotary/Gestetner/infotec), Version: EA-1.00   + + + Ricoh Company, Ltd. + + +   + + 2013-09-272018-10-05 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + RICOH MP C5503/C4503, Version: J-1.00   + + + Ricoh Company, Ltd. + + +   + + 2013-09-272017-01-24 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + RICOH MP C6003/C5503A/C4503A, Version: J-1.00   + + + Ricoh Company, Ltd. + + +   + + 2013-09-272017-01-24 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + MP C3003/C3503(Ricoh/Savin/Lanier/nashuatec/Rex-Rotary/Gestetner/infotec), MP C3003G/C3503G(Ricoh/Savin/Lanier) Version:E-1.00   + + + Ricoh Company, Ltd. + + +   + + 2013-08-282018-09-06 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + RICOH MP C3503/C3003 Version:J-1.00   + + + Ricoh Company, Ltd. + + +   + + 2013-08-282017-01-24 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Canon imageRUNNER ADVANCE C9200 PRO Series / C7200 Series 2600.1 model (EX) Version:1.1   + + + Canon Inc. + + +   + + 2013-07-112018-08-07 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Canon imageRUNNER ADVANCE C2200 Series 2600.1 model Version:1.1   + + + Canon Inc. + + +   + + 2013-07-102018-08-07 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Canon imageRUNNER ADVANCE 6200 Series 2600.1 model (EX) Version:1.0   + + + Canon Inc. + + +   + + 2013-06-212018-07-04 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Canon imageRUNNER ADVANCE 8200 Series 2600.1 model (EX) Version:1.0   + + + Canon Inc. + + +   + + 2013-06-212018-07-04 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + RICOH MP 1601/1301 all of the above with Fax function and HDD unit Version: - Software: system/Copy 1.01, Network Support 12.38, Fax 01.00.00, RemoteFax 01.00.00, NetworkDocBox 1.00, Web Support 1.00.2, Web Uapl 1.00, animation 1.00, Scanner 01.02, Printer 1.00, RPCS 3.12.28, RPCS Font 1.00, Data Erase Onb 1.03m, GWFCU3.8-3(WW) 01.00.00, Engine 1.03:08, OpePanel 1.02, - Hardware: Ic Key 01020714, Ic Hdd 3330   + + + Ricoh Company, Ltd. + + +   + + 2013-05-312018-06-05 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Ricoh MP 2001/2501, Savin MP 2501, Lanier MP 2001/2501, nashuatec MP 2001/2501, Rex-Rotary MP 2001/2501, Gestetner MP 2001/2501, infotec MP 2001/2501 all of the above with Fax function and HDD unit Version: - Software: System/Copy 1.01, Network Support 12.38, Fax 01.00.00, RemoteFax 01.00.00, NetworkDocBox 1.00, Web Support 1.00.2, Web Uapl 1.00, animation 1.00, Scanner 01.02, Printer 1.00, PCL 1.01, PCL Font 1.13, Data Erase Onb 1.03m, GWFCU3.8-3(WW) 01.00.00, Engine 1.03:08, OpePanel 1.02, - Hardware: Ic Key 01020714, Ic Hdd 3330   + + + Ricoh Company, Ltd. + + +   + + 2013-05-312018-06-05 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + WorkCentre 5845, 5855, 5865, 5875, 5890, 7220, 7225, 7830, 7835, 7845, 7855 & ColorQube 9301, 9302, 9303   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2013-10-07 – WorkCentre 5845 / 5855 / 5865 / 5875 / 5890 / 7220 / 7225 / 7830 / 7835 / 7845 / 7855 ColorQube 9301 / 9302 / 9303, Dated August 2013
    + Maintenance Report + +
  2. + +
    +
  3. + 2014-01-27 – JBIG2 Compression Fault, Dated November 2013
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ Xerox Corporation + + +   + + 2013-05-292015-05-29 + + + EAL2+ +
ALC_FLR.3 +
+ + US – National Information Assurance Partnership
US
+
+ + TOSHIBA e-STUDIO2555C/3055C/3555C/4555C/5055C/2555CSE/3055CSE/3555CSE/4555CSE/5055CSE MULTIFUNCTIONAL DIGITAL SYSTEMS Version: SYS V1.0   + + + Toshiba TEC Corporation + + +   + + 2013-04-262018-05-01 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Xerox WorkCentre 7755/77635/7775   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2014-01-27 – JBIG2 Compression Fault, Dated November 2013
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Xerox Corporation + + +   + + 2013-01-302015-06-05 + + + EAL2+ +
ALC_FLR.3 +
+ + US – National Information Assurance Partnership
US
+
+ + Xerox ColorQube 8700/8900   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2014-01-27 – JBIG2 Compression Fault, Dated November 2013
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Xerox Corporation + + +   + + 2012-12-212015-06-05 + + + EAL2+ +
ALC_FLR.3 +
+ + US – National Information Assurance Partnership
US
+
+ + Xerox ColorQube 9201/9202/9203 Multifunction Systems   + + + Xerox Corporation + + +   + + 2012-12-202014-12-31 + + + EAL2+ +
ALC_FLR.3 +
+ + US – National Information Assurance Partnership
US
+
+ + Ricoh Aficio MP 301, Savin MP 301, Lanier MP 301, nashuatec MP 301, Rex-Rotary MP 301, Gestetner MP 301, infotec MP 301 all of the above with Facsimile Function / Hard Disk Drive Version: - Software: System/Copy 1.08, Network Support 12.25.3, Fax 03.00.00, RemoteFax 01.03.00, NetworkDocBox 1.00, Web Support 1.04, Web Uapl 1.02, animation 2.00, Scanner 01.05, Printer 1.05, PCL 1.06, PCL Font 1.13, Data Erase Onb 1.03m, GWFCU3.5-7(WW) 03.00.00, Engine 1.02:05, OpePanel 1.16 - Hardware: Ic Key 01020714, Ic Hdd 01   + + + Ricoh Company, Ltd. + + +   + + 2012-12-182017-02-07 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Ricoh Aficio MP C305, Savin MP C305, Lanier MP C305, nashuatec MP C305, Rex-Rotary MP C305, Gestetner MP C305, infotec MP C305 all of the above with Facsimile Function / Hard Disk Drive Version:- Software: System/Copy 1.08, Network Support 12.25.3, Fax 03.00.00, RemoteFax 01.03.00, NetworkDocBox 1.00, Web Support 1.04, Web Uapl 1.02, animation 1.00, Scanner 01.05, Printer 1.05, PCL 1.07, PCL Font 1.13, Data Erase Onb 1.03m, GWFCU3.5-5(WW) 03.00.00, Engine 1.08:02, OpePanel 1.16 - Hardware: Ic Key 01020714, Ic Hdd 01   + + + Ricoh Company, Ltd. + + +   + + 2012-12-182017-02-07 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Canon imageRUNNER ADVANCE C5200 Series 2600.1 model Version:1.0   + + + Canon Inc. + + +   + + 2012-11-152015-03-17 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + TOSHIBA e-STUDIO2050C/2550C MULTIFUNCTIONAL DIGITAL SYSTEMS Version: SYS V1.0   + + + Toshiba TEC Corporation + + +   + + 2012-10-302017-11-13 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Ricoh Aficio MP 6002/7502/9002, Gestetner MP 6002/7502/9002, Lanier MP 6002/7502/9002, nashuatec MP 6002/7502/9002, Rex-Rotary MP 6002/7502/9002, infotec MP 6002/7502/9002, Savin MP 6002/7502/#x2f;9002 all of above with Printer/Scanner/Facsimile Functions Version: - Software: System/Copy 1.00.3, Network Support 11.90, Fax 01.00.01, RemoteFax 01.00.00, NetworkDocBox 1.00.1, Web Support 1.00, Web Uapl 1.00, animation 1.00, Scanner 01.02, Printer 1.00, PCL 1.01, PCL Font 1.06, Data Erase Onb 1.01x, GWFCU3.5-3(WW) 01.00.00, Engine 1.00:01, OpePanel 1.01, LANG0 1.01, LANG1 1.01 - Hardware: Ic Key 01020700, Ic Ctlr 03   + + + Ricoh Company, Ltd. + + +   + + 2012-10-292017-02-07 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Ricoh imagio MP 9002/9002T/7502/6002/6002GP all of above with Printer/Scanner/Facsimile Functions Version: - Software: System/Copy 1.00.3 Network Support 11.90, Fax 01.00.01, RemoteFax 01.00.00, NetworkDocBox 1.00.1, Web Support 1.00, Web Uapl 1.00, animation 1.00, Scanner 01.02, Printer 1.00, RPCS 3.12.27, RPCS Font 1.03, Data Erase Onb 1.01x, GWFCU3.5-3(WW) 01.00.00, Engine 1.00:01, OpePanel 1.01, LANG0 1.01, LANG1 1.01 - Hardware: Ic Key 01020700, Ic Ctlr 03   + + + Ricoh Company, Ltd. + + +   + + 2012-10-292017-02-07 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Xerox WorkCentre 5735/5740/5745/5755/5765/5775/5790   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2014-01-27 – JBIG2 Compression Fault, Dated November 2013
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Xerox Corporation + + +   + + 2012-09-102015-06-05 + + + EAL2+ +
ALC_FLR.3 +
+ + US – National Information Assurance Partnership
US
+
+ + Ricoh Aficio MP C300/C300SR/C400/C400SR, Savin C230/C230SR/C240/C240SR, Lanier LD130C/LD130CSR/LD140C/LD140CSR, Lanier MP C300/C300SR/C400/C400SR, nashuatec MP C300/C300SR/C400/C400SR, Rex-Rotary MP C300/C300SR/C400/C400SR, Gestetner MP C300/C300SR/C400/C400SR, infotec MP C300/C300SR/C400/C400SR all of above with Facsimile Function Version: - Software: System/Copy 2.05, Network Support 10.57, Fax 02.00.00, RemoteFax 01.00.00, NetworkDocBox 1.04, Web Support 1.02, Web Uapl 1.01, animation 1.00, Scanner 01.04, Printer 1.01, PCL 1.07, OptionPCLFont 1.02, Data Erase Std 1.01x, GWFCU3-23(WW) 03.00.00, Engine 1.02:02, OpePanel 1.03, LANG0 1.03, LANG1 1.03 - Hardware: Ic Key 01020700, Ic Ctlr 03   + + + Ricoh Company, Ltd. + + +   + + 2012-08-302017-02-07 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Ricoh Aficio SP 5200S/5210SF/5210SR, Savin SP 5200S/5210SF/5210SR, Lanier SP 5200S/5210SF/5210SR, nashuatec SP 5200S/5210SF/5210SR, Rex-Rotary SP 5200S/5210SF/5210SR, Gestetner SP 5200S/5210SF/5210SR all of above with Facsimile Function Version: - Software: System/Copy 2.02, Network Support 10.63, Fax 02.00.00, RemoteFax 01.00.00, NetworkDocBox 1.04, Web Support 1.02, Web Uapl 1.02, animation 1.01, Scanner 01.03, Printer 1.02.1, PCL 1.02, PCL Font 1.05, Data Erase Std 1.01m, GWFCU3-24(WW) 02.00.00, Engine A2.0:20, Engine(Scanner) 1.01:00, OpePanel 1.02, LANG0 1.02, LANG1 1.02 Hardware: Ic Key 01020714, Ic Hdd 01   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2014-11-27 – Assurance Continuity Maintenance Report
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ Ricoh Company, Ltd. + + +   + + 2012-08-302017-02-07 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Xerox D110/D125 Copier/Printer Version: Controller+PS ROM Ver. 1.201.1, IOT ROM Ver. 83.25.0, IIT ROM Ver. 9.8.0, ADF ROM Ver. 13.10.0   + + + Fuji Xerox Co., Ltd. + + +   + + 2012-07-302017-08-03 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Xerox D95 Copier/Printer Version: Controller+PS ROM Ver. 1.201.1, IOT ROM Ver. 83.25.0, IIT ROM Ver. 9.8.0, ADF ROM Ver. 13.10.0   + + + Fuji Xerox Co., Ltd. + + +   + + 2012-07-302017-08-03 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Ricoh Aficio MP C3002/C3002G/C3502/C3502G, Savin MP C3002/C3002G/C3502/C3502G, Lanier MP C3002/C3002G/C3502/C3502G, nashuatec MP C3002/C3502, Rex-Rotary MP C3002/C3502, Gestetner MP C3002/C3502, infotec MP C3002/C3502 all of above with Facsimile Function Version: - Software: System/Copy 1.05.4, Network Support 11.77, Fax 02.00.00, RemoteFax 02.00.00, NetworkDocBox 1.04, Web Support 1.07, Web Uapl 1.03, animation 1.00, Scanner 01.09, Printer 1.05.1, PCL 1.07, PCL Font 1.06, Data Erase Onb 1.01x, GWFCU3.5-4(WW) 01.00.04, Engine 0.16:04, OpePanel 1.04, LANG0 1.03, LANG1 1.03 - Hardware: Ic Key 01020700, Ic Ctlr 03   + + + Ricoh Company, Ltd. + + +   + + 2012-06-142017-02-07 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Ricoh Aficio MP C4502/C4502G/C5502/C5502G, Savin MP C4502/C4502G/C5502/C5502G, Lanier MP C4502/C4502G/C5502/C5502G, nashuatec MP C4502/C5502, Rex-Rotary MP C4502/C5502, Gestetner MP C4502/C5502, infotec MP C4502/C5502 all of above with Facsimile Function Version: - Software: System/Copy 1.05.4, Network Support 11.77, Fax 02.00.00, RemoteFax 02.00.00, NetworkDocBox 1.04, Web Support 1.07, Web Uapl 1.03, animation 1.00, Scanner 01.09, Printer 1.05.1, PCL 1.07, PCL Font 1.06, Data Erase Onb 1.01x, GWFCU3.5-4(WW) 01.00.04, Engine 0.16:04, OpePanel 1.04, LANG0 1.03, LANG1 1.03 - Hardware: Ic Key 01020700, Ic Ctlr 03   + + + Ricoh Company, Ltd. + + +   + + 2012-06-142017-02-07 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Ricoh Aficio MP C4502A/C5502A, Savin MP C4502A/C5502A, Lanier MP C4502A/C5502A, nashuatec MP C4502A/C5502A, Rex-Rotary MP C4502A/C5502A, Gestetner MP C4502A/C5502A, infotec MP C4502A/C5502A all of above with Facsimile Function Version: - Software: System/Copy 1.05.4, Network Support 11.77, Fax 02.00.00, RemoteFax 02.00.00, NetworkDocBox 1.04, Web Support 1.07, Web Uapl 1.03, animation 1.00, Scanner 01.09, Printer 1.05.1, PCL 1.07, PCL Font 1.06, Data Erase Onb 1.01x, GWFCU3.5-4(WW) 01.00.04, Engine 0.16:02, OpePanel 1.04, LANG0 1.03, LANG1 1.03 - Hardware: Ic Key 01020700, Ic Ctlr 03   + + + Ricoh Company, Ltd. + + +   + + 2012-06-142017-02-07 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Ricoh imagio MP C3302 SP/C3302 SPF/C2802 SP/C2802 SPF all of above with Facsimile Function Version: - Software: System/Copy 1.05.4, Network Support 11.77, Fax 02.00.00, RemoteFax 02.00.00, NetworkDocBox 1.04, Web Support 1.07, Web Uapl 1.03, animation 1.00, Scanner 01.09, Printer 1.05.1, RPCS 3.12.23, RPCS Font 1.03, Data Erase Onb 1.01x, GWFCU3.5-4(WW) 01.00.04, Engine 0.16:04, OpePanel 1.04, LANG0 1.03, LANG1 1.03 - Hardware: Ic Key 01020700, Ic Ctlr 03   + + + Ricoh Company, Ltd. + + +   + + 2012-06-142017-02-07 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Ricoh imagio MP C5002 SP/C5002 SPF/C4002 SP/C4002 SPF all of above with Facsimile Function Version: - Software: System/Copy 1.05.4, Network Support 11.77, Fax 02.00.00, RemoteFax 02.00.00, NetworkDocBox 1.04, Web Support 1.07, Web Uapl 1.03, animation 1.00, Scanner 01.09, Printer 1.05.1, RPCS 3.12.23, RPCS Font 1.03, Data Erase Onb 1.01x, GWFCU3.5-4(WW) 01.00.04, Engine 0.16:04, OpePanel 1.04, LANG0 1.03, LANG1 1.03 - Hardware: Ic Key 01020700, Ic Ctlr 03   + + + Ricoh Company, Ltd. + + +   + + 2012-06-142017-02-07 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Ricoh imagio MP C5002A SP/C4002A SP all of above with Facsimile Function Version: - Software: System/Copy 1.05.4, Network Support 11.77, Fax 02.00.00, RemoteFax 02.00.00, NetworkDocBox 1.04, Web Support 1.07, Web Uapl 1.03, animation 1.00, Scanner 01.09, Printer 1.05.1, RPCS 3.12.23, RPCS Font 1.03, Data Erase Onb 1.01x, GWFCU3.5-4(WW) 01.00.04, Engine 0.16:02, OpePanel 1.04, LANG0 1.03, LANG1 1.03 - Hardware: Ic Key 01020700, Ic Ctlr 03   + + + Ricoh Company, Ltd. + + +   + + 2012-06-142017-02-07 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Lexmark X548, XS548, X792, XS796, X925, XS925, X950, X952, X954, XS955 and 6500e Scanner (with &650, T652, T654, or T656 Printer) Multi-Function Printers   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2012-09-24 – Lexmark X548, XS548, X748, X792, XS796, X925, XS925, X950, X952, X954, XS955 and 6500e Scanner (with T650, T652, or T654) Multi-Function Printers
    + Maintenance Report + + Maintenance ST + +
  2. + +
    +
  3. + 2014-10-22 – Lexmark X548, XS548, X748, X792, XS796, X925, XS925, X950, X952, X954, XS955 and 6500e Scanner (with T650, T652, or T654 Printer) Multi-Function Printers
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ Lexmark International, Inc. + + +   + + 2012-05-292014-11-05 + + + EAL2+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Dell 5535dn Multi-Function Printer   + + + Dell, Inc. + + +   + + 2012-05-182014-11-01 + + + EAL2+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Ricoh Aficio MP 4002/4002G/5002/5002G, Savin MP 4002/4002G/5002/5002G, Lanier MP 4002/4002G/5002/5002G, nashuatec MP 4002/5002, Rex-Rotary MP 4002/5002, Gestetner MP 4002/5002, infotec MP 4002/5002 all of above with Printer/Scanner/Facsimile Functions Version: - Software: System/Copy 1.00.2, Network Support 11.75, Fax 01.01.00, RemoteFax 01.01.00, NetworkDocBox 1.00.1, Web Support 1.03, Web Uapl 1.02, animation 1.00, Scanner 01.04, Printer 1.00.1, PCL 1.04, PCL Font 1.13, Data Erase Onb 1.03m, GWFCU3.5-2(WW) 01.00.01, Engine 1.00:03, OpePanel 1.02, LANG0 1.02, LANG1 1.02 - Hardware: Ic Key 01020714, Ic Hdd 01   + + + Ricoh Company, Ltd. + + +   + + 2012-04-262017-02-07 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Ricoh imagio MP 5002/4002 all of above with Printer/Scanner/Facsimile Functions Version: - Software: System/Copy 1.00.2, Network Support 11.75, Fax 01.01.00, RemoteFax 01.01.00, NetworkDocBox 1.00.1, Web Support 1.03, Web Uapl 1.02, animation 1.00, Scanner 01.04, Printer 1.00.1, RPCS 3.12.18, RPCS Font 1.03, Data Erase Onb 1.03m, GWFCU3.5-2(WW) 01.00.01, Engine 1.00:03, OpePanel 1.02, LANG0 1.02, LANG1 1.02 - Hardware: Ic Key 01020714, Ic Hdd 01   + + + Ricoh Company, Ltd. + + +   + + 2012-04-262017-02-07 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Samsung SCX-8030 SCX-8040 SCX-8038 SCX-8048 CLX-9250 CLX-9350 CLX-9258 CLX-9358 MultiFunctionPrinter   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2013-06-21 – Samsung SCX-8030 SCX-8040 SCX-8038 SCX-8048 CLX-9250 CLX-9350 CLX-9258 CLX-9358 MultiFunctionPrinter
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ HP Inc. + + +   + + 2012-04-242019-06-01 + + + EAL3+ +
ALC_FLR.2 +
+ + KR – IT Security Certification Center(ITSCC)
KR
+
+ + Samsung SCX-5637FR/SCX-5639FR Control Software V2.00.03.00   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2013-07-05 – Samsung SCX-5637FR/SCX-5639FR Control Software V2.00.03.02
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ HP Inc. + + +   + + 2012-03-302019-06-01 + + + EAL3+ +
ALC_FLR.2 +
+ + KR – IT Security Certification Center(ITSCC)
KR
+
+ + Samsung SCX-5737FW/SCX-5739FW Control Software V2.00.03.00   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2013-07-05 – Samsung SCX-5737FW/SCX-5739FW Control Software V2.00.03.02
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ HP Inc. + + +   + + 2012-03-302019-06-01 + + + EAL3+ + + + KR – IT Security Certification Center(ITSCC)
KR
+
+ + Xerox WorkCentre™ 7525/7530/7535/7545/7556   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2014-01-22 – Xerox WorkCentre™ 7525/7530/7535/7545/7556
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ Xerox Corporation + + +   + + 2012-02-132017-05-15 + + + EAL2+ +
ALC_FLR.3 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Samsung SCX-5835NX/SCX-6555NX/SCX-6545NX/CLX-8385NX/CLX-8540NX Control Software V2.00.03.00   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2013-07-05 – Samsung SCX-5835NX/SCX-6555NX/SCX-6545NX/CLX-8385NX/CLX-8540NX Control Software V2.00.03.01
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ HP Inc. + + +   + + 2012-01-252019-06-01 + + + EAL3+ +
ALC_FLR.2 +
+ + KR – IT Security Certification Center(ITSCC)
KR
+
+ + Ricoh Aficio MP 2352/2852/3352, Savin MP 2352/2852/3352, Lanier MP 2352/2852/3352, nashuatec MP 2352/2852/3352, Rex-Rotary MP 2352/2852/3352, Gestetner MP 2352/2852/3352, infotec MP 2352/2852/3352 all of above with Printer/Scanner/Facsimile Functions Version: - Software: System/Copy 1.04, Network Support 10.65, Fax 01.01.00, RemoteFax 01.00.00, Web Support 1.01, Web Uapl 1.00, NetworkDocBox 1.00, animation 1.00, Engine 1.01:08, OpePanel 1.01, LANG0 1.01, LANG1 1.01, Data Erase Onb 1.03m - Hardware: Ic Key 01020714, Ic Hdd 01 - Printer Unit: Printer 1.02, PCL 1.00, PCL Font 1.12 - Scanner Unit: Scanner 01.01 - Fax Controller Unit: GWFCU3.5-1(WW) 01.00.01   + + + Ricoh Company, Ltd. + + +   + + 2012-01-122017-02-02 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Ricoh imagio MP 3352/2552 both with Printer/Scanner/Facsimile Functions Version: - Software: System/Copy 1.04, Network Support 10.65, Fax 01.01.00, RemoteFax 01.00.00, Web Support 1.01, Web Uapl 1.00, NetworkDocBox 1.00, animation 1.00, Engine 1.01:08, OpePanel 1.01, LANG0 1.01, LANG1 1.01, Data Erase Onb 1.03m - Hardware: Ic Key 01020714, Ic Hdd 01 - Printer Unit: Printer 1.02, RPCS 3.11.1, RPCS Font 1.00 - Scanner Unit: Scanner 01.01 - Fax Controller Unit: GWFCU3.5-1(WW) 01.00.01   + + + Ricoh Company, Ltd. + + +   + + 2012-01-122017-02-02 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Xerox WorkCentre 5325/5330/5335 Version: Controller ROM Ver. 1.202.3, IOT ROM Ver. 30.19.0, ADF ROM Ver. 7.8.50   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2011-12-092017-01-06 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Canon imageRUNNER ADVANCE 4000 Series 2600.1 model Version: 1.0   + + + Canon Inc. + + +   + + 2011-11-292015-03-17 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + TOSHIBA e-STUDIO2040C/2540C/3040C/3540C/4540C MULTIFUNCTIONAL DIGITAL SYSTEMS Version: SYS V1.0   + + + Toshiba TEC Corporation + + +   + + 2011-10-282016-11-02 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + TOSHIBA e-STUDIO5540C/6540C/6550C MULTIFUNCTIONAL DIGITAL SYSTEMS Version: SYS V1.0   + + + Toshiba TEC Corporation + + +   + + 2011-10-282016-11-02 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Ricoh Aficio MP C2051/C2551, Savin C9120/C9125, Lanier LD620C/LD625C, Lanier MP C2051/C2551, nashuatec MP C2051/C2551, Rex-Rotary MP C2051/C2551, Gestetner MP C2051/C2551, infotec MP C2051/C2551 all of above with Fax Option Type C2551 Version: - Software version: System/Copy 1.01, Network Support 10.56, Scanner 01.05, Printer 1.01e, Fax 02.00.00, RemoteFax 02.00.00, Web Support 1.01, Web Uapl 1.02, NetworkDocBox 1.03, animation 0.01, PCL 1.01, OptionPCLFont 1.02, Engine 1.07:03, OpePanel 1.02, LANG0 1.02, LANG1 1.02, Data Erase Std 1.01x - Hardware version: Ic Key 01020700, Ic Ctlr 03 - Option version: GWFCU3-22(WW) 02.00.00   + + + Ricoh Company, Ltd. + + +   + + 2011-10-142016-11-02 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Ricoh Aficio MP C4501A/C4501AG/C5501A/C5501AG, Savin C9145A/C9145AG/C9155A/C9155AG, Lanier LD645CA/LD645CAG/LD655CA/LD655CAG, Lanier MP C4501A/C5501A, nashuatec MP C4501A/C5501A, Rex-Rotary MP C4501A/C5501A, Gestetner MP C4501A/C5501A, infotec MP C4501A/C5501A all of above with Fax Option Type C5501 Version: - Software version: System/Copy 2.02, Network Support 10.54, Scanner 01.11.1, Printer 1.01, Fax 02.01.00, RemoteFax 01.00.00, Web Support 1.06, Web Uapl 1.01, NetworkDocBox 1.01, animation 1.00, PCL 1.02, OptionPCLFont 1.02, Engine 1.03:03, OpePanel 1.06, LANG0 1.06, LANG1 1.06, Data Erase Std 1.01x - Hardware version: Ic Key 01020700, Ic Ctlr 03 - Option version: GWFCU3-21(WW) 03.00.00   + + + Ricoh Company, Ltd. + + +   + + 2011-10-142016-11-02 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Ricoh imagio MP C2201 SP with imagio FAX Unit Type28, and Ricoh imagio MP C2201 SPF Version: - Software version: System/Copy 1.01, Network Support 10.56, Scanner 01.05, Printer 1.01d, Fax 02.00.00, RemoteFax 02.00.00, Web Support 1.01, Web Uapl 1.02, NetworkDocBox 1.03, animation 0.01, RPCS 3.10.17, RPCS Font 1.00, Engine 1.07:03, OpePanel 1.02, LANG0 1.02, LANG1 1.02, Data Erase Std 1.01x - Hardware version: Ic Key 01020700, Ic Ctlr 03 - Option version: GWFCU3-22(WW) 02.00.00   + + + Ricoh Company, Ltd. + + +   + + 2011-10-142016-11-02 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Ricoh imagio MP C5001A SP/C4001A SP both with imagio FAX Unit Type24 Version: - Software version: System/Copy 2.02, Network Support 10.54, Scanner 01.11.1, Printer 1.00.4, Fax 02.01.00, RemoteFax 01.00.00, Web Support 1.06, Web Uapl 1.01, NetworkDocBox 1.01, animation 1.00, RPCS 3.10.14, RPCS Font 1.00, Engine 1.03:03, OpePanel 1.06, LANG0 1.06, LANG1 1.06, Data Erase Std 1.01x - Hardware version: Ic Key 01020700, Ic Ctlr 03 - Option version: GWFCU3-21(WW) 03.00.00   + + + Ricoh Company, Ltd. + + +   + + 2011-10-142016-11-02 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Xerox WorkCentre 7120/7125 Controller ROM Ver. 1.210.3 IOT ROM Ver. 5.12.0 ADF ROM Ver. 11.0.1   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2011-10-142016-11-02 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Ricoh Aficio MP C6501 SP/C7501 SP, Savin C9065/C9075, Lanier LD365C/LD375C, Lanier MP C6501 SP/C7501 SP, nashuatec MP C6501 SP/C7501 SP, Rex-Rotary MP C6501 SP/C7501 SP, Gestetner MP C6501 SP/C7501 SP, infotec MP C6501 SP/C7501 SP all of above with Fax Option Type C7501, DataOverwriteSecurity Unit Type H, and HDD Encryption Unit Type A Version: - Software version: System/Copy 1.03, Network Support 9.62, Scanner 01.05, Printer 1.03, Fax 02.00.00, RemoteFax 02.00.00, Web Support 1.04, Web Uapl 1.01, NetworkDocBox 1.01, animation 1.00, PCL 1.08, OptionPCLFont 1.02, Engine 1.07:06, OpePanel 1.04, LANG0 1.03, LANG1 1.03 - Hardware version: Ic Key 01020700, Ic Ctlr 03 - Option version: GWFCU3-18(WW) 02.00.00, Data Erase Opt 1.01x   + + + Ricoh Company, Ltd. + + +   + + 2011-09-302016-10-03 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Ricoh imagio MP C7501 SP/C6001 SP both with imagio FAX Unit Type23, imagio Security Card Type7, and imagio HDD Encryption Card Type7 Version: - Software version: System/Copy 1.03, Network Support 9.62, Scanner 01.05, Printer 1.03, Fax 02.00.00, RemoteFax 02.00.00, Web Support 1.04, Web Uapl 1.01, NetworkDocBox 1.01, animation 1.00, RPCS 3.10.6, RPCS Font 1.00, Engine 1.07:06, OpePanel 1.04, LANG0 1.03, LANG1 1.03 - Hardware version: Ic Key 01020700, Ic Ctlr 03 - Option version: GWFCU3-18(WW) 02.00.00, Data Erase Opt 1.01x   + + + Ricoh Company, Ltd. + + +   + + 2011-09-302016-10-03 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Ricoh Aficio MP C3001/C3001G/C3501/C3501G, Savin C9130/C9130G/C9135/C9135G, Lanier LD630C/LD630CG/LD635C/LD635CG, Lanier MP C3001/C3501, nashuatec MP C3001/C3501, Rex-Rotary MP C3001/C3501, Gestetner MP C3001/C3501, infotec MP C3001/C3501 all of above with Fax Option Type C5501 Version: - Software version: System/Copy 1.03, Network Support 10.54, Scanner 01.05, Printer 1.02, Fax 02.00.00, RemoteFax 01.00.00, Web Support 1.05, Web Uapl 1.01, NetworkDocBox 1.01, animation 1.00, PCL 1.02, OptionPCLFont 1.02, Engine 1.03:04, OpePanel 1.04, LANG0 1.04, LANG1 1.04, Data Erase Std 1.01x - Hardware version: Ic Key 01020700, Ic Ctlr 03 - Option version: GWFCU3-21(WW) 03.00.00   + + + Ricoh Company, Ltd. + + +   + + 2011-07-272016-08-01 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Ricoh Aficio MP C4501/C4501G/C5501/C5501G, Savin C9145/C9145G/C9155/C9155G, Lanier LD645C/LD645CG/LD655C/LD655CG, Lanier MP C4501/C5501, nashuatec MP C4501/C5501, Rex-Rotary MP C4501/C5501, Gestetner MP C4501/C5501, infotec MP C4501/C5501 all of above with Fax Option Type C5501 Version: - Software version: System/Copy 2.02, Network Support 10.54, Scanner 01.11.1, Printer 1.01, Fax 02.01.00, RemoteFax 01.00.00, Web Support 1.06, Web Uapl 1.01, NetworkDocBox 1.01, animation 1.00, PCL 1.02, OptionPCLFont 1.02, Engine 1.03:04, OpePanel 1.06, LANG0 1.06, LANG1 1.06, Data Erase Std 1.01x - Hardware version: Ic Key 01020700, Ic Ctlr 03 - Option version: GWFCU3-21(WW) 03.00.00   + + + Ricoh Company, Ltd. + + +   + + 2011-07-272016-08-01 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Ricoh imagio MP C3301 SP / imagio MP C2801 SP, both with imagio FAX Unit Type24, and Ricoh imagio MP C3301 SPF / imagio MP C2801 SPF Version: -Software version: System/Copy 1.03, Network Support 10.54, Scanner 01.05, Printer 1.01, Fax 02.00.00, RemoteFax 01.00.00, Web Support 1.05, Web Uapl 1.01, NetworkDocBox 1.01, animation 1.00, RPCS 3.10.14, RPCS Font 1.00, Engine 1.03:04, OpePanel 1.04, LANG0 1.04, LANG1 1.04, Data Erase Std 1.01x - Hardware version: Ic Key 01020700, Ic Ctlr 03 - Option version: GWFCU3-21(WW) 03.00.00   + + + Ricoh Company, Ltd. + + +   + + 2011-07-272016-08-01 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Ricoh imagio MP C5001 SP / imagio MP C4001 SP, both with imagio FAX Unit Type24, and Ricoh imagio MP C5001 SPF / imagio MP C4001 SPF Version: - Software version: System/Copy 2.02, Network Support 10.54, Scanner 01.11.1, Printer 1.00.4, Fax 02.01.00, RemoteFax 01.00.00, Web Support 1.06, Web Uapl 1.01, NetworkDocBox 1.01, animation 1.00, RPCS 3.10.14, RPCS Font 1.00, Engine 1.03:04, OpePanel 1.06, LANG0 1.06, LANG1 1.06, Data Erase Std 1.01x - Hardware version: Ic Key 01020700, Ic Ctlr 03 - Option version: GWFCU3-21(WW) 03.00.00   + + + Ricoh Company, Ltd. + + +   + + 2011-07-272016-08-01 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Xerox Color 550/560 Printer Version:Controller ROM Ver. 1.203.1, IOT ROM Ver. 62.23.0, IIT ROM Ver. 6.13.0, ADF ROM Ver. 12.4.0   + + + Fuji Xerox Co., Ltd. + + +   + + 2011-06-232016-07-04 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Following MFP with FCU, DataOverwriteSecurity Unit, HDD Encryption Unit and Printer/Scanner Unit, MFP: Ricoh Aficio MP 6001, Ricoh Aficio MP 7001, Ricoh Aficio MP 8001, Ricoh Aficio MP 9001, Gestetner MP 6001, Gestetner MP 7001, Gestetner MP 8001, Gestetner MP 9001, infotec MP 6001, infotec MP 7001, infotec MP 8001, infotec MP 9001, Lanier LD360, Lanier LD370, Lanier LD380, Lanier LD390, Lanier MP 6001, Lanier MP 7001, Lanier MP 8001, Lanier MP 9001, nashuatec MP 6001, nashuatec MP 7001, nashuatec MP 8001, nashuatec MP 9001, Rex-Rotary MP 6001, Rex-Rotary MP 7001, Rex-Rotary MP 8001, Rex-Rotary MP 9001, Savin 9060, Savin 9070, Savin 9080, Savin 9090 Or Following MFP with FCU, DataOverwriteSecurity Unit and HDD Encryption Unit MFP: Ricoh Aficio MP 6001 SP, Ricoh Aficio MP 7001 SP, Ricoh Aficio MP 8001 SP, Ricoh Aficio MP 9001 SP, Gestetner MP 6001 SP, Gestetner MP 7001 SP, Gestetner MP 8001 SP, Gestetner MP 9001 SP, infotec MP 6001 SP, infotec MP 7001 SP, infotec MP 8001 SP, infotec MP 9001 SP, Lanier LD360sp, Lanier LD370sp, Lanier LD380sp, Lanier LD390sp, nashuatec MP 6001 SP, nashuatec MP 7001 SP, nashuatec MP 8001 SP, nashuatec MP 9001 SP, Rex-Rotary MP 6001 SP, Rex-Rotary MP 7001 SP, Rex-Rotary MP 8001 SP, Rex-Rotary MP 9001 SP, Savin 9060sp, Savin 9070sp, Savin 9080sp, Savin 9090sp FCU: Fax Option Type 9001 DataOverwriteSecurity Unit: DataOverwriteSecurity Unit Type H HDD Encryption Unit: HDD Encryption Unit Type A Printer/Scanner Unit : Printer/Scanner Unit Type 9001 Version: - Software version: System/Copy 1.18 Network Support 8.69.1 Scanner 01.20 Printer 1.16e Fax 03.00.00 RemoteFax 03.00.00 Web Support 1.13.1 Web Uapl 1.05 Network DocBox 1.04 animation 1.2.1 Option PCL 1.02 OptionPCLFont 1.02 Engine 1.61:04 OpePanel 1.04 LANG0 1.03 LANG1 1.03 - Hardware version: Ic Key 1100 Ic Ctlr 03 - Options version: GWFCU3-16(WW) 04.00.00 Data Erase Opt 1.01x   + + + Ricoh Company, Ltd. + + +   + + 2011-04-282016-05-10 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Canon imageRUNNER ADVANCE C5000 Series 2600.1 model Version 1.0   + + + Canon Inc. + + +   + + 2011-03-292015-03-17 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Following MFP with FCU, DataOverwriteSecurity Unit and HDD Encryption Unit MFP: Ricoh Aficio MP 2851, Ricoh Aficio MP 3351, Savin 9228, Savin 9233, Lanier LD528, Lanier LD533, Lanier MP 2851, Lanier MP 3351, Gestetner MP 2851, Gestetner MP 3351, nashuatec MP 2851, nashuatec MP 3351, Rex-Rotary MP 2851, Rex-Rotary MP 3351, infotec MP 2851, infotec MP 3351 FCU: Fax Option Type 3351 DataOverwriteSecurity Unit: DataOverwriteSecurity Unit Type I, HDD Encryption Unit: HDD Encryption Unit Type A Version: Software System/Copy 1.02 Network Support 7.34 Scanner 01.12 Printer 1.02 Fax 02.00.00 RemoteFax 02.00.00 Web Support 1.05 Web Uapl 1.03 Network DocBox 1.00 animation 1.1 Option PCL 1.03 OptionPCLFont 1.01 Engine 1.00:01 OpePanel 1.10 LANG0 1.09 LANG1 1.09 Hardware Ic Key 1100 Ic Hdd 01 Options Data Erase Opt 1.01m GWFCU3-20(WW) 02.00.00   + + + Ricoh Company, Ltd. + + +   + + 2011-03-292016-04-08 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Following MFP with FCU, DataOverwriteSecurity Unit and HDD Encryption Unit MFP: Ricoh Aficio MP 4001, Ricoh Aficio MP 4001G, Ricoh Aficio MP 5001, Ricoh Aficio MP 5001G, Savin 9240, Savin 9240G, Savin 9250, Savin 9250G, Lanier LD140, Lanier LD140G, Lanier LD150, Lanier LD150G, Lanier MP 4001, Lanier MP 5001, Gestetner MP 4001, Gestetner MP 4001G, Gestetner MP 5001, Gestetner MP 5001G, nashuatec MP 4001, nashuatec MP 5001, Rex-Rotary MP 4001, Rex-Rotary MP 5001, infotec MP 4001, infotec MP 5001 FCU: Fax Option Type 5001 ataOverwriteSecurity Unit: DataOverwriteSecurity Unit Type I HDD Encryption Unit: HDD Encryption Unit Type A Version: Software System/Copy 1.02 Network Support 7.34 Scanner 01.24 Printer 1.01 Fax 02.00.00 RemoteFax 02.00.00 Web Support 1.04 Web Uapl 1.02 Network DocBox 1.00 animation 1.3 Option PCL 1.03 OptionPCLFont 1.01 Engine 1.00:01 OpePanel 1.08 LANG0 1.07 LANG1 1.07, Hardware Ic Key 1100 Ic Hdd 01, Options Data Erase Opt 1.01m GWFCU3-19(WW) 02.00.00   + + + Ricoh Company, Ltd. + + +   + + 2011-03-292016-04-08 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Lexmark X463, X464, X651, X652, X654, X734 and X736 Multi-Function Printers and InfoPrint 1930, 1940, 1850, 1860, 1870, Color 1846, Color 1856 Multi-Function Printers   +
+ +
+ + + + + + +
+
+ Lexmark International, Inc. + + +   + + 2011-02-032014-11-01 + + + EAL3+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Lexmark X466, X656, X658, X738, X860, X862, and X864 Multi-Function Printers and InfoPrint 1940, 1870, 1880, Color 1866, 1948, 1968, 1988 Multi-Function Printers   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2011-05-24 – Lexmark X466, X656, X658, X738, X860, X862, X864 Multi-Function Printers and InfoPrint 1940, 1870, 1880, Color 1866, 1948, 1968, 1988 Multi-Function Printers Version 1.0
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Lexmark International, Inc. + + +   + + 2011-02-022014-11-01 + + + EAL3+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Xerox WorkCentre 4250 & 4260 Multifunction Systems (4250, 4250s, 4250x, 4250xf, 4260s, 4260x and 4260xf)   +
+ +
+ + + + + + +
+
+ Xerox Corporation + + +   + + 2010-12-102017-07-13 + + + EAL3+ +
ALC_FLR.3 +
+ + AU – Australasian Certification Authority (ACA)
AU
+
+ + Xerox WorkCentre 5135/5150 Multifunction Systems   +
+ +
+ + + + + + +
+
+ Xerox Corporation + + +   + + 2010-11-262017-05-15 + + + EAL3+ +
ALC_FLR.3 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Xerox WorkCentre 5632/5638/5645/5655/5665/5675/5687 Multifunction Systems   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2010-12-08 – Xerox WorkCentre 5735/5740/5745/5755/5765/5775/5790 Multifunction Systems
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Xerox Corporation + + +   + + 2010-11-262017-05-15 + + + EAL3+ +
ALC_FLR.3 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Samsung MFP Security Kit Type_E V1.0   +
+ +
+ + + + + + +
+
+ Samsung Electronics Co., Ltd. + + +   + + 2010-11-092013-05-06 + + + EAL3+ +
ALC_FLR.2 +
+ + KR – IT Security Certification Center(ITSCC)
KR
+
+ + Following MFP with Fax Option JAPAN: MFP: imagio MP 6001 SP,imagio MP 7501 SP Fax Option: imagio FAX Unit Type 18 Overseas: MFP: Ricoh Aficio MP 6001 SP, Ricoh Aficio MP 7001 SP, Ricoh Aficio MP 8001 SP, Ricoh Aficio MP 9001 SP, Savin 9060sp, Savin 9070sp, Savin 9080sp, Savin 9090sp, Lanier LD360sp, Lanier LD370sp, Lanier LD380sp, Lanier LD390sp, Lanier MP 6001 SP, Lanier MP 7001 SP, Lanier MP 8001 SP, Lanier MP 9001 SP, Gestetner MP 6001 SP,Gestetner MP 7001 SP, Gestetner MP 8001 SP,Gestetner MP 9001 SP, nashuatec MP 6001 SP, nashuatec MP 7001 SP, nashuatec MP 8001 SP,nashuatec MP 9001 SP, Rex-Rotary MP 6001 SP,Rex-Rotary MP 7001 SP, Rex-Rotary MP 8001 SP,Rex-Rotary MP 9001 SP, infotec MP 6001 SP,infotec MP 7001 SP, infotec MP 8001 SP,infotec MP 9001 SP Fax Option: Option Type 9001 MFP Version: Software System/Copy 1.15 Network Support 8.65 Scanner 01.19 Printer 1.15 Fax 02.00.00 Web Support 1.09 Web Uapl 1.05 Network Doc Box 1.04 Hardware Ic Key 1100 Ic Ctlr 03 FCU Version : GWFCU3-16(WW) 02.00.00   +
+ +
+ + + + + + +
+
+ Ricoh Company, Ltd. + + +   + + 2010-09-282015-10-01 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Samsung MFP Security Kit Type_B V1.5   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2013-07-05 – Samsung MFP Security Kit Type_B V1.5
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ HP Inc. + + +   + + 2010-09-282019-06-01 + + + EAL3 + + + KR – IT Security Certification Center(ITSCC)
KR
+
+ + Samsung MFP Security Kit Type_C V1.0   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2013-07-05 – Samsung MFP Security Kit Type_C V1.0
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ HP Inc. + + +   + + 2010-09-282019-06-01 + + + EAL3 + + + KR – IT Security Certification Center(ITSCC)
KR
+
+ + Samsung MFP Security Kit Type_C V1.5   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2013-07-05 – Samsung MFP Security Kit Type_C V1.5
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ HP Inc. + + +   + + 2010-09-282019-06-01 + + + EAL3 + + + KR – IT Security Certification Center(ITSCC)
KR
+
+ + Following MFP with FCU(Fax Option Type C5000) MFP: Ricoh Aficio MP C2800, Ricoh Aficio MP C2800G, Ricoh Aficio MP C3300, Ricoh Aficio MP C3300G, Savin C2828, Savin C2828G, Savin C3333, Savin C3333G, Lanier LD528C, Lanier LD528CG, Lanier LD533C, Lanier LD533CG, Lanier MP C2800, Lanier MP C3300, Gestetner MP C2800, Gestetner MP C3300, nashuatec MP C2800, nashuatec MP C3300, Rex-Rotary MP C2800, Rex-Rotary MP C3300, infotec MP C2800, infotec MP C3300 FCU: Fax Option Type C5000 MFP Software /Hardware Version : Software System/Copy 1.22 Network Support 8.27 Scanner 01.23 Printer 1.22 Fax 04.00.00 Web Support 1.10 Web Uapl 1.08 Network Doc Box 1.03 Hardware Ic Key 1100 Ic Ctlr 03 FCU Version : GWFCU3-13(WW) 04.04.00   +
+ +
+ + + + + + +
+
+ Ricoh Company, Ltd. + + +   + + 2010-08-312015-09-01 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Following MFP with FCU (Fax Option Type 5001). MFP: Ricoh Aficio MP 4001, Ricoh Aficio MP 4001G, Ricoh Aficio MP 5001, Ricoh Aficio MP 5001G, Savin 9240, Savin 9240G, Savin 9250, Savin 9250G, Lanier LD140, Lanier LD140G, Lanier LD150, Lanier LD150G, Lanier MP 4001, Lanier MP 5001, Gestetner MP 4001, Gestetner MP 4001G, Gestetner MP 5001, Gestetner MP 5001G, nashuatec MP 4001, nashuatec MP 5001, Rex-Rotary MP 4001, Rex-Rotary MP 5001, infotec MP 4001, infotec MP 5001 FCU: Fax Option Type 5001 Version: MFP Software/Hardware Version: Software System/Copy 1.00, Network Support 7.29.3, Scanner 01.24, Printer 1.00, Fax 01.00.00, Web Support 1.00.1, Web Uapl 1.02, Network Doc Box 1.00, Hardware Ic Key 1100, Ic Hdd 01, FCU Version: GWFCU3-19(WW) 01.00.00   +
+ +
+ + + + + + +
+
+ Ricoh Company, Ltd. + + +   + + 2010-07-302015-08-02 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + bizhub C360 / bizhub C280 / bizhub C220 / bizhub C7728 / bizhub C7722 / ineo+ 360 / ineo+ 280 / ineo+ 220 / VarioLink 3622c / VarioLink 2822c / VarioLink 2222c Control Software Version:A0ED0Y0-0100-GM0-22   +
+ +
+ + + + + + +
+
+ Konica Minolta Business Technologies, Inc + + +   + + 2010-06-292011-04-15 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + bizhub C652 / bizhub C652DS / bizhub C552 / bizhub C552DS / bizhub C452 / ineo+ 652 / ineo+ 652DS / ineo+ 552 / ineo+ 452 / VarioLink 6522c / VarioLink 5522c / VarioLink 4522c Control Software Version:A0P00Y0-0100-GM0-22   +
+ +
+ + + + + + +
+
+ Konica Minolta Business Technologies, Inc + + +   + + 2010-06-292011-04-15 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Following MFP with FCU(Fax Option Type 3351) MFP:Ricoh Aficio MP 2851, Ricoh Aficio MP 3351, Savin 9228, Savin 9233, Lanier LD528, Lanier LD533, Lanier MP 2851, Lanier MP 3351, Gestetner MP 2851, Gestetner MP 3351, nashuatec MP 2851, nashuatec MP 3351, Rex-Rotary MP 2851, Rex-Rotary MP 3351, infotec MP 2851, infotec MP 3351, FCU:Fax Option Type 3351 MFP Software /Hardware Version :Software System/Copy 1.00, Network Support 7.29.3, Scanner 01.12, Printer 1.01, Fax 01.00.00, Web Support 1.01, Web Uapl 1.03, Network Doc Box 1.00, Hardware Ic Key 1100, Ic Hdd 01, FCU Version : GWFCU3-20(WW) 01.00.00   +
+ +
+ + + + + + +
+
+ Ricoh Company, Ltd. + + +   + + 2010-06-292015-06-30 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Xerox WorkCentre 7120 Version:Controller ROM Ver. 1.201.6, IOT ROM Ver. 4.21.0, ADF ROM Ver. 7.06.50   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2010-06-172015-06-30 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Samsung MFP Security Kit Type_A V1.5   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2013-07-05 – Samsung MFP Security Kit Type_A V1.5
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ HP Inc. + + +   + + 2010-04-222019-06-01 + + + EAL3 + + + KR – IT Security Certification Center(ITSCC)
KR
+
+ + Samsung MFP Security Kit Type_A V2.0   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2013-07-05 – Samsung MFP Security Kit Type_A V2.0
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ HP Inc. + + +   + + 2010-04-222019-06-01 + + + EAL3 + + + KR – IT Security Certification Center(ITSCC)
KR
+
+ + Samsung MFP Security Kit Type_B V1.0   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2013-07-05 – Samsung MFP Security Kit Type_B V1.0
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ HP Inc. + + +   + + 2010-04-222019-06-01 + + + EAL3 + + + KR – IT Security Certification Center(ITSCC)
KR
+
+ + Samsung MFP Security Kit Type_D V1.0   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2013-07-05 – Samsung MFP Security Kit Type_D V1.0
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ HP Inc. + + +   + + 2010-04-222019-06-01 + + + EAL3 + + + KR – IT Security Certification Center(ITSCC)
KR
+
+ + Fuji Xerox ApeosPort-IV C5570/C4470/C3370/C2270, DocuCentre-IV C5570/C4470/C3370/C2270 Series Controller Software for Asia Pacific Controller ROM Ver.1.101.12   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2010-03-122013-01-17 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Fuji Xerox ApeosPort-IV C5570/C4470/C3370/C2270, DocuCentre-IV C5570/C4470/C3370/C2270 Series Controller Software for Asia Pacific Controller ROM Ver.1.101.12   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2010-03-122013-01-17 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Xerox 4112/4127 Copier/Printer Controller+PS ROM Ver. 1.211.8 IOT ROM Ver. 46.18.0 IIT ROM Ver. 15.6.1 IIT Option ROM Ver. 14.0.4 ADF ROM Ver. 12.2.7   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2010-03-122015-03-31 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Japan: Ricoh imagio MP 2550/3350 series, Overseas:Ricoh Aficio MP 2550/3350 series,Savin 9025/9033 series,Lanier LD425/LD433 series,Lanier LD425/LD433 series,Lanier MP 2550/3350 series,Gestetner MP 2550/3350 series,nashuatec MP 2550/3350 series,RexRotary MP 2550/3350 series,infotec MP 2550/3350 series Version:System/Copy:1.14,Network Support:7.23,Scanner:1.11,Printer:1.05,Fax:05.00.00,Web Support:1.52,Web Uapl:1.10,Network Doc Box:1.10C,Ic Key:1100,Ic Hdd: 01   +
+ +
+ + + + + + +
+
+ Ricoh Company, Ltd. + + +   + + 2010-02-252015-03-01 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + MX-FR14 Version:C.10   +
+ +
+ + + + + + +
+
+ Sharp Corporation + + +   + + 2010-02-252015-03-01 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Ricoh imagio MP 5000SP/4000SP with security card Type 9 Version: - Firmware Configuration System Version V2.16-00 System/Copy 1.11.1, Network Support 7.26, Network DocBox 1.10C, Web Support 1.59, Web Uapl 1.15, animation 1.3, Scanner 01.24, RPDL 7.33, Printer 1.11, MSIS 7.15.02, RPCS Font 1.01, Engine 1.04:05, OpePanel 1.01, LANG0 1.01, LANG1 1.01, ADF 15.000:15, - ASIC Ic Key 1100 - Option Data Erase Opt 1.01m   + + + Ricoh Company, Ltd. + + +   + + 2010-02-252015-03-01 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + bizhub C360 / bizhub C280 / bizhub C220 / ineo+ 360 / ineo+ 280 / ineo+ 220 / VarioLink 3622c / VarioLink 2822c / VarioLink 2222c Control Software Version:A0ED0Y0-0100-GM0-12   +
+ +
+ + + + + + +
+
+ Konica Minolta Business Technologies, Inc + + +   + + 2009-11-302011-04-15 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Japan: Ricoh imagio MP 4000/5000 series, Overseas: Ricoh Aficio MP 4000/5000 series, Savin 9040/9050 series, Lanier MP 4000/5000 series, Gestetner MP 4000/5000 series, Nashuatec MP 4000/5000 series, Rex-Rotary MP 4000/5000 series, Infotec MP 4000/5000 series Version: System/Copy: 1.09, Network Support: 7.23, Scanner: 01.23, Printer: 1.09, Fax: 03.00.00, Web Support: 1.57, Web Uapl: 1.13.1, Network Doc Box: 1.09.3C, Ic Key: 1100, Ic Hdd: 01   +
+ +
+ + + + + + +
+
+ Ricoh Company, Ltd. + + +   + + 2009-11-132014-11-14 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Fuji Xerox ApeosPort-III C7600/C6500/C5500 DocuCentre-III C7600/C6500/C5500 Series Controller Software for Asia Pacific Version:Controller ROM Ver.3.120.2   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2009-10-152013-01-17 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Xerox WorkCentre 7425/7428/7435 Version: Controller+PS ROM Ver. 1.180.9 IOT ROM Ver. 40.10.0 IIT ROM Ver. 22.13.1 ADF ROM Ver. 20.0.0   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2009-07-152014-07-31 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + bizhub C652 / bizhub C552 / ineo+ 652 / ineo+ 552 / VarioLink 6522c / VarioLink 5522c Control Software Version:A0P00Y0-0100-GM0-02   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2009-08-05 – bizhub C652 / bizhub C552 / ineo+ 652 / ineo+ 552 / VarioLink 6522c / VarioLink 5522c Control Software Version: A0P00Y0-0100-GM0-04
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Konica Minolta Business Technologies, Inc + + +   + + 2009-06-292011-04-15 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + System Software for e-STUDIO205L/255/305/355/455 V3.0   +
+ +
+ + + + + + +
+
+ Toshiba TEC Corporation + + +   + + 2009-06-292013-02-15 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + System Software for e-STUDIO555/ 655/755/855 V3.0   +
+ +
+ + + + + + +
+
+ Toshiba TEC Corporation + + +   + + 2009-06-292013-02-15 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Xerox WorkCentre Multifunction Systems V 4150/4150s/4050x/4150xf   +
+ +
+ + + + + + +
+
+ Xerox Corporation + + +   + + 2009-06-022019-09-01 + + + EAL3+ +
ALC_FLR.3 +
+ + AU – Australasian Certification Authority (ACA)
AU
+
+ + Xerox WorkCentre 5632/5638/5645/5655/5665/5675/5687 Multifunction Systems System Software Version 21.113.02.000   +
+ +
+ + + + + + +
+
+ Xerox Corporation + + +   + + 2009-04-302019-09-01 + + + EAL2+ +
ALC_FLR.3 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Fuji Xerox ApeosPort-III 4000/3010 DocuCentre-III 4000/3010 Series Controller Software   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2009-03-132013-01-17 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Fuji Xerox ApeosPort-III C7600/C6500/C5500 DocuCentre-III C7600/C6500/C5500 Series Controller Software Controller ROM Ver. 3.0.15   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2009-03-132013-01-17 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Fuji Xerox DocuCentre-III 3007/2007 Series Controller Software for Asia Pacific Controller ROM Ver. 1.120.2   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2009-03-132013-01-17 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Fuji Xerox DocuCentre-III C4100/C3100 Series Controller Software for Asia Pacific Controller ROM Ver. 1.120.2   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2009-03-132010-12-27 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Fuji Xerox ApeosPort-III 7000/6000/5000 DocuCentre-III 7000/6000/5000 Series Controller Software Version: Controller ROM Ver. 1.0.13   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2009-02-122013-01-17 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Fuji Xerox ApeosPort-III C3300/C2200/C2201 DocuCentre-III C3300/C2200/C2201 Series Controller Software for Asia Pacific Version: Controller ROM Ver. 1.120.5   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2009-02-122010-12-27 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Fuji Xerox ApeosPort-III C4400 DocuCentre-III C4400 Series Controller Software for Asia Pacific Version: Controller ROM Ver. 1.121.3   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2009-02-122010-12-27 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Samsung MFP Security Kit Type_A V1.0   +
+ +
+ + + + + + +
+
+ Samsung Electronics Co., Ltd. + + +   + + 2008-12-222013-05-06 + + + EAL3 + + + KR – IT Security Certification Center(ITSCC)
KR
+
+ + Fuji Xerox ApeosPort-II 7000/6000 Series Controller Software for Asia Pacific Version: Controller ROM Ver. 1.180.7   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2008-11-282013-01-17 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Data Security Kit DA-SC06 Version: V1.01   +
+ +
+ + + + + + +
+
+ Panasonic Communications Co., Ltd. + + +   + + 2008-10-302010-12-13 + + + EAL2 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + MX-FRX8 Version M.10   +
+ +
+ + + + + + +
+
+ Sharp Corporation + + +   + + 2008-10-302013-12-09 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Xerox WorkCentre 5222/5225/5230 Version: Controller+PS ROM Ver.1.204.4, IOT ROM Ver.11.21.0, IIT ROM Ver.3.7.0, ADF ROM Ver.20.0.0   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2008-09-112013-10-07 + + + EAL2 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Xerox WorkCentre 5225A/5230A Version: Controller+PS ROM Ver.1.224.0, IOT ROM Ver.11.21.0, IIT ROM Ver.23.7.0, ADF ROM Ver.20.0.0   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2008-09-112013-10-07 + + + EAL2 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Xerox WorkCentre 5030/5050 Multifunction Systems, System Software Version 5.003.07.000   +
+ +
+ + + + + + +
+
+ Xerox Corporation + + +   + + 2008-08-192019-09-01 + + + EAL2+ +
ALC_FLR.3 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + System Software for e-STUDIO202L/232/282, e-STUDIO203L/233/283 V2.0   +
+ +
+ + + + + + +
+
+ Toshiba TEC Corporation + + +   + + 2008-08-122010-12-10 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + System Software for e-STUDIO352/452, e-STUDIO353/453 V2.0   +
+ +
+ + + + + + +
+
+ Toshiba TEC Corporation + + +   + + 2008-08-122010-12-10 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + System Software for e-STUDIO520/600/720/850, e-STUDIO523/603/723/853 V2.0   +
+ +
+ + + + + + +
+
+ Toshiba TEC Corporation + + +   + + 2008-08-122010-12-10 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Xerox WorkCentre 7346 Version: Controller+PS ROM Ver. 1.223.4, IOT ROM Ver 3.2.0, IIT ROM Ver 20.4.3, ADF ROM Ver 11.6.5   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2008-06-132013-01-17 + + + EAL2 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Data Security Kit DA-SC04 V1.00   +
+ +
+ + + + + + +
+
+ Panasonic Communications Co., Ltd. + + +   + + 2008-05-302010-12-13 + + + EAL2 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Fuji Xerox ApeosPort-III C3300/C2200 DocuCentre-III C3300/C2200 Series Controller Software Version: Controller ROM Ver 1.0.10   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2008-05-302013-01-17 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Fuji Xerox ApeosPort-III C4400 DocuCentre-III C4400 Series Controller Software Version: Controller ROM Ver 1.0.8   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2008-05-302013-01-17 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Xerox WorkCentre 7232/7242 Version: Controller+PS ROM Ver.1.203.0, IOT ROM Ver.4.7.0, IIT ROM Ver.20.4.1, ADF ROM Ver.20.0.0   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2008-02-282013-01-17 + + + EAL2 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Fuji Xerox ApeosPort-II 5010/4000/3000 Series Controller Software for Asia Pacific Version: Controller ROM V1.180.0   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2008-01-252013-01-17 + + + EAL2 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Fuji Xerox ApeosPort-II C7500/C6500/C5400, DocuCentre-II C7500/C6500/C5400 Series Controller Software for Asia Pacific Version: Controller ROM V2.100.0   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2008-01-252010-12-27 + + + EAL2 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Fuji Xerox DocuCentre-II 3005/2055/2005 Series Controller Software for Asia Pacific Version: Controller ROM V1.130.1   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2008-01-252013-01-17 + + + EAL2 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Fuji Xerox DocuCentre-II C3000 Series Controller Software for Asia Pacific Version: Controller ROM V1.121.4   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2008-01-252010-12-27 + + + EAL2 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Xerox WorkCentre 7328/7335/7345 Version: Controller+PS ROM Ver.1.221.100 IOT ROM Ver.3.0.4 IIT ROM Ver.20.4.1 ADF ROM Ver.11.6.5   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2007-12-262013-01-17 + + + EAL2 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + bizhub C253 / bizhub C203 / ineo+ 253 / ineo+ 203 ControlSoftware   +
+ +
+ + + + + + +
+
+ Konica Minolta Business Technologies, Inc + + +   + + 2007-11-262010-12-28 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + bizhub C353/ ineo+ 353 Control Software   +
+ +
+ + + + + + +
+
+ Konica Minolta Business Technologies, Inc + + +   + + 2007-11-262010-12-28 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + bizhub C550 / bizhub C451 / ineo+ 550 / ineo+ 451 Control Software v A00H0Y0-0100-GM0-00   +
+ +
+ + + + + + +
+
+ Konica Minolta Business Technologies, Inc + + +   + + 2007-10-292010-12-28 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + bizhub C650 / ineo+ 650 Control Software v A00J0Y0-0100-GM0-00   +
+ +
+ + + + + + +
+
+ Konica Minolta Business Technologies, Inc + + +   + + 2007-10-292010-12-28 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Lexmark X642e (firmware revision LC2.MB.P237) and X644e (firmware revision LC2.MC.P239b) Multifunction Printers (MFPs)   +
+ +
+ + + + + + +
+
+ Lexmark International, Inc. + + +   + + 2007-09-212012-09-06 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + Lexmark X646dte (firmware revision LC2.MC.P239b), X646e (firmware revision LC2.MC.P239b), X646ef (firmware revision LC2.TI.P239b), X772e (firmware revision LC2.TR.P275), X850e (firmware revision LC2.BE.P238b), X852e (firmware revision LC2.BE.P238b), X854e (firmware revision LC2.BE.P238b), X940e (firmware revision LC.BR.P060) and X945e (firmware revision LC.BR.P060) Multifunction Printers (MFPs)   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2008-04-09 – Lexmark X782e MFP (firmware version LC2.TO.P305a)
    + Maintenance Report + +
  2. + +
    +
  3. + 2008-12-08 – Lexmark X646dte (firmware revision LC2.MC.P239b), X646e (firmware revision LC2.MC.P239b), X646ef (firmware revision LC2.TI.P239b), X772e (firmware revision LC2.TR.P275), X850e (firmware revision LC2.BE.P238b), X852e (firmware revision LC2.BE.P238b), X854e (firmware revision LC2.BE.P238b), X940e (firmware revision LC.BR.P060) and X945e (firmware revision LC.BR.P060) Multifunction Printers (MFPs)
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ Lexmark International, Inc. + + +   + + 2007-09-212012-09-06 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + Xerox WorkCentre/WorkCentre Pro 232/238/245/255/265/275   +
+ +
+ + + + + + +
+
+ Xerox Corporation + + +   + + 2007-06-302012-09-07 + + + EAL2+ +
ALC_FLR.3 +
+ + US – National Information Assurance Partnership
US
+
+ + bizhub C450P / ineo+ 450P Control Software 4037-0100-GM0-11-000   +
+ +
+ + + + + + +
+
+ Konica Minolta Business Technologies, Inc + + +   + + 2007-06-272010-12-28 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Xerox WorkCentre 7655/7665 Multifunction Systems   +
+ +
+ + + + + + +
+
+ Xerox Corporation + + +   + + 2007-06-182012-09-07 + + + EAL2+ +
ALC_FLR.3 +
+ + US – National Information Assurance Partnership
US
+
+ + bizhub C252 / ineo+ 251 Control Software   +
+ +
+ + + + + + +
+
+ Konica Minolta Business Technologies, Inc + + +   + + 2007-05-302010-12-28 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Ricoh Hard Disc Security Module with imagio Security Module Type A, imagio Security Card Type A, DataOverwriteSecurity Unit Type A, and DataOverwriteSecurity Unit Type B   +
+ +
+ + + + + + +
+
+ Ricoh Company, Ltd. + + +   + + 2007-05-162012-09-07 + + + EAL3 + + + US – National Information Assurance Partnership
US
+
+ + bizhub 500 / bizhub 420 / bizhub 360 /ineo 500 / ineo 420 / ineo 360 Control Software 50GA-0100-G00-30-000   +
+ +
+ + + + + + +
+
+ Konica Minolta Business Technologies, Inc + + +   + + 2007-04-272010-12-28 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + bizhub 500 / bizhub 420 / ineo 500 / ineo 420 Control Software 50GA-0100-G00-21-000   +
+ +
+ + + + + + +
+
+ Konica Minolta Business Technologies, Inc + + +   + + 2007-03-222010-12-28 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + bizhub 750 / bizhub 600 / ineo 750 / ineo 600 Control Software MFP system controller program : 57AA-0100-G00-21-000 MFP image controller program : 57AA-1000-G00-21-000   +
+ +
+ + + + + + +
+
+ Konica Minolta Business Technologies, Inc + + +   + + 2007-03-222010-12-28 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Fuji Xerox ApeosPort-II C7500/C6500/C5400 DocuCentre-II C7500/C6500/C5400 Series Data Security Kit Controller ROM Ver2.0.1   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2007-02-222013-01-17 + + + EAL2 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Fuji Xerox DocuCentre-II 4000/3000 Series Data Security Kit Controller ROM Ver1.0.17   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2007-02-222013-01-17 + + + EAL2 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Xerox WorkCentre 7228/7235/7245 Series Security Kit Controller+PS Ver1.220.2   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2007-02-222013-01-17 + + + EAL2 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + bizhub 350 /bizhub 250 /bizhub 200 /ineo 350 /ineo 250 (Ver.2) Control Software 4040-0100-G20-52-000   +
+ +
+ + + + + + +
+
+ Konica Minolta Business Technologies, Inc + + +   + + 2007-01-242010-12-28 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Fuji Xerox ApeosPort-II C4300/C3300/C2200 Series Data Security Kit Controller ROM Ver1.41.16   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2006-12-152010-12-27 + + + EAL2 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Fuji Xerox ApeosPort-II C4300/C3300/C2200 Series Security Kit for Asia Pacific Controller ROM Ver1.121.7   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2006-12-152010-12-27 + + + EAL2 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Fuji Xerox DocuCentre-II C4300/C3300/C2200 Series Data Security Kit Controller ROM Ver1.1.16   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2006-12-152010-12-27 + + + EAL2 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Fuji Xerox DocuCentre-II C4300/C3300/C2200 Series Security Kit for Asia Pacific Controller ROM Ver1.101.7   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2006-12-152010-12-27 + + + EAL2 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + MX-FRX3 Version M.10   +
+ +
+ + + + + + +
+
+ Sharp Corporation + + +   + + 2006-12-152010-12-10 + + + EAL3+ +
ADV_SPM.1 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + bizhub C250 / ineo+ 250 Control Software 4038-0100-GM0-05-000   +
+ +
+ + + + + + +
+
+ Konica Minolta Business Technologies, Inc + + +   + + 2006-11-222010-12-28 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + bizhub C352 / bizhub C300 / ineo+ 351 / ineo+ 300 Control Software 9J06-0100-GM0-05-000   +
+ +
+ + + + + + +
+
+ Konica Minolta Business Technologies, Inc + + +   + + 2006-11-222010-12-28 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + bizhub C450 / bizhub C351 / ineo+ 450 / ineo+ 350 Control Software 4037-0100-GM0-05-000   +
+ +
+ + + + + + +
+
+ Konica Minolta Business Technologies, Inc + + +   + + 2006-11-222010-12-28 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + bizhub 350 / bizhub 250 / bizhub 200 / ineo 350 / ineo 250 (Ver.1) Control Software 4040-0100-G10-25-000   +
+ +
+ + + + + + +
+
+ Konica Minolta Business Technologies, Inc + + +   + + 2006-10-312010-12-28 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Data Security Kit DA-SC01 V1.01   +
+ +
+ + + + + + +
+
+ Panasonic Communications Co., Ltd. + + +   + + 2006-10-312010-12-13 + + + EAL2 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Data Security Kit DA-SC03 V1.01   +
+ +
+ + + + + + +
+
+ Panasonic Communications Co., Ltd. + + +   + + 2006-10-312010-12-13 + + + EAL2 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + MX-FRX2 Version M.10   +
+ +
+ + + + + + +
+
+ Sharp Corporation + + +   + + 2006-10-312010-12-10 + + + EAL3+ +
ADV_SPM.1 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + MX-FRX1 Version M.10   +
+ +
+ + + + + + +
+
+ Sharp Corporation + + +   + + 2006-09-142010-12-10 + + + EAL3+ +
ADV_SPM.1 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Fuji Xerox ApeosPort 550 I/450 I/350 I, DocuCentre 550 I/450 I Series Security Kit for Asia Pacific Controller ROM Ver1.100.3   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2006-09-072010-12-27 + + + EAL2 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Fuji Xerox ApeosPort 750 I/650 I, DocuCentre 750 I/650 I Series Security Kit for Asia Pacific Controller ROM Ver1.101.2   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2006-09-072010-12-27 + + + EAL2 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Fuji Xerox ApeosPort C7550 I/C6550 I/C5540 I, DocuCentre C7550 I/C6550 I/C5540 I Series Security Kit for Asia Pacific Controller ROM Ver1.102.2   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2006-09-072010-12-27 + + + EAL2 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + System Software for e-STUDIO2500c/3500c/3510c V1.0   +
+ +
+ + + + + + +
+
+ Toshiba TEC Corporation + + +   + + 2006-06-282010-12-10 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Xerox WorkCentre/WorkCentre Pro 232/238/245/255/265/275   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2006-08-23 – Xerox WorkCentre/WorkCentre Pro 232/238/245/255/265/275 Multifunction Systems, running System Software Version 12.039.24.001 Maintenance Release - Aug 06
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Xerox Corporation + + +   + + 2006-04-062012-09-07 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + System Software for e-STUDIO352/452 V1.0   +
+ +
+ + + + + + +
+
+ Toshiba TEC Corporation + + +   + + 2006-03-292010-12-10 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + System Software for e-STUDIO520/600/720/850 V1.0   +
+ +
+ + + + + + +
+
+ Toshiba TEC Corporation + + +   + + 2006-03-292010-12-10 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Fuji Xerox ApeosPort 750 I / 650 I / 550 I DocuCentre 750 I / 650 I / 550 I Series Data Security Kit Controller ROM Ver1.1.1   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2006-02-082010-12-27 + + + EAL2 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Fuji Xerox ApeosPort C7550 I / C6550 I / C5540 I DocuCentre C7550 I / C6550 I / C5540 I Series Data Security Kit Controller ROM Ver1.1.4   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2006-02-082010-12-27 + + + EAL2 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Xerox CopyCentre C2128/C2636/C3545 Copier and WorkCentre Pro C2128/C2636/C3545 Advanced Multifunction System including Image Overwrite Security   +
+ +
+ + + + + + +
+
+ Xerox Corporation + + +   + + 2005-09-302012-09-07 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + Fuji Xerox ApeosPort C4535 I/C3626 I/C2521 I DocuCentre C4535 I/C3626 I/C2521 I Series Data Security Kit Controller ROM Ver1.3.0   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2005-07-072010-12-27 + + + EAL2 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Canon iR5570/iR6570 Series Encrypted Printing Software-B1 Version 1.01   +
+ +
+ + + + + + +
+
+ Canon Inc. + + +   + + 2005-06-032013-01-07 + + + EAL2 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Xerox CopyCentre C65/C75/C90 and WorkCentre Pro 65/75/90 Advanced Multifunction System including Image Overwrite   +
+ +
+ + + + + + +
+
+ Xerox Corporation + + +   + + 2005-02-112012-09-07 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + Xerox WorkCentre M35/M45/M55 and WorkCentre Pro 35/45/55 Advanced Multifunction System with Image Overwrite Security Service Maintenance Pack 2   +
+ +
+ + + + + + +
+
+ Xerox Corporation + + +   + + 2005-02-112012-09-07 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + 4036 Multi Function Peripheral Control Software (for bizhub C350/CF2203/8022) Macro System Controller : 4036-10G0-18-00 Network Module : 4036-A0G0-04-00   +
+ +
+ + + + + + +
+
+ Konica Minolta Business Technologies, Inc + + +   + + 2004-09-172010-12-28 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Data Security Kit AR-FR4, Data Security Kit AR-FR5 AR-FR4: version M.20 AR-FR5: version E.20   +
+ +
+ + + + + + +
+
+ Sharp Corporation + + +   + + 2004-09-172013-01-07 + + + EAL4 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Fuji Xerox DocuCentre 719/659/559 Series Data Security Kit, DC System ROM Version V512, PESS ROM Version V3.0.4   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2004-09-172010-12-27 + + + EAL2 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Di3510 Series/Di3510f Series Multi Function Peripheral Security Kit User Interface: 4030-20G0-05-00 Network Module: 4030-A0G0-03-00   +
+ +
+ + + + + + +
+
+ Konica Minolta Business Technologies, Inc + + +   + + 2004-08-032010-12-28 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + 7222/7228/7235 control software Version 10.0000   +
+ +
+ + + + + + +
+
+ Konica Minolta Business Technologies, Inc + + +   + + 2004-06-292010-12-28 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Canon ImageRUNNER 2200/2800/3300 Series Software Version iR2200N-USen50.06 with Security Kit B1   +
+ +
+ + + + + + +
+
+ Canon USA Inc. + + +   + + 2004-06-162012-09-06 + + + EAL3 + + + US – National Information Assurance Partnership
US
+
+ + Scrambler Board GP-1010 V2.0 for the e-STUDIO 550/650/810   +
+ +
+ + + + + + +
+
+ Toshiba TEC Corporation + + +   + + 2004-03-162010-12-10 + + + EAL2 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Sharp Corporation Multifunction Device with Data Security Kit (AR-FR4 V.M.10, AR-FR5 V.E.10, AR-FR6 V.J.10)   +
+ +
+ + + + + + +
+
+ Sharp Electronics Corporation + + +   + + 2003-12-012012-09-07 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ProductVendorProduct
Certificate
Date Certificate
Issued
Certificate
Validity
Expiration
Date
(Archived)
ComplianceScheme
+ This list was generated on Friday, April 16, 2021, at 10:31 AM +
+ Network and Network-Related Devices and Systems – 406 Certified Products +
+ + BlackBerry SecuGATE version 4.0   + + + Blackberry + + + CCRA Certificate + + 2019-12-192020-12-19 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Cisco Expressway X12.5   + + + Cisco Systems, Inc. + + + CCRA Certificate + + 2019-08-192020-02-26 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Ciena Carrier Ethernet Solutions (CES) 3900 series and 5100 series   + + + Ciena, Inc. + + + CCRA Certificate + + 2019-03-262021-03-26 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Cisco Catalyst 3650 and 3850 Series Switches running IOS-XE 16.9   + + + Cisco Systems, Inc. + + + CCRA Certificate + + 2019-03-142021-03-14 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Junos OS 18.1R3 for MX series and EX9200 series   + + + Juniper Networks, Inc. + + + CCRA Certificate + + 2019-02-212021-02-21 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Trend Micro TippingPoint Threat Protection System version 5.1.0   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2019-11-06 – Trend Micro TippingPoint Threat Protection System (TPS) v5.2
    + Maintenance Report + +
  2. + +
    +
  3. + 2020-04-13 – Trend Micro TippingPoint Threat Protection System (TPS) v5.3
    + Maintenance Report + + Maintenance ST + +
  4. + +
+
+ + +
+
+ Trend Micro Inc. + + + CCRA Certificate + + 2019-01-302021-01-30 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Juniper Junos OS 18.1R2 for QFX10002, QFX10008 and QFX10016   + + + Juniper Networks, Inc. + + + CCRA Certificate + + 2019-01-282021-01-28 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Fortinet FortiMail 6.0   + + + Fortinet, Inc. + + + CCRA Certificate + + 2019-01-172021-01-17 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Extreme Networks, Inc. VDX Product Series operating with NOS version 7.3.0aa   + + + Extreme Networks, Inc. + + + CCRA Certificate + + 2019-01-112021-01-11 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Cisco Catalyst 2960 and 3560 Wired Access Switches running IOS 15.2   + + + Cisco Systems, Inc. + + + CCRA Certificate + + 2018-11-292020-11-29 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Cisco Catalyst 4500 Series Wired Access Switches running IOS-XE 3.10   + + + Cisco Systems, Inc. + + + CCRA Certificate + + 2018-11-292020-11-29 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Cisco IoT Industrial Ethernet and Connected Grid Switches running IOS 15.2   + + + Cisco Systems, Inc. + + + CCRA Certificate + + 2018-11-292020-11-29 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Voyager TDC 10G Switch - V2.0   + + + Klas Telecom, Inc. + + + CCRA Certificate + + 2018-11-192020-11-19 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Aruba, a Hewlett Packard Enterprise Company 8320 and 8400 Switch Series   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2019-04-05 – Aruba, a Hewlett Packard Enterprise Company 8320 8325 and 8400 Switch Series
    + Maintenance Report + + Maintenance ST + +
  2. + +
    +
  3. + 2019-10-16 – Aruba, a Hewlett Packard Enterprise Company 8320 8325 and 8400 Switch Series
    + Maintenance Report + + Maintenance ST + +
  4. + +
+
+ + +
+
+ Aruba Networks + + + CCRA Certificate + + 2018-10-302020-10-30 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + GigaVUE Visibility Appliances with GigaVUE-OS Version 5.1.01 Models: GigaVUE-HD8, GigaVUE-HD4, GigaVUE-HC3, GigaVUE-HC2, GigaVUE-HC1, GigaVUE-TA100, GigaVUE-TA40, GigaVUE-TA10   +
+ +
+ + + + + + +
+
+ Gigamon LLC + + + CCRA Certificate + + 2018-10-012020-10-01 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Ciena 6500 Packet-Optical Platform   +
+ +
+ + + + + + +
+
+ Ciena, Inc. + + + CCRA Certificate + + 2018-09-302020-09-30 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Fidelis Network v9.0.3   + + + Fidelis Security Systems, Inc. + + + CCRA Certificate + + 2018-08-272020-08-27 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Siemens RUGGEDCOM ROS v4.2.2.F running on the M969F, RS900F, RS900GF, RS900GPF, RS940GF, M2100F, RSG2100F, RSG2100PF, M2200F, RSG2200F, RSG2300F, RSG2300PF, RS400F, RS416F, RS416PF, RSG2488F switches   + + + Siemens Canada Ltd. + + + CCRA Certificate + + 2018-08-212020-08-21 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + NIKSUN NetDetector/NetVCR 10440   + + + NIKSUN® Incorporated + + + CCRA Certificate + + 2018-08-142020-08-14 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Binary Armor SCADA Network Guard   + + + Sierra Nevada Corporation + + + CCRA Certificate + + 2018-08-072020-08-07 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + FireEye HX Appliances, Version 4.0   + + + FireEye Incorporated + + + CCRA Certificate + + 2018-07-312020-07-31 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Aruba, a Hewlett Packard Enterprise Company 2930F, 2930M, 3810M, and 5400R Switch Series running ArubaOS version 16.04   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2019-08-28 – Aruba, a Hewlett Packard Enterprise Company 2930F, 2930M, 3810M, and 5400R Switch Series running ArubaOS version 16.04
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Aruba Networks + + + CCRA Certificate + + 2018-06-012020-06-01 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Allied Telesis x930 Series Switches v5.4.6-1   + + + Allied Telesis + + + CCRA Certificate + + 2018-05-012020-05-01 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Cisco Prime Infrastructure 3.2   +
+ +
+ + + + + + +
+
+ Cisco Systems, Inc. + + + CCRA Certificate + + 2018-04-302020-04-30 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Bivio 6310-NC   + + + Bivio Networks, Inc. + + + CCRA Certificate + + 2018-04-252020-01-16 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + MMA10G-EXE   + + + Evertz Microsystems Ltd. + + + CCRA Certificate + + 2018-04-252020-04-25 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Cisco Catalyst 9400 Series Switches running IOS-XE 16.6   + + + Cisco Systems, Inc. + + + CCRA Certificate + + 2018-04-162020-04-16 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Pulse Connect Secure 8.2 on Virtual Appliance and Pulse Policy Secure 5.3 on Virtual Appliance   + + + Pulse Secure, LLC + + + CCRA Certificate + + 2018-04-052020-04-05 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + CounterACT version 7.0   + + + ForeScout Technologies, Inc. + + + CCRA Certificate + + 2018-04-022020-01-16 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + FireEye CMS Series Hardware and Virtual Appliances: CM2500V, CM4500, CM7500, CM7500V, CM9500   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2019-08-15 – FireEye CM Series Appliances
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ FireEye Incorporated + + + CCRA Certificate + + 2018-01-302020-01-30 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + FireEye EX Series Hardware and Virtual Appliances: EX3500, EX5500, EX8500   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2019-08-15 – FireEye EX Series Appliances
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ FireEye Incorporated + + + CCRA Certificate + + 2018-01-302020-01-30 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + FireEye NX Series Hardware and Virtual Appliances: NX1500, NX1500V, NX2500, NX2500V, NX2550, NX2550V, NX3500, NX4500, NX4500V, NX5500, NX6500V, NX10450   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2019-08-15 – FireEye NX Series Appliances
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ FireEye Incorporated + + + CCRA Certificate + + 2018-01-302020-01-30 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + FireEye VX Series Hardware Appliances: VX12500, VX5500   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2019-08-15 – FireEye VX Series Appliances
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ FireEye Incorporated + + + CCRA Certificate + + 2018-01-192020-01-19 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Extreme Networks Summit Series Switches EXOS v22.3   + + + Extreme Networks, Inc. + + + CCRA Certificate + + 2017-12-202019-12-20 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Magnum-SC-CC   + + + Evertz Microsystems Ltd. + + + CCRA Certificate + + 2017-12-082019-12-08 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Black Lantern BL300-B2 and BL300-C2 (software version 1.5.2)   + + + Guardtime + + + CCRA Certificate + + 2017-12-072019-12-07 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + NIKSUN NetOmni, software version 5.0.1.2   + + + NIKSUN® Incorporated + + + CCRA Certificate + + 2017-12-072019-12-07 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Cisco IM&P 11.5 SU3   + + + Cisco Systems, Inc. + + + CCRA Certificate + + 2017-11-212019-11-21 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Cisco Aggregation Services Router (ASR) 1000 Series (ASR1K)   + + + Cisco Systems, Inc. + + + CCRA Certificate + + 2017-11-172019-11-17 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + ALE Omniswitch 6250, 6350, and 6450 with the AOS 6.7.1.79.R04 firmware and ALE Omniswitch 6860, 6865, 6900, 9900, and 10K with the AOS 8.3.1.348.R01 firmware (NDcPP)   + + + ALE USA Inc. + + + CCRA Certificate + + 2017-10-172018-06-27 + + + EAL1 +
ASE_SPD.1 +
+ + SE – Swedish Certification Body for IT Security FMV/CSEC
SE
+
+ + Evertz MMA10G-IPX   + + + Evertz Microsystems Ltd. + + + CCRA Certificate + + 2017-10-172019-10-17 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + IBM QRadar Security Intelligence Platform 7.2.7   + + + IBM Corporation + + + CCRA Certificate + + 2017-09-292019-09-29 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + 3eTI CyberFence 3e-636 Series   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2018-06-18 – Maintenance Update for: CyberFence 3e-636 Series Network Security Devices
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ 3e Technologies International, Inc. + + + CCRA Certificate + + 2017-09-202019-09-20 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Pulse Connect Secure v8.2   + + + Pulse Secure, LLC + + + CCRA Certificate + + 2017-09-202019-09-20 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Pulse Policy Secure v5.3   + + + Pulse Secure, LLC + + + CCRA Certificate + + 2017-09-202019-09-20 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Klas Voyager 1.0   + + + Klas Telecom, Inc. + + + CCRA Certificate + + 2017-09-192019-09-19 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Bivio 6110-NC and 6120-NC   + + + Bivio Networks, Inc. + + + CCRA Certificate + + 2017-08-282019-08-28 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Cisco Email Security Appliance 9.8   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2017-10-23 – Maintenance Update of Cisco Email Security Appliance
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Cisco Systems, Inc. + + + CCRA Certificate + + 2017-08-082019-08-08 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Cisco Web Security Appliance 10.5   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2018-01-30 – Maintenance Update of Cisco Web Security Appliance
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Cisco Systems, Inc. + + + CCRA Certificate + + 2017-08-082019-08-08 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Ciena 8700 Packetwave Platform   + + + Ciena, Inc. + + + CCRA Certificate + + 2017-07-142019-07-14 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Brocade Communication Systems, Inc. Directors and Switches operating with Fabric OS version 8.1.0   + + + Brocade Communications Systems, Inc. + + + CCRA Certificate + + 2017-06-302019-06-30 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Dell EMC Networking Switches running Dell EMC Networking OS v9.11   + + + Dell, Inc. + + + CCRA Certificate + + 2017-06-222019-06-22 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + AhnLab MDS, MDS with MTA, and MDS Manager v2.1   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2017-06-30 – Maintenance Update of AhnLab MDS, MDS with MTA, and MDS Manager V2.1 for MDS 4000 and MDS 8000
    + Maintenance Report + +
  2. + +
    +
  3. + 2019-01-16 – Maintenance Update of AhnLab MDS, MDS with MTA, and MDS Manager V2.1
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ AhnLab, Inc. + + + CCRA Certificate + + 2017-05-082019-05-08 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Cisco ISE v2.0   + + + Cisco Systems, Inc. + + + CCRA Certificate + + 2017-04-132019-04-13 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Motorola Network Router, S6000 and GGM 8000 with EOS version 16.9   + + + Motorola Solutions, Inc. + + + CCRA Certificate + + 2017-03-232019-03-23 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Avaya VSP 4000, VSP 7000 and VSP 8000   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2017-07-17 – Avaya, Inc. Avaya Virtual Service Platforms (NDcPP1.0)
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Avaya, Inc. + + + CCRA Certificate + + 2017-03-102018-02-26 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Cisco AnyConnect Secure Mobility Client v4.0 for Android   + + + Cisco Systems, Inc. + + + CCRA Certificate + + 2017-03-012019-03-01 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Unisys Stealth Solution Release v3.0 Windows Endpoint   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2017-11-21 – Maintenance Update of Unisys Stealth Solution Release v3.0
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Unisys Corporation + + + CCRA Certificate + + 2016-07-072018-07-07 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + FireSphere 14600_FIPS and FireSphere 7960_FIPS   + + + iboss Cybersecurity + + + CCRA Certificate + + 2016-04-152018-04-15 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Cisco Catalyst 2K/3K Wired Access Switches running IOS 15.2(4)E   + + + Cisco Systems, Inc. + + + CCRA Certificate + + 2016-03-112018-03-11 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Cisco IoT Industrial Ethernet and Connected Grid Switches running IOS 15.2(4)E   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2017-03-23 – Maintenance Update of Cisco IoT Industrial Ethernet and Connected Grid Switches running IOS
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Cisco Systems, Inc. + + + CCRA Certificate + + 2016-03-112018-03-11 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Fortress Mesh Point ES210, ES520, ES820, ES2440   + + + General Dynamics C4 Systems + + + CCRA Certificate + + 2016-03-112018-02-28 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + secunet wall packet filter, Version 5.1.0   +
+ +
+ + + + + + +
+
+ Secunet Security Networks AG + + +   + + 2016-03-102021-03-10 + + + EAL4+ +
ALC_FLR.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Cisco Catalyst 3K/4K Wired Access Switches running IOS-XE 3.8.0E   + + + Cisco Systems, Inc. + + + CCRA Certificate + + 2016-03-092018-03-09 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + HP Integrated Lights-Out 4 v2.11   +
+ +
+ + + + + + +
+
+ Hewlett-Packard Development Company, L.P. + + + CCRA Certificate + + 2016-03-082021-03-08 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Pure Storage FA-400 Series and FlashArray //m Appliances version 4.7   + + + Pure Storage, Inc. + + + CCRA Certificate + + 2016-03-072018-02-28 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + GigaVUE version 4.4   + + + Gigamon LLC + + + CCRA Certificate + + 2016-03-042018-02-28 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Hewlett Packard Enterprise 5900 Series, 5920 Series, 5930 Series, 10500 Series, 12500 Series, and 12900 Series with Comware 7   + + + Hewlett Packard Enterprise + + + CCRA Certificate + + 2016-03-042018-02-28 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Hewlett Packard Enterprise 7900 Series, 7500 Series, 5700 Series, 5130 EI Series, 5130 HI Series and 5510 HI Series Switches with Comware 7   + + + Hewlett Packard Enterprise + + + CCRA Certificate + + 2016-03-042018-02-28 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Hewlett Packard Enterprise MSR 1000 Series, 2000 Series, 3000 Series, and 4000 Series Routers with Comware V7.1   + + + Hewlett Packard Enterprise + + + CCRA Certificate + + 2016-03-042018-02-28 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Stonesoft Next Generation Firewall (NGFW)   + + + Forcepoint LLC + + + CCRA Certificate + + 2016-03-032018-03-03 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + IBM BigFix Endpoint Manager Version 9.2   + + + IBM Corporation + + + CCRA Certificate + + 2016-02-262018-02-26 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + HPE 5400R zl2 Switch Series Version 5.011, KB_15_18_0008p01   + + + Hewlett Packard Enterprise + + + CCRA Certificate + + 2016-02-192018-02-19 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + HPE Moonshot-180XGc, 45XGc, 45Gc switch   + + + Hewlett Packard Enterprise + + + CCRA Certificate + + 2016-02-172018-02-17 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Aruba Networks Mobility Controller v6.4.3.4-FIPS   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2016-10-13 – Aruba Networks Mobility Controller Range & Software version 6.5.0.0
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Aruba Networks + + +   + + 2016-02-112021-02-11 + + + PP Compliant + + + AU – Australasian Certification Authority (ACA)
AU
+
+ + Pulse Policy Secure 5.0 R13   + + + Pulse Secure, LLC + + +   + + 2016-02-112020-04-24 + + + PP Compliant + + + AU – Australasian Certification Authority (ACA)
AU
+
+ + Ciena 5400 Series Packet Optical Platform   + + + Ciena, Inc. + + + CCRA Certificate + + 2016-02-022018-02-02 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + FireEye HX Series Appliances   + + + FireEye Incorporated + + + CCRA Certificate + + 2016-02-012018-02-01 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Pulse Connect Secure 8.0 R13   + + + Pulse Secure, LLC + + +   + + 2016-01-292020-04-24 + + + PP Compliant + + + AU – Australasian Certification Authority (ACA)
AU
+
+ + Cisco Optical Networking Solution (ONS) and Network Convergence System (NCS) 2000 Series   + + + Cisco Systems, Inc. + + + CCRA Certificate + + 2016-01-282018-01-28 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Brocade MLXe and NetIron Family Devices with Multi-Service IronWare R05.9   + + + Brocade Communications Systems, Inc. + + + CCRA Certificate + + 2016-01-272018-01-27 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Ciena Carrier Ethernet Solutions (CES) 3900 series and 5100 series with SAOS   + + + Ciena, Inc. + + + CCRA Certificate + + 2016-01-262018-01-26 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + FireEye MX Series Appliances   + + + FireEye Incorporated + + + CCRA Certificate + + 2016-01-212018-01-21 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + FortiMail Appliances running FortiMail Firmware Version 5.2.6   + + + Fortinet, Inc. + + + CCRA Certificate + + 2016-01-152021-01-15 + + + PP Compliant + + + CA – Canadian Common Criteria Scheme
CA
+
+ + FortiGate™ UTM appliances running FortiOS™ 5.0 Patch Release 10   + + + Fortinet, Inc. + + + CCRA Certificate + + 2016-01-132018-01-13 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Check Point Software Technologies Ltd. Security Appliances R77.30   + + + Check Point Software Technologies Ltd. + + + CCRA Certificate + + 2015-12-312017-12-31 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Juniper EX4600 and QFX5100 with JUNOS 14.1X53d30   + + + Juniper Networks, Inc. + + + CCRA Certificate + + 2015-12-282018-02-28 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Juniper MX240 MX480, MX960, MX2010, MX2020, EX9204, EX9208, EX9214, PTX3000, PTX5000 with JUNOS 14.2R3   + + + Juniper Networks, Inc. + + + CCRA Certificate + + 2015-12-282017-02-28 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Imperva SecureSphere v11.5   + + + IMPERVA, Inc. + + + CCRA Certificate + + 2015-12-232017-12-23 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Cisco Embedded Services Router 5900 Series (ESR 5900), Integrated Services Router 800 Series (ISR-800), Integrated Services Router 800M Series (ISR-800M) & Industrial Router 800 Series (IR-800)   + + + Cisco Systems, Inc. + + + CCRA Certificate + + 2015-12-222017-12-22 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Cisco Integrated Services Router Generation 2 (ISR G2), Integrated Services Router 800 Series (ISR-800) and Connected Grid Router 2010   + + + Cisco Systems, Inc. + + + CCRA Certificate + + 2015-12-222017-12-22 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + LogRhythm Integrated Solution 6.3.4   + + + LogRhythm, Inc. + + + CCRA Certificate + + 2015-12-222017-12-22 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + IAS Router Series: IAS STEW, IAS KG-RU, IAS Router MICRO   + + + Information Assurance Specialists + + + CCRA Certificate + + 2015-12-212017-12-21 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Infoblox Trinzic Appliances with NIOS v7.1   + + + Infoblox Incorporated + + + CCRA Certificate + + 2015-12-212017-12-21 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Cisco Catalyst 6K Series Switches   + + + Cisco Systems, Inc. + + + CCRA Certificate + + 2015-12-182017-12-18 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + HP BladeSystem c7000 and c3000 Enclosure with OA v4.40, VC v4.41, and iLO 4 v2.11   +
+ +
+ + + + + + +
+
+ Hewlett-Packard Development Company, L.P. + + + CCRA Certificate + + 2015-12-152020-12-15 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Juniper EX4300 with JUNOS 14.1X53d30   + + + Juniper Networks, Inc. + + + CCRA Certificate + + 2015-12-102017-12-10 + + + EAL1 + + + US – National Information Assurance Partnership
US
+
+ + IBM WebSphere DataPower Firmware Version 6.0.2.0   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2015-12-092020-12-09 + + + EAL4+ +
ALC_FLR.3 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Brocade Communications Systems, Inc. FabricOS Version: 7.3.0a3   +
+ +
+ + + + + + +
+
+ Brocade Communications Systems, Inc. + + +   + + 2015-12-082020-12-08 + + + EAL2+ +
ALC_FLR.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + HP 3PAR StoreServ Storage Systems Version 3.2.1 MU3   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2017-09-20 – HP 3PAR StoreServ Storage Systems Version 3.2.2 MU4
    + Maintenance Report + + Maintenance ST + +
  2. + +
    +
  3. + 2017-09-20 – HP 3PAR StoreServ Storage Systems Version 3.2.2 MU4
    + Maintenance Report + + Maintenance ST + +
  4. + +
+
+ + +
+
+ Hewlett-Packard Ltd. + + + CCRA Certificate + + 2015-12-072020-12-07 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + SCS-100 & SCS-200   + + + Northrop Grumman M5 Security + + +   + + 2015-12-012020-12-01 + + + PP Compliant + + + AU – Australasian Certification Authority (ACA)
AU
+
+ + NetScout nGenius® 3900 Series Packet Flow Switch   + + + NetScout Systems, Inc. + + + CCRA Certificate + + 2015-11-252020-11-25 + + + PP Compliant + + + CA – Canadian Common Criteria Scheme
CA
+
+ + Palo Alto Networks PA-200, PA-500, PA-2000 Series, PA-3000 Series, PA-4000 Series, PA-5000 Series, PA-7000 Series, VM Series, Next-Generation Firewall with PAN-OS 7.0.1-h4   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2016-11-22 – Maintenance Update of Palo Alto Networks PA-200, PA-500, PA-2000 Series, PA-3000 Series, PA-4000 Series, PA-5000 Series, PA-7000 Series, VM Series, Next-Generation Firewall with PAN-OS v7.0.8 and v7.1.3
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Palo Alto Networks + + + CCRA Certificate + + 2015-11-252017-11-25 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Citrix NetScaler Platinum Edition Load Balancer v10.5 running on MPX 9700-FIPS, MPX 10500-FIPS, MPX 12500-FIPS and MPX 15500-FIPS appliances   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2017-10-19 – Citrix NetScaler Platinum Edition Load Balancer, Version 10.5, Build 53.33.nc, running on MPX 9700 FIPS, MPX 10500 FIPS, MPX 12500 FIPS, MPX 15500 FIPS appliances
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ Citrix Systems, Inc. + + +   + + 2015-11-132020-11-13 + + + PP Compliant + + + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + macmon, Version 4.0.9   +
+ +
+ + + + + + +
+
+ macmon secure GmbH + + +   + + 2015-11-092020-11-09 + + + EAL2+ +
ALC_FLR.1 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + secunet eID PKI Suite Certified CA Kernel Version 1.0.0   + + + Secunet Security Networks AG + + +   + + 2015-11-062020-11-06 + + + EAL4+ +
ALC_FLR.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + AlienVault USM for Government v4.12 and RT Logic CyberC4: Alert v4.12   + + + AlienVault, Inc. + + + CCRA Certificate + + 2015-10-292017-10-29 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Cisco Email Security Appliance v9.1   + + + Cisco Systems, Inc. + + + CCRA Certificate + + 2015-09-182016-03-21 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + FireEye CM, FX, EX, and NX Series Appliances   + + + FireEye Incorporated + + +   + + 2015-08-262017-08-26 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Cisco Unified Communications Manager 11.0   + + + Cisco Systems, Inc. + + +   + + 2015-08-252017-08-25 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Cisco Unified Communications Manager 11.0   + + + Cisco Systems, Inc. + + +   + + 2015-08-252017-08-25 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Cisco Nexus 7000 Series Switches running NX-OS version 6.2.12   +
+ +
+ + + + + + +
+
+ Cisco Systems, Inc. + + +   + + 2015-08-112020-08-11 + + + EAL2 + + + NL – NSCIB operated by
NL
+
+ + Apriva MESA VPN, v1.0   + + + Apriva ISS, LLC + + +   + + 2015-08-072017-08-07 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + EMC® VMAX™ Series Appliances with HYPERMAX™ OS 5977   +
+ +
+ + + + + + +
+
+ EMC Corporation + + + CCRA Certificate + + 2015-07-302020-07-30 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + SecureSwitch® Fiber Optic Switch Revision A, B, C, D   +
+ +
+ + + + + + +
+
+ Market Central, Inc. + + + CCRA Certificate + + 2015-07-212020-07-21 + + + EAL2 + + + CA – Canadian Common Criteria Scheme
CA
+
+ + EMC VNXe™ OE v3.1.1 with Unisphere and VNXe3200™ Hardware   +
+ +
+ + + + + + +
+
+ EMC Corporation + + + CCRA Certificate + + 2015-07-152020-07-15 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Juniper Networks, Inc. Junos 12.1 X46 D20 for SRX Series and LN Series Platforms   + + + Juniper Networks, Inc. + + +   + + 2015-07-082020-04-24 + + + PP Compliant + + + AU – Australasian Certification Authority (ACA)
AU
+
+ + Juniper Networks, Inc. Junos 12.1 X46 D20 for SRX Series Platforms   + + + Juniper Networks, Inc. + + +   + + 2015-07-032020-04-24 + + + PP Compliant + + + AU – Australasian Certification Authority (ACA)
AU
+
+ + Cisco Converged Access + +Version: Software Version 3.6.1E +Components: TOE hardware models: Cisco Catalyst 3650, 3850, and WLC 5760 with APs 1600i/e, 2600i/e, 3500i/e, 3600 i/e (optional IEEE 802.11ac module) and 1552e   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2015-09-03 – Maintenance Report Supplementing Certificate Report 2015/92 Updated models: 2700i/e, 3600i/e (optional 3000M monitor) and 3700i/e/p.
    + Maintenance Report + + Maintenance ST + +
  2. + +
    +
  3. + 2015-12-09 – Cisco Converged Access Version 3.6.3E
    + Maintenance Report + + Maintenance ST + +
  4. + +
+
+ + +
+
+ Cisco Systems, Inc. + + +   + + 2015-07-022020-12-09 + + + PP Compliant + + + AU – Australasian Certification Authority (ACA)
AU
+
+ + Cisco Catalyst 2960CX and 3560CX Series Compact Switches running IOS 15.2(3)E1   + + + Cisco Systems, Inc. + + +   + + 2015-06-262017-06-26 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + 1830 Photonic Service Switch (PSS) R7.0   +
+ +
+ + + + + + +
+
+ Alcatel-Lucent + + + CCRA Certificate + + 2015-06-122020-06-12 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Cisco Aggregation Services Router (ASR) 1000 Series, IOS XE 3.13   + + + Cisco Systems, Inc. + + +   + + 2015-06-112017-06-11 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + AITHER v1.0   +
+ +
+ + + + + + +
+
+ Korea Information Security System Co., Ltd + + +   + + 2015-06-102020-06-10 + + + EAL2 + + + KR – IT Security Certification Center(ITSCC)
KR
+
+ + McAfee Advanced Threat Defense   + + + Intel Corporation + + +   + + 2015-05-272017-05-27 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Fidelis XPS version 8.0   + + + Fidelis Security Systems, Inc. + + +   + + 2015-05-152017-05-15 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Brocade VDX 6700 and 8700 Series products with NOS v5.0   + + + Brocade Communications Systems, Inc. + + +   + + 2015-05-082017-05-08 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Cisco Aggregation Service Router (ASR) 900 Series (902, 903, and 920) running IOS-XE 3.13.(1)S   + + + Cisco Systems, Inc. + + +   + + 2015-04-032017-04-03 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Cisco Aggregation Service Router (ASR) 901 Series running IOS 15.5(1)S1   + + + Cisco Systems, Inc. + + +   + + 2015-04-032017-04-03 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Brocade Communications Systems, Inc. Brocade MLXe and NetIron Family Devices with Multi-Service IronWare R05.8.00   + + + Brocade Communications Systems, Inc. + + +   + + 2015-03-312017-03-31 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + BMC Remedy Action Request System with Premium Encryption Security v8.1   +
+ +
+ + + + + + +
+
+ BMC Software, Inc. + + + CCRA Certificate + + 2015-03-302020-03-30 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + 3e-636 Series Network Security Devices, hardware version 1.0, firmware version 5.1   + + + 3e Technologies International, Inc. + + +   + + 2015-03-262017-03-26 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Brocade Communications Systems, Inc. Brocade Directors and Switches operating with Fabric OS version 7.3.0   + + + Brocade Communications Systems, Inc. + + +   + + 2015-03-252016-03-21 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + BMC Real End User Experience Monitoring and Analytics 2.5   +
+ +
+ + + + + + +
+
+ BMC Software, Inc. + + + CCRA Certificate + + 2015-03-192020-03-19 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Dell Networking Switches: S4810, S4820T, S5000, S6000, Z9000, Z9500 running Dell Networking OS v9.6.0.0 P6   + + + Dell, Inc. + + +   + + 2015-03-192017-03-19 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + BMC Server Automation v8.3   +
+ +
+ + + + + + +
+
+ BMC Software, Inc. + + + CCRA Certificate + + 2015-03-102020-03-10 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Insurance Security Token Service (ISTS) Version 1.0   +
+ +
+ + + + + + +
+
+ GDV Services GmbH + + +   + + 2015-03-092020-03-09 + + + EAL2 + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + NetScout nGeniusONE™ Unified Performance Management Platform V5.2.1 and nGenius® InfiniStream® V5.2.1   + + + NetScout Systems, Inc. + + + CCRA Certificate + + 2015-03-062020-03-06 + + + PP Compliant + + + CA – Canadian Common Criteria Scheme
CA
+
+ + Hewlett-Packard 6125XLG Ethernet Blade Switch   + + + Hewlett-Packard Development Company, L.P. + + +   + + 2015-02-242017-02-24 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + BMC ProactiveNet Performance Management v9.5   +
+ +
+ + + + + + +
+
+ BMC Software, Inc. + + + CCRA Certificate + + 2015-02-122020-02-12 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Cisco Catalyst 3650, 3850, 4500E (Sup7E, Sup7LE, Sup8E), 4500X, 4500XF running IOS-XE 3.6.1S   + + + Cisco Systems, Inc. + + +   + + 2014-12-302016-12-30 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Cisco Catalyst 2960C, 2960S, 2960SF, 2960X, 2960XR running IOS 15.2(2a)E1 and 3560C, 3560X, 3750X running IOS 15.2(2)E1   + + + Cisco Systems, Inc. + + +   + + 2014-12-232016-12-23 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Brocade Communications Systems, Inc. Brocade FastIron SX, ICX, and FCX Series Switch/Router 8.0.20   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2015-09-08 – Brocade Communications Systems, Inc. Brocade FastIron SX, ICX, and FCX Series Switch/Router 8.0.30
    + Maintenance Report + +
  2. + +
    +
  3. + 2016-01-14 – Brocade Communications Systems, Inc. Brocade FastIron SX, ICX, and FCX Series Switch/Router 08.0.30
    + Maintenance Report + +
  4. + +
    +
  5. + 2016-03-30 – Brocade Communications Systems, Inc. Brocade FastIron ICX Series Switch/Router 08.0.40
    + Maintenance Report + +
  6. + +
+
+ + +
+
+ Brocade Communications Systems, Inc. + + +   + + 2014-12-162016-12-16 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Hewlett-Packard Company 5900 Series, 5920 Series, 10500 Series and 12500 Series Switches with Comware Version 7.1.045   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2015-03-24 – Hewlett-Packard Company 5900 Series, 5900CP Series, 5920 Series, 5930 Series, 10500 Series, 12500 Series and 12900 Series Switches
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Hewlett-Packard Development Company, L.P. + + +   + + 2014-12-052016-12-05 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Cisco Catalyst 3850 Series Switches running IOS-XE 3.6.0E and Catalyst 6500 Series Switches running IOS 15.1(2)SY3   +
+ +
+ + + + + + +
+
+ Cisco Systems, Inc. + + +   + + 2014-11-272019-11-27 + + + EAL3 + + + NL – NSCIB operated by
NL
+
+ + Cisco Email Security Appliance (ESA)   + + + Cisco Systems, Inc. + + +   + + 2014-11-132016-03-21 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + FortiSwitch blade appliances with FortiTRNG running FortiOS 5.0 Patch Release 7   + + + Fortinet, Inc. + + +   + + 2014-11-072014-12-22 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Fonction de filtrage de la suite logicielle IPSFirewall, +version 9.1.0.5   +
+ +
+ + + + + + +
+
+ Netasq + + +   + + 2014-10-212019-10-21 + + + EAL4+ +
ALC_FLR.3 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Suite logicielle IPS-Firewall, version 9.1.0.5   +
+ +
+ + + + + + +
+
+ Netasq + + +   + + 2014-10-212019-10-21 + + + EAL3+ +
ALC_CMC.4 +
ALC_CMS.4 +
ALC_FLR.3 +
AVA_VAN.3 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Cisco Optical Networking Solution 9.8.1.2   + + + Cisco Systems, Inc. + + +   + + 2014-09-122016-09-12 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Blue Coat ProxySG SG600, SG900, SG9000 running SGOS v6.5   + + + Blue Coat Systems, Inc. + + + CCRA Certificate + + 2014-09-082019-09-08 + + + PP Compliant + + + CA – Canadian Common Criteria Scheme
CA
+
+ + Juniper Networks M,T, MX and PTX Routers and EX9200 Switches running Junos OS 13.3R1.8 and Juniper QFX and EX Switches Running Junos OS 13.2X50-D19 and 13.2X51-D20   + + + Juniper Networks, Inc. + + + CCRA Certificate + + 2014-09-032019-09-03 + + + PP Compliant + + + CA – Canadian Common Criteria Scheme
CA
+
+ + Senetas CN Series Encryptor Range & Senetas CM Management Application   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2015-03-31 – Senetas CN Series Encryptor Range 2.6.0 and Senetas CM Management Application 7.4.0
    + Maintenance Report + + Maintenance ST + +
  2. + +
    +
  3. + 2018-03-21 – Senetas CN Series Encryptor Range 2.6.3 and Senetas CM Management Application 7.4.0Certificate Number:2014/89
    + Maintenance Report + + Maintenance ST + +
  4. + +
+
+ + +
+
+ Senetas Security Pty Ltd + + +   + + 2014-08-182019-09-01 + + + EAL2 +
ALC_FLR.2 +
+ + AU – Australasian Certification Authority (ACA)
AU
+
+ + Arista 7050X, 7250X, 7300X, 7500E Series   + + + Arista Networks, Inc. + + +   + + 2014-07-292016-03-21 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Hewlett-Packard 10500 Series and 5830AF Series Switches with Comware version 5.2   + + + Hewlett-Packard Company + + +   + + 2014-07-212016-07-21 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Brocade VDX 6700 and 8700 Series products with NOS 3.0   + + + Brocade Communications Systems, Inc. + + +   + + 2014-07-112016-03-21 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + RedSeal Platform v7.0.1   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2016-04-14 – RedSeal Platform v8.2.0
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ RedSeal Networks, Inc. + + + CCRA Certificate + + 2014-07-102019-07-30 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Hewlett-Packard 6125G & 6125G/XG Ethernet Blade Switch Series   + + + Hewlett-Packard Company + + +   + + 2014-06-302016-03-21 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Stonesoft FW-VPN & IPS V5.5   +
+ +
+ + + + + + +
+
+ McAfee, Inc. + + +   + + 2014-06-272019-09-01 + + + EAL4 +
ALC_FLR.1 +
+ + SE – Swedish Certification Body for IT Security FMV/CSEC
SE
+
+ + SonicOS Enhanced V5.9.0   +
+ +
+ + + + + + +
+
+ SonicWALL, Inc + + +   + + 2014-06-162019-09-01 + + + EAL4 +
ALC_FLR.2 +
+ + SE – Swedish Certification Body for IT Security FMV/CSEC
SE
+
+ + API Technologies ION SA5600 v1.3.1 with PRIISMS v2.8.1   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2016-06-30 – API Technologies ION SA5600 v2.0.0 with PRIISMS v3.0
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ API Technologies + + + CCRA Certificate + + 2014-06-132019-07-02 + + + EAL1 + + + CA – Canadian Common Criteria Scheme
CA
+
+ + Aruba Networks Mobility Controller Version: ArubaOS 6.3 Components: Aruba appliance models: 600, 3000, 6000,7000 series Processor: Revision C4   + + + Aruba Networks + + +   + + 2014-06-112019-09-01 + + + PP Compliant + + + AU – Australasian Certification Authority (ACA)
AU
+
+ + FortiAnalyzer™ v4.0 MR3 Centralized Reporting   +
+ +
+ + + + + + +
+
+ Fortinet, Inc. + + + CCRA Certificate + + 2014-06-112019-06-11 + + + EAL2+ +
ALC_FLR.1 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Brocade Communications Systems, Inc. Brocade FastIron SX, ICX, and FCX Series Switch/Router 08.0.10   + + + Brocade Communications Systems, Inc. + + +   + + 2014-05-292016-05-29 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Brocade Communications Systems, Inc. MLXe® and NetIron® Family Devices with Multi-Service IronWare R05.6.00   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2014-09-10 – Brocade Communications Systems, Inc. Brocade MLXe® and NetIron®Family Devices with Multi-Service IronWare R05.7.00
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Brocade Communications Systems, Inc. + + +   + + 2014-05-292016-09-04 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Huawei CloudEngine Series Switch   +
+ +
+ + + + + + +
+
+ Huawei Technologies Co. Ltd. + + +   + + 2014-05-232019-09-01 + + + EAL3+ +
ALC_CMC.4 +
+ + NO – SERTIT
NO
+
+ + Brocade Communications Systems, Inc. MLX and NetIron CER 2000 Series Router   + + + Brocade Communications Systems, Inc. + + +   + + 2014-05-082016-05-08 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Lancope StealthWatch v6.3.5   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2016-04-11 – Cisco Systems StealthWatch v6.5.4
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ Lancope, Inc. + + + CCRA Certificate + + 2014-05-052019-05-05 + + + PP Compliant + + + CA – Canadian Common Criteria Scheme
CA
+
+ + Cisco Catalyst 4500 Series switches (4503-E, 4506-E, 4507R+E, 4510R+E, 4500X and 4500X-F) running IOS-XE 3.5.2E   + + + Cisco Systems, Inc. + + +   + + 2014-04-302019-04-30 + + + PP Compliant + + + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + Forum Sentry v8.1.641   + + + Forum Systems, Inc. + + + CCRA Certificate + + 2014-04-302019-05-22 + + + PP Compliant + + + CA – Canadian Common Criteria Scheme
CA
+
+ + Trustwave Network Access Control (NAC) Version 4.1 and Central Manager Software Version 4.1   +
+ +
+ + + + + + +
+
+ Trustwave Holdings, Inc. + + + CCRA Certificate + + 2014-04-302019-06-04 + + + EAL2+ +
ALC_FLR.1 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Motorola Solutions AirDefense 9.0 and AP-7131N Wireless Access Point   +
+ +
+ + + + + + +
+
+ Motorola Solutions, Inc. + + +   + + 2014-03-312016-03-31 + + + EAL2+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Motorola Solutions RFS7000-GR Wireless LAN Switch and AP-7131N Wireless Access Point   +
+ +
+ + + + + + +
+
+ Motorola Solutions, Inc. + + +   + + 2014-03-282016-03-28 + + + EAL2+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + PSTfile v4.4.2   +
+ +
+ + + + + + +
+
+ Autek Ingeniería, S.L. + + +   + + 2014-03-282019-09-01 + + + EAL2+ +
ALC_FLR.1 +
+ + ES – Organismo de Certificación de la Seguridad de las Tecnologías de la Información
ES
+
+ + Motorola AP-7131N Wireless Access Point   +
+ +
+ + + + + + +
+
+ Motorola Solutions, Inc. + + +   + + 2014-03-272016-03-27 + + + EAL2+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + VMware vCloud Networking and Security 5.5.0a   +
+ +
+ + + + + + +
+
+ VMware, Inc. + + + CCRA Certificate + + 2014-03-262019-03-26 + + + EAL4+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + A10 Networks Thunder 3030S and 1030S   +
+ +
+ + + + + + +
+
+ A10 Networks, Inc. + + +   + + 2014-03-112019-09-01 + + + EAL2+ +
ALC_FLR.1 +
+ + NO – SERTIT
NO
+
+ + Huawei USN9810 Unified Service Node V900R012   +
+ +
+ + + + + + +
+
+ Huawei Technologies Co. Ltd. + + +   + + 2014-03-072019-09-01 + + + EAL3+ +
ALC_CMC.4 +
+ + NO – SERTIT
NO
+
+ + Juniper Networks M-Series Multiservice Edge Routers, MX-Series 3D Universal Edge Routers, T-Series Core Routers and EX-Series Ethernet Switches Running Junos 12.1R3.5   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2014-05-29 – Junos 12.1R3.6
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Juniper Networks, Inc. + + +   + + 2014-03-072016-05-07 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Cisco Catalyst 6500-E Series Switches Cisco IOS Software, Version 15.1(1)SY1, RELEASE SOFTWARE (fc5)   +
+ +
+ + + + + + +
+
+ Cisco Systems, Inc. + + +   + + 2014-02-202019-09-01 + + + EAL2+ +
ALC_FLR.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Cisco Catalyst 6500-E Series Switches Cisco IOS Software, Version 15.1(1)SY1, RELEASE SOFTWARE (fc5)   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2014-04-14 – Cisco Catalyst 6500-E Series Switches, Hardware models - WS-C6503-E, WS-C6504-E, WS-C6506-E, WS-C6509-E, and WS-C6513-E with Supervisor 2T (Sup2T) Cards (VS-S2T-10G or VS-S2T-10G-XL) Software version - IOS15.1(1)SY1
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ Cisco Systems, Inc. + + +   + + 2014-02-202019-09-01 + + + PP Compliant +
ND-PP +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + HOB RD VPN blue edition Version 2.1 10.5397   +
+ +
+ + + + + + +
+
+ HOB GmbH & Co. KG + + +   + + 2014-02-192019-09-01 + + + EAL4+ +
ALC_FLR.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Cisco Catalyst Switches (2960S, 2960C, 3560V2 and 3750V2) running IOS 15.0(2)SE4   + + + Cisco Systems, Inc. + + +   + + 2014-02-072016-02-07 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Brocade Communications Systems, Inc. FastIron SX, FastIron FCX and ICX 6610 Series Switch/Router, with IronWare OS 7.3   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2014-05-30 – Brocade Communications Systems, Inc. Brocade FastIron SX, ICX, and FCX Series Switch/Router 7.3.00j
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Brocade Communications Systems, Inc. + + +   + + 2014-02-062016-05-30 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Cisco Catalyst Switches (3560C, 3560X, and 3750X) Running IOS 15.0(2)SE4   + + + Cisco Systems, Inc. + + +   + + 2014-01-312016-01-31 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Cisco Identity Services Engine (ISE) v1.2   + + + Cisco Systems, Inc. + + +   + + 2014-01-302016-01-30 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + WhatsUp Gold Premium with Plug-Ins Version 16.1.99   +
+ +
+ + + + + + +
+
+ IPswitch, Inc. + + +   + + 2014-01-162016-01-16 + + + EAL2 +
ALC_FLR.1 +
+ + US – National Information Assurance Partnership
US
+
+ + Arista 7150 Series   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2014-07-29 – Arista Networks Series 7150/Arista Networks 7050X and 7150 Series
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Arista Networks, Inc. + + +   + + 2013-12-232015-12-23 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Cisco Aggregation Services Router (ASR) 1000 Series   + + + Cisco Systems, Inc. + + +   + + 2013-12-192015-12-19 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Lumeta IPsonar 5.5C   + + + Lumeta Corporation + + +   + + 2013-12-192015-12-19 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Brocade Communications Systems, Inc. Brocade MLXe® and NetIron®Family Devices with Multi-Service IronWare R05.5.00   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2014-05-30 – Brocade Communications Systems, Inc. Brocade MLXe® and NetIron®Family Devices with Multi-Service IronWare R05.5.00ca
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Brocade Communications Systems, Inc. + + +   + + 2013-12-152016-05-30 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Huawei UGW9811   +
+ +
+ + + + + + +
+
+ Huawei Technologies Co. Ltd. + + +   + + 2013-12-132019-09-01 + + + EAL3+ +
ALC_CMC.4 +
+ + NO – SERTIT
NO
+
+ + Brocade Communications Systems, Inc. FastIron SX, FastIron FCX and ICX Series Switch/Router, with IronWare OS 8.0.01   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2014-05-29 – Brocade Communications Systems, Inc. Brocade FastIron SX, ICX, and FCX Series Switch/Router 08.0.01c
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Brocade Communications Systems, Inc. + + +   + + 2013-12-102016-05-29 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + A10 Networks Thunder 5430S and 6430S   +
+ +
+ + + + + + +
+
+ A10 Networks, Inc. + + +   + + 2013-12-052019-09-01 + + + EAL2+ +
ALC_FLR.1 +
+ + NO – SERTIT
NO
+
+ + Cisco Intrusion Prevention System Version: Software Version 7.2(1) Components: IPS 4300 and 4500 series sensors (4345, 4360, 4510, and 4520); IPS hardware modules for ASA 5585-X (IPS SSP-10, SSP-20, SSP-40, and SSP-60); and IPS software modules on ASA 5500-X (ASA 5512-X, 5515-X, 5525-X, 5545-X, and 5555-X).   + + + Cisco Systems, Inc. + + +   + + 2013-09-112019-09-01 + + + PP Compliant + + + AU – Australasian Certification Authority (ACA)
AU
+
+ + Juniper Networks, Inc. JUNOS 12.1 X44 D15.5 for SRX Series Platforms Components: Software JUNOS US/Canada Version 12.1X44 JUNOS-FIPS Version 12.1 X44 Hardware SRX100, SRX110, SRX210, SRX220, SRX240, SRX550, SRX650, SRX1400, SRX3400, SRX3600; SRX5600 and SRX5800 with SPC-2-10-40; and SRX5600 and SRX5800 with SPC-4-15-320.   + + + Juniper Networks, Inc. + + +   + + 2013-09-062019-09-01 + + + PP Compliant + + + AU – Australasian Certification Authority (ACA)
AU
+
+ + Cisco Adaptive Security Appliances Version: ASA software version 9.1(2) Components: ASA 5500 (5505, 5510, 5520, 5540, 5550, 5580-20-40), ASA 5500-X Series (5512-X, 5515-X, 5525-X, 5545-X, 5555-X), ASA 5585-X (5585-10, 5585-20, 5585-40, 5585-60), ASA Services Module (ASA-SM)   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2014-12-19 – Maintenance Report Supplementing Certificate Report 2013/86
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ Cisco Systems, Inc. + + +   + + 2013-09-052019-09-01 + + + PP Compliant + + + AU – Australasian Certification Authority (ACA)
AU
+
+ + Huawei S2300, S2700, S5300, S5700, S6300, S6700, S7700, S9300, S9700 Ethernet Switches V200R003   +
+ +
+ + + + + + +
+
+ Huawei Technologies Co. Ltd. + + +   + + 2013-08-212019-09-01 + + + EAL3+ +
ALC_CMC.4 +
+ + NO – SERTIT
NO
+
+ + BlueCat Networks Adonis DNS/DHCP Appliance Version 6.7.1-P3 and Proteus IPAM Appliance Version 3.7.2-P2   +
+ +
+ + + + + + +
+
+ BlueCat Networks (USA), Inc. + + +   + + 2013-08-092015-08-09 + + + EAL2+ +
ALC_FLR.1 +
+ + US – National Information Assurance Partnership
US
+
+ + Juniper Networks Junos Pulse Access Control Service 4.2 R4   +
+ +
+ + + + + + +
+
+ Juniper Networks, Inc. + + +   + + 2013-08-052019-09-01 + + + EAL3+ +
ALC_FLR.2 +
+ + MY – CyberSecurity Malaysia
MY
+
+ + Citrix NetScaler Platinum Edition Load Balancer, Version 10.0, running on specified MPX hardware platforms and specified VPX virtualized platforms   +
+ +
+ + + + + + +
+
+ Citrix Systems, Inc. + + +   + + 2013-07-172016-01-04 + + + EAL2+ +
ALC_FLR.2 +
+ + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + Juniper Networks Junos Pulse Secure Access Service 7.2 R4   +
+ +
+ + + + + + +
+
+ Juniper Networks, Inc. + + +   + + 2013-07-152019-09-01 + + + EAL3+ +
ALC_FLR.2 +
+ + MY – CyberSecurity Malaysia
MY
+
+ + Solarwinds Orion Network Performance Monitor, Orion Application Performance Monitor, Orion Network Configuration Manager, Orion Network Traffic Analyzer, Orion IP Address Manager, Orion IP SLA Manager, Orion Enterprise Operations Console   +
+ +
+ + + + + + +
+
+ Solarwinds Worldwide, LLC + + +   + + 2013-06-182014-11-01 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + Makito and Barracuda Video Encoders with firmware version 2.1.1-3; Appliances: S-280E-SDI, S-290E-HDSDI, S-290E-DVI, S-290E-DVI-S, S-290E-AIR; Blades: B-290E-DVI, B-290E-DVI-S, B-290E-HDSDI, B-280E-SDI; Chassis: F-280-1, F-290-1DH, F-290-1, F-MB6B-RAC, F-MB6X-RAC, F-MB6B-DC, F-MB6B-MED, F-MB21B-R; Firmware Options: SW-290E-KLV, FCO-SV-SW-CONFIG   + + + Haivision Systems, Inc. + + +   + + 2013-06-032015-06-03 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + LANCOM Systems Operating System LCOS 8.70 CC with IPsec VPN   +
+ +
+ + + + + + +
+
+ LANCOM Systems GmbH + + +   + + 2013-05-242019-09-01 + + + EAL4+ +
ALC_FLR.1 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + SecureVue v3.6.3 CP1   +
+ +
+ + + + + + +
+
+ EiQ Networks, Inc. + + +   + + 2013-05-202015-05-20 + + + EAL2+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Symantec™ Network Access Control Version 12.1.2   +
+ +
+ + + + + + +
+
+ Symantec Corporation + + + CCRA Certificate + + 2013-05-102018-06-17 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Hewlett-Packard Networking A-Series Switches: 12500, 9500, 7500, 5820, 5800, 5500, and 5120   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2014-02-11 – Hewlett-Packard Company Network Switches Impact Analysis Report Version 2.0
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Hewlett-Packard Company + + +   + + 2013-05-012016-02-18 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Juniper Networks vGW Series Version 5.5   +
+ +
+ + + + + + +
+
+ Juniper Networks, Inc. + + + CCRA Certificate + + 2013-04-302018-06-05 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Stratus CM 4110 and Stratus CM 4120   + + + NCS Technologies, Inc. + + +   + + 2013-04-302015-04-30 + + + EAL2+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Cisco 5915 Embedded Services Router   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2013-05-06 – Cisco 5915 Embedded Services Router (ESR) Running IOS Version 15.2(3)
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Cisco Systems, Inc. + + +   + + 2013-04-292015-05-13 + + + EAL2+ +
ALC_DVS.1 +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + F5 Networks BIG-IP Local Traffic Manager Release 10.2.2 Build 763.3 Hotfix 2 with the Advanced Client Authentication and Protocol Security Modules running on Model 11050, 8900, or 6900 redundant pair hardware platform   +
+ +
+ + + + + + +
+
+ F5 Networks, Inc. + + +   + + 2013-04-212015-04-22 + + + EAL2+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Hewlett-Packard Networking A-Series Routers: MSR30, MSR50, 6600, and 8800   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2014-01-22 – Hewlett-Packard Company Network Routers Impact Analysis Report Revision 0.3, Dated January 16, 2014
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Hewlett-Packard Company + + +   + + 2013-03-202015-04-07 + + + EAL2+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Hewlett-Packard Networking A-Series Switches with VPN Firewall Module: 12500, 9500 and 7500   + + + Hewlett-Packard Company + + +   + + 2013-03-202015-04-07 + + + EAL2+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Riverbed Cascade Shark v9.6 and Cascade Pilot v9.6   +
+ +
+ + + + + + +
+
+ Riverbed Technology + + +   + + 2013-03-062018-04-19 + + + EAL3+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Router Operating System SEOS Version: 11.1.2.3 release no:713 running on Ericsson SmartEdge Series Router SE100, SE600, SE1200, SE1200H   +
+ +
+ + + + + + +
+
+ Ericsson India Global Services Pvt Ltd. + + +   + + 2013-03-042019-09-01 + + + EAL3 + + + IN – Indian Common Criteria Certification Scheme (IC3S)
IN
+
+ + Riverbed Cascade Profiler v9.6   +
+ +
+ + + + + + +
+
+ Riverbed Technology + + +   + + 2013-02-262018-04-19 + + + EAL3+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + The AX Series Advanced Traffic Manager   +
+ +
+ + + + + + +
+
+ A10 Networks, Inc. + + +   + + 2013-02-122019-09-01 + + + EAL2+ +
ALC_FLR.1 +
+ + NO – SERTIT
NO
+
+ + Cisco 7600 Series of Routers   +
+ +
+ + + + + + +
+
+ Cisco Systems, Inc. + + +   + + 2012-12-212014-12-31 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + IBM Tivoli Netcool/OMNIbus Version 7.3.1   +
+ +
+ + + + + + +
+
+ IBM United Kingdom Limited + + +   + + 2012-12-212014-12-31 + + + EAL4+ +
ALC_FLR.3 +
+ + US – National Information Assurance Partnership
US
+
+ + Infoblox Trinzic Appliances with NIOS v6.3   +
+ +
+ + + + + + +
+
+ Infoblox Incorporated + + +   + + 2012-12-172014-12-31 + + + EAL2+ +
ALC_DVS.1 +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Senetas CN/CS Series Encryptor Range & Senetas CM Management Application   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2013-07-22 – Certificate Report 2012/83
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Senetas Security Pty Ltd + + +   + + 2012-12-172019-09-01 + + + EAL2+ +
ALC_FLR.2 +
+ + AU – Australasian Certification Authority (ACA)
AU
+
+ + Certes TNM v3.4 Software with CEP 10 VSE, CEP 100 VSE, CEP 1000 VSE, and CEP 10G VSE Running CEP v2.1.1 Firmware   +
+ +
+ + + + + + +
+
+ Certes Network, Inc. + + +   + + 2012-12-142018-04-19 + + + EAL4+ +
ALC_FLR.3 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Cisco Catalyst Switches (4503-E, 4506-E, 4507R+E, 4507R-E, 4510R+E, 4510R-E, and 4500X) running IOS XE 3.3.1SG   +
+ +
+ + + + + + +
+
+ Cisco Systems, Inc. + + +   + + 2012-12-132014-12-31 + + + EAL2+ +
ALC_DVS.1 +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Virtual Air Gap (VAG) v.1.0.6   +
+ +
+ + + + + + +
+
+ ASELSAN ELEKTRONİK SAN. VE TİC AŞ. + + +   + + 2012-12-062019-09-01 + + + EAL4+ +
ALC_FLR.2 +
AVA_VAN.5 +
+ + ES – Organismo de Certificación de la Seguridad de las Tecnologías de la Información
ES
+
+ + Carrier Ethernet Solutions Service Delivery and Aggregation Switches, Release 6.9 and 7.1   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2014-05-30 – Ciena, Carrier Ethernet Solutions Service Delivery and Aggregation Switches, Release 6.10.2 and 7.2
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Ciena, Inc. + + +   + + 2012-11-262015-06-05 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + A10 Networks' AX Series Advanced Traffic Manager   +
+ +
+ + + + + + +
+
+ A10 Networks, Inc. + + +   + + 2012-10-262019-09-01 + + + EAL2+ +
ALC_FLR.1 +
+ + NO – SERTIT
NO
+
+ + Juniper Networks M-Series Multiservice Edge Routers, MX-Series 3D Universal Edge Routers, T-Series Core Routers and EX-Series Ethernet Switches running JUNOS 11.4R2   +
+ +
+ + + + + + +
+
+ Juniper Networks, Inc. + + +   + + 2012-10-222018-04-19 + + + EAL3+ +
ALC_FLR.3 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + McAfee® Email Gateway (MEG) software v7.0.1, running on appliance models 4000-B, 4500-B, 5000(B, C & C-2U), 5500(B & C), and the Content Security Blade Server   + + + McAfee, Inc. + + +   + + 2012-10-162018-04-19 + + + PP Compliant + + + CA – Canadian Common Criteria Scheme
CA
+
+ + Cisco Adaptive Security Appliances (ASA) Firewall and Virtual Private Network (VPN) Platform, version 8.4(4.1)   +
+ +
+ + + + + + +
+
+ Cisco Systems, Inc. + + +   + + 2012-10-112019-09-01 + + + EAL4+ +
ALC_FLR.2 +
+ + AU – Australasian Certification Authority (ACA)
AU
+
+ + Sonus Trunking Suite (GSX/NBS 9000, SGX 4000, PSX, DSI, EMS), Release v09.00   +
+ +
+ + + + + + +
+
+ Sonus Networks, Inc. + + +   + + 2012-09-242018-04-19 + + + EAL2+ +
ALC_DVS.1 +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Virtual Air Gap (VAG) v1.0.6   +
+ +
+ + + + + + +
+
+ ASELSAN ELEKTRONİK SAN. VE TİC AŞ. + + +   + + 2012-09-122017-03-27 + + + EAL4+ +
ALC_FLR.2 +
AVA_VAN.5 +
+ + TR – TSE (Turkish Standards Institution) Common Criteria Certification Scheme
TR
+
+ + Cisco Unified Wireless Network & Wireless Intrusion Prevention System Version: 7.0.230.0   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2013-05-30 – WLAN version 7.0.230.0 changed to 7.0.240.0 - minor bug fixes applied
    + Maintenance Report + + Maintenance ST + +
  2. + +
    +
  3. + 2013-10-10 – WLAN version 7.0.240.0 - Access Point (AP) model 1552 was added and guidance document updated
    + Maintenance Report + + Maintenance ST + +
  4. + +
    +
  5. + 2014-05-14 – WLAN version updated from v 7.0.240.0 to v 7.0.250.0 - The changes involved bug fixes as part of the ongoing maintenance of the product. This is in accordance with Flaw Remediation ALC_FLR.2.
    + Maintenance Report + + Maintenance ST + +
  6. + +
+
+ + +
+
+ Cisco Systems, Inc. + + +   + + 2012-08-132019-09-01 + + + EAL4+ +
ALC_FLR.2 +
+ + AU – Australasian Certification Authority (ACA)
AU
+
+ + Juniper Networks JUNOS® 10.4R5 for M-Series, MX-Series, T-Series Routers and EX Series Switches   +
+ +
+ + + + + + +
+
+ Juniper Networks, Inc. + + +   + + 2012-08-102018-04-19 + + + EAL3+ +
ALC_FLR.3 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + NetMotion Mobility XE® 9.5   +
+ +
+ + + + + + +
+
+ NetMotion Wireless, Inc. + + +   + + 2012-08-102018-04-19 + + + EAL4+ +
ALC_FLR.1 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Cisco Catalyst 6500 Series Switches running IOS 15.0(1)SY1   +
+ +
+ + + + + + +
+
+ Cisco Systems, Inc. + + +   + + 2012-07-272014-11-01 + + + EAL2+ +
ALC_DVS.1 +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Crossbeam Systems, Inc. X-Series Platform with XOS v9.9.0 on X60 and X80-S Chassis   +
+ +
+ + + + + + +
+
+ Crossbeam Systems, Inc. + + +   + + 2012-07-032017-05-15 + + + EAL4+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Cisco Catalyst Switches (3560X and 3570X) running IOS 15.0(1)SE2   +
+ +
+ + + + + + +
+
+ Cisco Systems, Inc. + + +   + + 2012-06-062014-11-01 + + + EAL2+ +
ALC_DVS.1 +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + WiMAX BS Software version V300R003C01SPC100   +
+ +
+ + + + + + +
+
+ Huawei Technologies Co. Ltd. + + +   + + 2012-05-212019-09-01 + + + EAL3+ +
ALC_CMC.4 +
ALC_CMS.4 +
+ + ES – Organismo de Certificación de la Seguridad de las Tecnologías de la Información
ES
+
+ + WCDMA NodeB Software, V200R013C01SPC010   +
+ +
+ + + + + + +
+
+ Huawei Technologies Co. Ltd. + + +   + + 2012-04-262019-09-01 + + + EAL3+ +
ALC_CMC.4 +
ALC_CMS.4 +
+ + ES – Organismo de Certificación de la Seguridad de las Tecnologías de la Información
ES
+
+ + BSC6900 Multimode Base Station Controller Software, V900R013C01SPC010   +
+ +
+ + + + + + +
+
+ Huawei Technologies Co. Ltd. + + +   + + 2012-04-232019-09-01 + + + EAL3+ +
ALC_CMC.4 +
ALC_CMS.4 +
+ + ES – Organismo de Certificación de la Seguridad de las Tecnologías de la Información
ES
+
+ + EMC® Ionix™ for IT Operations Intelligence (SMARTS®) - SAM 8.1.1, IP 8.1.1, NPM 3.1, SIA 2.3.1.1, EISM 3.0, SAM Adapters 1.3   +
+ +
+ + + + + + +
+
+ EMC Corporation + + +   + + 2012-04-122017-05-15 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + GBTS Software, versión V100R013C01   +
+ +
+ + + + + + +
+
+ Huawei Technologies Co. Ltd. + + +   + + 2012-04-032019-09-01 + + + EAL3+ +
ALC_CMC.4 +
ALC_CMS.4 +
+ + ES – Organismo de Certificación de la Seguridad de las Tecnologías de la Información
ES
+
+ + HERT-BBU Software Platform, versión V200R007C01SPC040B811   +
+ +
+ + + + + + +
+
+ Huawei Technologies Co. Ltd. + + +   + + 2012-04-032019-09-01 + + + EAL3+ +
ALC_CMC.4 +
ALC_CMS.4 +
+ + ES – Organismo de Certificación de la Seguridad de las Tecnologías de la Información
ES
+
+ + 3900 Series LTE eNodeB Software, versión V100R004C00SPC100   +
+ +
+ + + + + + +
+
+ Huawei Technologies Co. Ltd. + + +   + + 2012-03-202019-09-01 + + + EAL3+ +
ALC_CMC.4 +
ALC_CMS.4 +
+ + ES – Organismo de Certificación de la Seguridad de las Tecnologías de la Información
ES
+
+ + ZTE Softswitch and Media Gateway Communication System   +
+ +
+ + + + + + +
+
+ ZTE Corporation + + +   + + 2012-03-152019-09-01 + + + EAL2+ +
ALC_FLR.2 +
+ + NO – SERTIT
NO
+
+ + Citrix NetScaler Platinum Edition Load Balancer, Version 9.3, running on MPX 9700-FIPS, MPX 10500-FIPS, MPX 12500-FIPS, MPX 15500-FIPS, MPX 5500, MPX 7500, MPX 9500, MPX 10500, MPX 11500, MPX 12500, MPX 13500, MPX 14500, MPX 15500, MPX 16500, MPX 17500, MPX 17550, MPX 18500, MPX 19500, MPX 19550, MPX 20500, MPX 20550, MPX 21500, MPX 21550, VPX 10, VPX 200, VPX 1000, VPX 3000   +
+ +
+ + + + + + +
+
+ Citrix Systems, Inc. + + +   + + 2012-03-122015-02-04 + + + EAL2+ +
ALC_FLR.2 +
+ + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + Blue Coat ProxySG SG510, SG810, and SG9000 running SGOS v5.5   +
+ +
+ + + + + + +
+
+ Blue Coat Systems, Inc. + + +   + + 2012-03-092017-05-15 + + + EAL4+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Blue Coat ProxySG SG510, SG600, SG810, SG900, and SG9000 running SGOS v6.1   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2012-08-07 – Blue Coat Systems, Inc. ProxySG SG510, SG600, SG810, SG900, and SG9000 running SGOS v6.1
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Blue Coat Systems, Inc. + + +   + + 2012-03-062017-05-15 + + + EAL4+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + iManager M2000 version 2 Release 11 C01 CP 1301   +
+ +
+ + + + + + +
+
+ Huawei Technologies Co. Ltd. + + +   + + 2012-03-032019-09-01 + + + EAL3+ +
ALC_CMC.4 +
ALC_CMS.4 +
+ + ES – Organismo de Certificación de la Seguridad de las Tecnologías de la Información
ES
+
+ + Integrated Management Application Platform Version 3 Release 1 C05 SPC500   +
+ +
+ + + + + + +
+
+ Huawei Technologies Co. Ltd. + + +   + + 2012-03-032019-09-01 + + + EAL3+ +
ALC_CMC.4 +
ALC_CMS.4 +
+ + ES – Organismo de Certificación de la Seguridad de las Tecnologías de la Información
ES
+
+ + Kaseya Virtual System Administrator Version 6.2.1.0   +
+ +
+ + + + + + +
+
+ Kaseya International Limited + + +   + + 2012-02-162017-02-16 + + + EAL2+ +
ALC_FLR.2 +
+ + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + Alcatel-Lucent OmniSwitches 9000E series, 9000 series, 6855 series, 6850 series, 6850E series, 6400 family with AOS Release 6.4.4   +
+ +
+ + + + + + +
+
+ Alcatel-Lucent + + +   + + 2012-01-202014-11-01 + + + EAL2+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + JUNOS-FIPS for SRX Series version 10.4R4   + + + Juniper Networks, Inc. + + +   + + 2012-01-092017-05-15 + + + EAL4+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Cisco UCS 5100 Series Blade Server Chassis, B-Series Blade Servers, C-Series Rack-Mount Servers, 2100 and 2200 Series Fabric Extenders, and 6100 Series Fabric Interconnects with UCSM 1.4(1m)   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2013-04-18 – Cisco UCS 5100 Series Blade Server Chassis, B-Series Blade Servers, C-Series Rack-Mount Servers, 2100 and 2200 Series Fabric Extenders, and 6100 and 6200 Series Fabric Interconnects with UCSM 2.0(4b) with TOE hardware: Cisco UCS 5108 Blade Server Chassis, Cisco UCS B200 M1/M2/M3, B230 M1/M2, B250 M1/M2, B420 M3, B440 M1/M2, and M22 M3 Blade Servers, Cisco UCS C200 M1/M2/M2SFF, C210 M1/M2, C220 M3, C240 M3, C250 M1/M2, C260 M2, C460 M2, C22 M3, and C24 M3 Rack-Mount Servers, Cisco UCS 6120XP, 6140XP, 6248UP, and 6296UP Fabric Interconnects, Cisco UCS 2104XP, 2204XP, 2208XP and 2232PP Fabric Extenders
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Cisco Systems, Inc. + + +   + + 2011-12-302015-04-22 + + + EAL4+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Mobiledesk VPN v1.0   +
+ +
+ + + + + + +
+
+ Samsung SDS + + +   + + 2011-12-292019-06-01 + + + EAL3 + + + KR – IT Security Certification Center(ITSCC)
KR
+
+ + ZXUN USPP Universal Subscriber Profile Platform   +
+ +
+ + + + + + +
+
+ ZTE Corporation + + +   + + 2011-12-162019-09-01 + + + EAL2+ +
ALC_FLR.2 +
+ + NO – SERTIT
NO
+
+ + ZXR10 5900 & 5900E & 8900 & ZSR & T1200 Series Switches and Routers running the ZXROS Operating System   +
+ +
+ + + + + + +
+
+ ZTE Corporation + + +   + + 2011-11-222019-09-01 + + + EAL3+ +
ALC_FLR.2 +
+ + NO – SERTIT
NO
+
+ + ZXR10 M6000 & T8000 & 8900E Series Routers and Switches Running the ZXROSNG Operating System   +
+ +
+ + + + + + +
+
+ ZTE Corporation + + +   + + 2011-11-102019-09-01 + + + EAL3+ +
ALC_FLR.2 +
+ + NO – SERTIT
NO
+
+ + BMC Remedy Action Request System 7.5.00   +
+ +
+ + + + + + +
+
+ BMC Software, Inc. + + +   + + 2011-10-312014-11-01 + + + EAL4 + + + US – National Information Assurance Partnership
US
+
+ + Tripp Lite Secure KVM Switch Series (Model B002-DUA2 and Model B002-DUA4)   + + + Tripp Lite + + +   + + 2011-10-312014-11-01 + + + EAL2+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + McAfee Vulnerability Manager 7.0   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2012-10-31 – McAfee Vulnerability Manager v7.5
    + Maintenance Report + +
  2. + +
    +
  3. + 2014-01-28 – Vulnerability Manager v7.5.4, Dated October 9, 2013
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ McAfee, Inc. + + +   + + 2011-10-242015-06-05 + + + EAL2+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + ZXR10 3900 Series Switches Running the ZXROS Operating System   +
+ +
+ + + + + + +
+
+ ZTE Corporation + + +   + + 2011-10-212019-09-01 + + + EAL3+ +
ALC_FLR.2 +
+ + NO – SERTIT
NO
+
+ + HP Networking E-Series Switch Models: E3500yl, E5400zl, E6200yl, E6600, E8200zl with Software Version K.15.02.0005   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2012-11-19 – HP Network Switch Models: 3500yl, 5400zl, 6200yl, 6600, 8200zl with Software Version K.15.09.0004 Models: 3800 with Software Version KA.15.09.0004
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Hewlett-Packard Company + + +   + + 2011-10-182014-12-31 + + + EAL2+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + ZTE Mobile Switching Center Server / intelligent Controller Extensive   +
+ +
+ + + + + + +
+
+ ZTE Corporation + + +   + + 2011-09-262019-09-01 + + + EAL2+ +
ALC_FLR.2 +
+ + NO – SERTIT
NO
+
+ + Cisco Nexus 5000 Series Switch w/2000 Series Fabric Extenders running s/w NX-OS v5.0(3)N1(1c), and Cisco Secure Access Control Server (ACS) running s/w v5.2 patch 3   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2012-07-06 – Cisco Nexus 5000 with v5.0(3)N1(1c)
    + Maintenance Report + +
  2. + +
    +
  3. + 2014-03-31 – Cisco Nexus 5000 with v5.2(1)N1(2a)
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ Cisco Systems, Inc. + + +   + + 2011-09-082015-06-05 + + + EAL4+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Senetas CN / CS Ethernet Encryptors   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2011-12-22 – SONET and Fibre channel Encryptors running software version 4.0.2
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Senetas Security Pty Ltd + + +   + + 2011-09-052019-09-01 + + + EAL4+ +
ALC_FLR.2 +
+ + AU – Australasian Certification Authority (ACA)
AU
+
+ + CA GigaStor 14.1   +
+ +
+ + + + + + +
+
+ CA Technologies + + +   + + 2011-08-262017-05-15 + + + EAL2+ +
ALC_FLR.1 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Network Instruments® GigaStor 14.1™   +
+ +
+ + + + + + +
+
+ Network Instruments + + +   + + 2011-08-262017-05-15 + + + EAL2+ +
ALC_FLR.1 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + 3eTI Airguard Wireless Network Access System   +
+ +
+ + + + + + +
+
+ 3e Technologies International, Inc. + + +   + + 2011-08-192014-11-01 + + + EAL4+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Belkin Secure KVM Switch (Models F1DN102B, F1DN104B, F1DN102C, F1DN104C, F1DN104E, F1DN104F)   + + + Belkin International, Inc. + + +   + + 2011-08-012015-05-14 + + + EAL2+ +
ALC_FLR.3 +
+ + US – National Information Assurance Partnership
US
+
+ + Cisco Integrated Service Routers (ISR): Cisco 800 Series ISRs: 881, 881G and 891; Cisco 1900 Series ISRs: 1905, 1921, and 1941; Cisco 2900 Series ISRs: 2901, 2911, 2921 and 2951; Cisco 3900 Series ISRs: 3925, 3925E, 3945 and 3945E; running IOS 15.1.2T3   +
+ +
+ + + + + + +
+
+ Cisco Systems, Inc. + + +   + + 2011-07-312014-11-01 + + + EAL4+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Wyse Device Manager Enterprise Edition 4.7.2   +
+ +
+ + + + + + +
+
+ Wyse Technology + + +   + + 2011-07-182017-07-13 + + + EAL2 + + + AU – Australasian Certification Authority (ACA)
AU
+
+ + Juniper Networks JUNOS 10.0 r4 for J-Series and SRX-Series Platforms   +
+ +
+ + + + + + +
+
+ Juniper Networks, Inc. + + +   + + 2011-07-152017-07-13 + + + EAL3 + + + AU – Australasian Certification Authority (ACA)
AU
+
+ + PSTmail 3.0.5   +
+ +
+ + + + + + +
+
+ Autek Ingeniería, S.L. + + +   + + 2011-07-142019-09-01 + + + EAL4+ +
ALC_FLR.1 +
+ + ES – Organismo de Certificación de la Seguridad de las Tecnologías de la Información
ES
+
+ + Carrier Grade Platform (CGP) v1 r5   +
+ +
+ + + + + + +
+
+ Huawei Technologies Co. Ltd. + + +   + + 2011-07-052019-09-01 + + + EAL3 + + + ES – Organismo de Certificación de la Seguridad de las Tecnologías de la Información
ES
+
+ + NetEngine40E/CX600 Universal Service Router v6 r1   +
+ +
+ + + + + + +
+
+ Huawei Technologies Co. Ltd. + + +   + + 2011-07-052019-09-01 + + + EAL3 + + + ES – Organismo de Certificación de la Seguridad de las Tecnologías de la Información
ES
+
+ + Aruba Mobility Controller and Access Point Series, Version 3.4.2.3   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2012-08-23 – Aruba Mobility Controller and Access Point Series, ArubaOS 3.4.4.0-FIPS
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Aruba Networks + + +   + + 2011-06-272014-11-01 + + + EAL4+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Argon Ruggedized KVM Switch   + + + Argon Corp. + + +   + + 2011-05-202014-11-01 + + + EAL4+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Cisco Nexus 7000 Series Switch running Software version NX-OS version 5.1(a) and Cisco Secure Access Control Server (ACS) running version 5.2 patch 3   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2013-02-05 – Cisco Nexus 7000 Series Switch running NX-OS version 5.2(5) and Cisco Secure Access Control Server (ACS) running ACS version 5.2 patch 10
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Cisco Systems, Inc. + + +   + + 2011-04-272015-02-26 + + + EAL4+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Symantec Risk Automation Suite 4.0.5   +
+ +
+ + + + + + +
+
+ Symantec Corporation + + +   + + 2011-03-212017-05-15 + + + EAL3+ +
ALC_FLR.1 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Juniper Networks Circuit to Packet Series Version 5.4R2   +
+ +
+ + + + + + +
+
+ Juniper Networks, Inc. + + +   + + 2011-03-042017-05-15 + + + EAL3 + + + CA – Canadian Common Criteria Scheme
CA
+
+ + CA Directory r12.0 SP3   +
+ +
+ + + + + + +
+
+ CA Technologies + + +   + + 2011-03-012017-05-15 + + + EAL3+ +
ALC_FLR.1 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Network Operating System Software(NOS), Comware Ver 5.2 Release 1002(CC), running on MSR20, MSR 30, MSR 50, SR 66 and SR 88 series routers.   +
+ +
+ + + + + + +
+
+ H3C Technologies Co. Ltd. + + +   + + 2011-03-012019-09-01 + + + EAL2 + + + IN – Indian Common Criteria Certification Scheme (IC3S)
IN
+
+ + Remote Communication Gate A Version: Machine Code (First 4 characters): D459, Firmware Version: A2.06-C2.04-P2.01-K2.02   +
+ +
+ + + + + + +
+
+ Ricoh Company, Ltd. + + +   + + 2011-02-252016-03-03 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Citrix NetScaler Platinum Edition Load Balancer v9.2 running on platforms MPX 5500, MPX 9700-FIPS, MPX 10500-FIPS, MPX 12500-FIPS, MPX 15500-FIPS, MPX 7500, MPX 9500, MPX 10500, MPX 12500, MPX 15500, MPX 17500, MPX 19500, and VPX-10, VPX-200, VPX-1000, VPX-3000   +
+ +
+ + + + + + +
+
+ Citrix Systems, Inc. + + +   + + 2011-02-142013-04-15 + + + EAL2+ +
ALC_FLR.2 +
+ + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + Remote Communication Gate A Version: Machine Code (First 4 characters): D459, Firmware Version: A1.18-C1.14-P1.12-K1.04   +
+ +
+ + + + + + +
+
+ Ricoh Company, Ltd. + + +   + + 2010-10-222015-11-01 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Juniper Networks M7i, M10i, M40e, M120, M320, T320, T640, T1600, MX240, MX480 and MX960 Services Routers and EX3200, EX4200 and EX8200 Switches running JUNOS 10   +
+ +
+ + + + + + +
+
+ Juniper Networks, Inc. + + +   + + 2010-10-082015-10-08 + + + EAL3+ +
ALC_FLR.3 +
+ + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + Silver Peak NX Series Software v3.1   +
+ +
+ + + + + + +
+
+ Silver Peak Systems, Inc. + + +   + + 2010-08-062015-09-29 + + + EAL2+ +
ALC_FLR.1 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Shavlik Security Suite V8.0   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2011-11-17 – Shavlik Security Suite v8.1
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Shavlik Technologies, LLC + + +   + + 2010-07-082015-09-29 + + + EAL3+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Riverbed Steelhead Appliance v4.1   +
+ +
+ + + + + + +
+
+ Riverbed Technology + + +   + + 2010-06-282015-09-29 + + + EAL4+ +
ALC_FLR.1 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + NetScout Systems, Inc. nGenius® InfiniStream® (V4.7 MR2), nGenius® Performance Manager (V4.7 MR2), and nGenius® K2 (V4.7 MR2)   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2012-01-19 – NetScout nGenius® InfiniStream® (V4.11 MR1), nGenius® Performance Manager (V4.11 MR1), and nGenius® Service Delivery Manager (V4.11 MR1)
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ NetScout Systems, Inc. + + +   + + 2010-06-042015-09-29 + + + EAL3+ +
ALC_FLR.1 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + MICROTECH M7245 Revision 7, M7246 Revision 7, and M7248 Revision 4   +
+ +
+ + + + + + +
+
+ MicroTech + + +   + + 2010-05-262015-09-29 + + + EAL4 + + + CA – Canadian Common Criteria Scheme
CA
+
+ + CA eHealth Network Performance Manager r6.1.2   +
+ +
+ + + + + + +
+
+ CA Technologies + + +   + + 2010-05-192014-11-01 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + Infoblox® NetMRI® v4.2.2.45   +
+ +
+ + + + + + +
+
+ Infoblox Incorporated + + +   + + 2010-05-122015-09-29 + + + EAL2+ + + + CA – Canadian Common Criteria Scheme
CA
+
+ + Citrix NetScaler Platinum Edition Load Balancer v9.1 on NetScaler 9010 FIPS, MPX 7000 platform, MPX 9000 platform, MPX 10000 platform and MPX 12000 platform   +
+ +
+ + + + + + +
+
+ Citrix Systems, Inc. + + +   + + 2010-04-162013-04-15 + + + EAL2+ + + + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + OmniPCX Enterprise software, release 9.0 and OmniVista 4760 software, release 5.0   +
+ +
+ + + + + + +
+
+ Alcatel-Lucent + + +   + + 2010-04-072019-09-01 + + + EAL2+ +
ADV_HLD.2 +
ALC_DVS.1 +
ALC_FLR.3 +
AVA_MSU.1 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + OmniPCX Enterprise solution : OmniPCX Enterprise (release 9.0) and OmniVista 4760 (release 5.0) softwares   +
+ +
+ + + + + + +
+
+ Alcatel-Lucent + + +   + + 2010-04-072019-09-01 + + + EAL2+ +
ADV_HLD.2 +
ALC_DVS.1 +
ALC_FLR.3 +
AVA_MSU.1 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Juniper Networks Secure Access Family V6.4R2   +
+ +
+ + + + + + +
+
+ Juniper Networks, Inc. + + +   + + 2010-03-102019-09-01 + + + EAL3+ + + + AU – Australasian Certification Authority (ACA)
AU
+
+ + Suite MISTRAL IP : version 7.0.2 pour TRC 7535, version 7.0.1 pour TRC 7539-11-A et leur centre de gestion CGM version 7.0.1   +
+ +
+ + + + + + +
+
+ Thales Communications & Security + + +   + + 2010-01-182019-09-01 + + + EAL3+ +
ADV_IMP.1 +
ADV_LLD.1 +
ALC_FLR.3 +
ALC_TAT.1 +
AVA_VLA.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Compucat Secure Optical Switch, part numbers 1105-0062-04 and 1105-0067-04   +
+ +
+ + + + + + +
+
+ Compucat Research Pty Ltd + + +   + + 2009-12-022019-09-01 + + + EAL7 + + + AU – Australasian Certification Authority (ACA)
AU
+
+ + Trustwave Network Access Control (NAC) Software Version 3.4.0   +
+ +
+ + + + + + +
+
+ Trustwave + + +   + + 2009-11-122015-09-29 + + + EAL2+ +
ALC_FLR.1 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + BladeLogic Operations Manager 7.4   +
+ +
+ + + + + + +
+
+ BladeLogic, Inc. + + +   + + 2009-11-112014-05-08 + + + EAL3 + + + US – National Information Assurance Partnership
US
+
+ + CypherNET Ethernet Encryptor (2.0.0), CypherNET Fibre Channel Encryptor (2.0.0), CypherStream Ethernet Encryptor (1.0.6) and CypherManager (6.5.0)   +
+ +
+ + + + + + +
+
+ Senetas Corporation Ltd. + + +   + + 2009-10-262019-09-01 + + + EAL4+ +
ALC_FLR.2 +
+ + AU – Australasian Certification Authority (ACA)
AU
+
+ + EMC® VoyenceControl™ v4.1.0   +
+ +
+ + + + + + +
+
+ EMC Corporation + + +   + + 2009-09-252015-09-29 + + + EAL2+ +
ALC_FLR.1 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Microsoft® System Center Mobile Device Manager 2008   +
+ +
+ + + + + + +
+
+ Microsoft Corporation + + +   + + 2009-09-172019-09-01 + + + EAL4+ +
ALC_FLR.3 +
+ + AU – Australasian Certification Authority (ACA)
AU
+
+ + Microsoft® System Center Mobile Device Manager 2008-Service Pack 1   +
+ +
+ + + + + + +
+
+ Microsoft Corporation + + +   + + 2009-09-172019-09-01 + + + EAL4+ +
ALC_FLR.3 +
+ + AU – Australasian Certification Authority (ACA)
AU
+
+ + CA Spectrum Network Fault Manager r9.0 SP1   +
+ +
+ + + + + + +
+
+ CA Technologies + + +   + + 2009-09-082015-09-28 + + + EAL2 + + + CA – Canadian Common Criteria Scheme
CA
+
+ + Force10 Networks FTOS 7.8 for C-Series Switches, S-Series Switches and E-Series Switch/Routers   +
+ +
+ + + + + + +
+
+ Force10 Networks Inc. + + +   + + 2009-08-142015-09-29 + + + EAL2 + + + CA – Canadian Common Criteria Scheme
CA
+
+ + Juniper Networks JUNOS 9.3 for J-Series and SRX-Series Platforms   +
+ +
+ + + + + + +
+
+ Juniper Networks, Inc. + + +   + + 2009-07-072017-07-13 + + + EAL3 + + + AU – Australasian Certification Authority (ACA)
AU
+
+ + Alcatel-Lucent VPN Firewall (ALVF) v9.1 with one or more of the Firewall Appliance Models 50, 150, 700, and/or 1200   +
+ +
+ + + + + + +
+
+ Alcatel-Lucent + + +   + + 2009-05-222012-07-20 + + + EAL4+ +
ALC_FLR.1 +
+ + US – National Information Assurance Partnership
US
+
+ + Cisco ASA 5505, 5510, 5520, 5540, and 5550 (Release 7.2(4)), Cisco VPN Client Release 5.0.03.0560   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2009-04-30 – Cisco Adaptive Security Appliances 5505, 5510, 5520, 5540 and 5550, ASA VPN Version 7.2(4), VPN Client 5.0.05.0290
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Cisco Systems, Inc. + + +   + + 2009-04-132012-07-20 + + + EAL4+ +
ALC_FLR.1 +
+ + US – National Information Assurance Partnership
US
+
+ + BULL TrustWay VPN Line : TVPN v4.05.02, TCRX/TCRX2 v4.05.01   +
+ +
+ + + + + + +
+
+ BULL S.A. + + +   + + 2009-04-022019-09-01 + + + EAL2+ + + + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Cisco Unified Wireless Network Solution composed of the following components: Cisco Aironet 1130, 1230, and 1240 AG Series Access Points; Cisco 4400 Series Wireless LAN Controllers; Cisco Catalyst 6500 Series Wireless Integrated Services Module (WiSM); Cisco Wireless Control System (WCS); Cisco Secure Access Control Server (ACS); Cisco 2710 Wireless Location   +
+ +
+ + + + + + +
+
+ Cisco Systems, Inc. + + +   + + 2009-03-252012-07-20 + + + EAL2+ +
ALC_FLR.2 +
ACM_SCP.1 +
AVA_MSU.1 +
+ + US – National Information Assurance Partnership
US
+
+ + Blue Coat ProxySG v5.3.1.9 Appliance Build Number 36410 running on the SG510, SG810, and SG8100   +
+ +
+ + + + + + +
+
+ Blue Coat Systems, Inc. + + +   + + 2009-03-062015-09-28 + + + EAL2+ +
ALC_FLR.1 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Enterasys Matrix N, DFE Gold Enterasys Networking System v6.01, Matrix N, DFE Platinum Enterasys Networking System v6.01, Matrix N, DFE Diamond Enterasys Networking System v6.01 and Matrix X Enterasys Networking System v1.6.4P4   +
+ +
+ + + + + + +
+
+ Enterasys Networks, Inc + + +   + + 2009-02-272015-09-29 + + + EAL3+ +
ALC_FLR.1 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Belkin OmniView Secure KVM Switch Models 2-port (F1DN102U), 4-port (F1DN104U), 8- port (F1DN108U)   +
+ +
+ + + + + + +
+
+ Belkin International, Inc. + + +   + + 2009-02-252012-07-20 + + + EAL4+ +
ALC_FLR.3 +
+ + US – National Information Assurance Partnership
US
+
+ + Cisco Network Admission Control (NAC) solution including the NAC Appliance, NAC Network Module for Cisco Integrated Services Routers (ISRs), NAC Agent, NAC Profiler, and Cisco Secure Access Control Server (ACS)   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2009-09-03 – Cisco Network Admission Control (NAC) solution including the NAC Appliance, NAC Network Module for Cisco Integrated Services Routers (ISRs), NAC Agent, NAC Profiler, and Cisco Secure Access Control Server (ACS) v4.5.1
    + Maintenance Report + + Maintenance ST + +
  2. + +
    +
  3. + 2010-07-26 – Cisco Network Admisson Control (NAC)
    + Maintenance Report + + Maintenance ST + +
  4. + +
+
+ + +
+
+ Cisco Systems, Inc. + + +   + + 2009-02-162017-07-13 + + + EAL2+ +
ALC_FLR.2 +
+ + AU – Australasian Certification Authority (ACA)
AU
+
+ + Tactical Network-layer Gateway (2E2 IA): a GD Canada MESHnet Gateway product   +
+ +
+ + + + + + +
+
+ General Dynamics Canada + + +   + + 2009-02-102015-09-29 + + + EAL2+ +
ALC_FLR.1 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + JUNOS 9.3R1 M/MX/T & EX family of routers and switches   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2009-02-01 – Juniper Networks EX3200 and EX4200 Switches running JUNOS 9.3R2
    + Maintenance Report + + Maintenance ST + +
  2. + +
    +
  3. + 2011-04-08 – JUNOS release 9.3R1
    + Maintenance Report + + Maintenance ST + +
  4. + +
    +
  5. + 2011-04-08 – JUNOS release 9.3R2
    + Maintenance Report + + Maintenance ST + +
  6. + +
+
+ + +
+
+ Juniper Networks, Inc. + + +   + + 2009-02-032014-02-03 + + + EAL3+ +
ALC_FLR.3 +
+ + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + CA eHealth Network Performance Manager v5.7 SP9   +
+ +
+ + + + + + +
+
+ CA Technologies + + +   + + 2009-01-282012-07-20 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + Cisco MDS 9000 Family SAN-OS Release 3.2(2c)   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2010-01-11 – Cisco MDS 9000 Family SAN-OS Release 3.2(2c)
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Cisco Systems, Inc. + + +   + + 2008-09-252012-07-20 + + + EAL3+ +
ALC_FLR.1 +
+ + US – National Information Assurance Partnership
US
+
+ + Juniper Networks Odyssey Access Client (FIPS Edition), Version 4.56   +
+ +
+ + + + + + +
+
+ Juniper Networks, Inc. + + +   + + 2008-09-232012-07-20 + + + EAL3+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Citrix NetScaler Application Switch with Access Gateway Enterprise Edition & Application Firewall Version 8.0   +
+ +
+ + + + + + +
+
+ Citrix Systems, Inc. + + +   + + 2008-08-282013-04-30 + + + EAL2+ +
ALC_FLR.1 +
+ + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + Nortel VPN Router v7.05 and Client Workstation v7.11   +
+ +
+ + + + + + +
+
+ Nortel Networks + + +   + + 2008-08-272015-09-29 + + + EAL4+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Cisco ACE XML Gateway and Manager Version 5.0.3   +
+ +
+ + + + + + +
+
+ Cisco Systems, Inc. + + +   + + 2008-08-122012-07-20 + + + EAL3+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Cisco Info Center v7.1 with Cisco WebTop v2.0   +
+ +
+ + + + + + +
+
+ Cisco Systems, Inc. + + +   + + 2008-07-312012-07-20 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + Configuresoft Enterprise Configuration Manager 4.0   +
+ +
+ + + + + + +
+
+ Configuresoft + + +   + + 2008-07-312012-07-20 + + + EAL3 + + + US – National Information Assurance Partnership
US
+
+ + IBM Tivoli Netcool OMNIbus v7.1 with Tivoli Netcool Webtop v2.0   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2008-07-312012-07-20 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + Check Point Integrity Agent, version 6.5.063.145   +
+ +
+ + + + + + +
+
+ Check Point Software Technologies Ltd. + + +   + + 2008-07-232012-07-20 + + + EAL4+ +
ALC_FLR.2 +
AVA_VLA.3 +
+ + US – National Information Assurance Partnership
US
+
+ + Foundry Networks IronShield (BigIron, NetIron, and FastIron) Switches and Routers   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2009-09-28 – ServerIron (JetCore family with IronWare OS version 11.0.00a and ADX family with IronWare OS version 12.0.00a)
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Foundry Networks, Inc. + + +   + + 2008-07-112012-07-20 + + + EAL2+ +
ALC_FLR.1 +
+ + US – National Information Assurance Partnership
US
+
+ + Equant IPVPN system   +
+ +
+ + + + + + +
+
+ France Telecom R&D, Ilex + + +   + + 2008-07-082019-09-01 + + + EAL2+ +
ALC_FLR.1 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Aruba 6000 and Aruba 800 Series Mobility Controller Running ArubaOS Version 2.4.8.14-FIPS   + + + Aruba Networks + + +   + + 2008-06-272013-08-23 + + + EAL2+ +
ACM_SCP.1 +
ALC_FLR.2 +
AVA_MSU.1 +
+ + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + CypherNET Multi-Protocol Encryptor   +
+ +
+ + + + + + +
+
+ Senetas Corporation Ltd. + + +   + + 2008-06-062019-09-01 + + + EAL4 + + + AU – Australasian Certification Authority (ACA)
AU
+
+ + Cisco IOS IPSec on the Integrated Services Routers, VPN Services Module (VPNSM) and IPSec VPN Shared Port Adapted (SPA), incluiding VLAN Separation   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2009-12-11 – Cisco IOS IPSEC on the Integrated Services Routers, VPN Services Module (VPNSM), and IPSec VPN Shared Port Adapter (SPA), including VLAN Separation, with the following Cisco IOS releases: Cisco IOS 12.4(15)T10 and Cisco IOS 12.2(18)SXF16
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Cisco Systems, Inc. + + +   + + 2008-05-312012-07-20 + + + EAL4+ +
ALC_FLR.1 +
+ + US – National Information Assurance Partnership
US
+
+ + Cisco Systems Catalyst Switches and Cisco Secure ACS for Windows Server Version 4.1.4.13   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2009-12-11 – Cisco Systems Catalyst Switches (2900 running 12.1(22)EA13; 4500, 4900M, 4928, 4948 running 12.2(53)SG; 6500 running 12.2(18)SXF16) and Cisco Secure ACS for Windows Server version 4.1.4.13
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Cisco Systems, Inc. + + +   + + 2008-05-272012-07-20 + + + EAL3+ +
ALC_FLR.1 +
+ + US – National Information Assurance Partnership
US
+
+ + CA Unicenter Systems Management (NSM) r11.1   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2009-12-03 – CA Unicenter Network and Systems Management, Version r11.2 SP1
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ CA Technologies + + +   + + 2008-05-162012-07-20 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + McAfee Hercules Policy Auditor and McAfee Hercules Remediation Manager Version 4.5   +
+ +
+ + + + + + +
+
+ McAfee, Inc. + + +   + + 2008-04-112015-09-29 + + + EAL3 + + + CA – Canadian Common Criteria Scheme
CA
+
+ + Appliance MISTRAL TRC 7535 V4.6.1   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2008-07-31 – Maintenance Report DCSSI-2008/09-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Thales Communications S.A. + + +   + + 2008-03-102019-09-01 + + + EAL3+ +
ADV_IMP.1 +
ALC_FLR.3 +
ALC_TAT.1 +
ADV_LLD.1 +
AVA_VLA.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Cisco Systems Routers (800, 1700, 1800, 2600XM, 2800, 3700, 3800, and 7200 running Cisco IOS Release 12.4(11)T2; 7300, 7400, and 7600 running Cisco IOS Release 12.2(18) SXF8; 10000 and 12000 running 12.0(32)s7) and Cisco Secure ACS version 4.1.2.12   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2009-12-11 – Cisco Systems Routers (800, 1700, 1800, 2600XM, 2800, 3700, 3800, and 7200 running Cisco IOS Release 12.4(15)T10; 7300 and 7600 running Cisco IOS Release 12.2(18)SXF16) and a Cisco Secure Access Control Server version 4.1.2.12
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Cisco Systems, Inc. + + +   + + 2008-02-292012-07-20 + + + EAL3 + + + US – National Information Assurance Partnership
US
+
+ + FirePass 4100 Version 5.5.2 + Hotfix HF-552-10   +
+ +
+ + + + + + +
+
+ F5 Networks, Inc. + + +   + + 2007-12-192012-07-20 + + + EAL2+ +
ADV_SPM.1 +
ALC_FLR.1 +
+ + US – National Information Assurance Partnership
US
+
+ + Blue Coat ProxySG Operating System v4.2.5.1   +
+ +
+ + + + + + +
+
+ Blue Coat Systems, Inc. + + +   + + 2007-11-142015-09-28 + + + EAL2+ +
ALC_FLR.1 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + StillSecure Safe Access V5.0   +
+ +
+ + + + + + +
+
+ StillSecure + + +   + + 2007-10-042012-07-20 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + Symantec™ Security Information Manager Version 4.5   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2009-09-09 – Symantec™ Security Information Manager Version 4.7
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ Symantec Corporation + + +   + + 2007-09-122015-09-29 + + + EAL2 + + + CA – Canadian Common Criteria Scheme
CA
+
+ + EMC® Smarts® Service Assurance Management (SAM) Suite and Internet Protocol (IP) Management Suite 6.5.1   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2007-12-18 – EMC® Smarts® Service Assurance Management (SAM) Suite and Internet Protocol (IP) Management Suite 6.5.1-RP42 with EMC® Smarts® Storage Insight for Availability (SIA) 1.0.
    + Maintenance Report + + Maintenance ST + +
  2. + +
    +
  3. + 2008-04-10 – EMC® Smarts® Service Assurance Management (SAM) Suite 7.1, SAM Adapters 1.1, and Internet Protocol (IP) Management Suite 7.0.2, with EMC® Smarts® Storage Insight for Availability (SIA) 2.0.1
    + Maintenance Report + + Maintenance ST + +
  4. + +
+
+ + +
+
+ EMC Corporation + + +   + + 2007-08-032015-09-29 + + + EAL2 + + + CA – Canadian Common Criteria Scheme
CA
+
+ + JUNOScope IP service Manager 8.2R2   +
+ +
+ + + + + + +
+
+ Juniper Networks, Inc. + + +   + + 2007-07-012013-03-05 + + + EAL3+ +
ALC_FLR.3 +
+ + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + Marimba Client and Server Management from BMC Software Release 6.0.3   +
+ +
+ + + + + + +
+
+ BMC Software, Inc. + + +   + + 2007-06-212012-09-06 + + + EAL3 + + + US – National Information Assurance Partnership
US
+
+ + Cisco Remote Access VPN   +
+ +
+ + + + + + +
+
+ Cisco Systems, Inc. + + +   + + 2007-05-252019-09-01 + + + EAL2 + + + AU – Australasian Certification Authority (ACA)
AU
+
+ + Datacryptor 2000 V3.41 & Datacryptor Advanced Performance V3.511   +
+ +
+ + + + + + +
+
+ Thales e-Security Ltd + + +   + + 2007-05-042017-07-13 + + + EAL4 + + + AU – Australasian Certification Authority (ACA)
AU
+
+ + CA Directory r8.1 0608 (build 942)   +
+ +
+ + + + + + +
+
+ CA Technologies + + +   + + 2007-04-302012-09-06 + + + EAL3 + + + US – National Information Assurance Partnership
US
+
+ + BIG-IP Local Traffic Manager 6400 High Availability Pair (Qty 2) HardwarePN: 200-0153-05 Rev. C Software Ver. 9.2.3 + Hotfix CR69440   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2007-06-26 – F5 BIG-IP Local traffic Manager 6400 High Availability pair (qty 2) F5 BIG LTM 6400
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ F5 Networks, Inc. + + +   + + 2007-04-162012-09-06 + + + EAL2+ +
ALC_FLR.1 +
+ + US – National Information Assurance Partnership
US
+
+ + BMC Remedy Action Request System 6.3   +
+ +
+ + + + + + +
+
+ BMC Software, Inc. + + +   + + 2007-04-102012-09-06 + + + EAL3 + + + US – National Information Assurance Partnership
US
+
+ + SafezoneIPS@v1.0(sz24OU)   +
+ +
+ + + + + + +
+
+ LG N-Sys + + +   + + 2007-04-052019-06-01 + + + EAL4 + + + KR – IT Security Certification Center(ITSCC)
KR
+
+ + SafezoneIPS@v1.0(sz5XU)   +
+ +
+ + + + + + +
+
+ LG N-Sys + + +   + + 2007-04-052019-06-01 + + + EAL4 + + + KR – IT Security Certification Center(ITSCC)
KR
+
+ + BEA WebLogic Portal V8.1 SP5 with BEA06-81/02 and BEA07-107.02 security advisory patches   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2007-07-24 – BEA WebLogic Portal 8.1 SP6
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ BEA Systems, Inc. + + +   + + 2007-04-022012-09-06 + + + EAL2+ +
ALC_FLR.1 +
+ + US – National Information Assurance Partnership
US
+
+ + Juniper Networks M/T/J series Routers   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2008-02-11 – Juniper Networks M/T/J Series Families of Service Routers running JUNOS 8.1R3, Covering J2300, J4350, J6350, M7i and M10i
    + Maintenance Report + + Maintenance ST + +
  2. + +
    +
  3. + 2008-09-10 – Juniper Networks J2300, J2350, J4300, M7i and M10i Services Routers running JUNOS 8.5R3
    + Maintenance Report + + Maintenance ST + +
  4. + +
    +
  5. + 2011-04-08 – Juniper Networks J2300, J2350, J4300, M7i and M10i Services Routers running JUNOS 8.5R3
    + Maintenance Report + + Maintenance ST + +
  6. + +
+
+ + +
+
+ Juniper Networks, Inc. + + +   + + 2007-04-012013-03-05 + + + EAL3+ +
ALC_FLR.3 +
+ + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + Security Threat Exclusion System SHIELD/ExLink-IA 1.0   +
+ +
+ + + + + + +
+
+ Hitachi Information Systems, Ltd + + +   + + 2007-03-222013-10-07 + + + EAL1 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + CISCO IOS/IPSec release 12.4(6)T3, 12.4(7) & 12.2(33)SRA   +
+ +
+ + + + + + +
+
+ Cisco Systems, Inc. + + +   + + 2007-03-212017-07-13 + + + EAL2 + + + AU – Australasian Certification Authority (ACA)
AU
+
+ + Sniffer InfiniStream Enterprise (Sniffer InfiniStream 3.0 SP1 (MR7) Console Software, Sniffer InfiniStream 3.0 SP1 (MR& Capture Engine Software, Sniffer Enterprise Administrator 4.1 (MR2) Software, Sniffer Enterprise Visualizer 4.1 (MR2) Software)   +
+ +
+ + + + + + +
+
+ Network General + + +   + + 2007-02-092012-09-07 + + + EAL3+ +
ALC_FLR.1 +
+ + US – National Information Assurance Partnership
US
+
+ + HP Network Node Manager Advanced Edition Software v7.51 with patch PHSS_35278   +
+ +
+ + + + + + +
+
+ Hewlett-Packard Company + + +   + + 2007-01-262012-09-06 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + StillSecure VAM V5.5   +
+ +
+ + + + + + +
+
+ StillSecure + + +   + + 2007-01-262012-09-07 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + Citadel Hercules® Enterprise Vulnerability Management (EVM) Version 4.1   +
+ +
+ + + + + + +
+
+ McAfee, Inc. + + +   + + 2006-10-232015-09-29 + + + EAL3 + + + CA – Canadian Common Criteria Scheme
CA
+
+ + Juniper Networks IDP 4.0 & NSM 2006.1   +
+ +
+ + + + + + +
+
+ Juniper Networks, Inc. + + +   + + 2006-10-232012-09-06 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + CISCO IOS/IPSec release 12.3(6a)   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2007-05-19 – IOS/IPSec Version 12.3(6f)
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Cisco Systems, Inc. + + +   + + 2006-09-292017-07-13 + + + EAL4 + + + AU – Australasian Certification Authority (ACA)
AU
+
+ + LANDesk Management Suite 8   +
+ +
+ + + + + + +
+
+ LANDesk Software + + +   + + 2006-09-282012-09-06 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + Remote Communication Gate Application Software 3.34   +
+ +
+ + + + + + +
+
+ Ricoh Company, Ltd. + + +   + + 2006-06-282013-10-07 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + STAT Guardian™ Vulnerability Management Suite (VMS) 6.4.0   +
+ +
+ + + + + + +
+
+ Lumension Security + + +   + + 2006-05-232015-09-29 + + + EAL2+ +
ACM_CAP.4 +
ACM_SCP.1 +
ALC_DVS.1 +
ALC_FLR.3 +
ALC_LCD.1 +
AVA_MSU.1 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Juniper Networks J-Series Family of Service Routers running JUNOS 7.3R2.14   +
+ +
+ + + + + + +
+
+ Juniper Networks, Inc. + + +   + + 2006-04-242012-09-06 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + HP OpenView Select Access v5.2   +
+ +
+ + + + + + +
+
+ Hewlett-Packard Company + + +   + + 2006-04-132017-07-13 + + + EAL2 + + + AU – Australasian Certification Authority (ACA)
AU
+
+ + Marconi Service Edge Routers (BXR-1000/BXR-5000)   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2006-06-08 – Marconi Service Edge Router Models ECI ST200 and ECI ST50, running Shade Tree Routing Control Software ver 3.1.1
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Marconi Corporation plc + + +   + + 2006-03-292012-09-06 + + + EAL3 + + + US – National Information Assurance Partnership
US
+
+ + Securify SecurVantage V5.0   +
+ +
+ + + + + + +
+
+ Securify, Inc. + + +   + + 2006-02-242012-09-07 + + + EAL3 + + + US – National Information Assurance Partnership
US
+
+ + eTrust Admin V8.0 with CAM v1.11 patch   +
+ +
+ + + + + + +
+
+ CA Technologies + + +   + + 2006-02-032016-04-05 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + BEA WebLogic Server 7.0 SP6 with BEA05-107.00 Advisory Patch   +
+ +
+ + + + + + +
+
+ BEA Systems, Inc. + + +   + + 2006-01-272012-09-06 + + + EAL2+ +
ALC_FLR.1 +
+ + US – National Information Assurance Partnership
US
+
+ + Opsware System 4.5 Patch 1   +
+ +
+ + + + + + +
+
+ Opsware + + +   + + 2005-12-122012-09-07 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + Arbor Networks Peakflow X version 3.1.4   +
+ +
+ + + + + + +
+
+ Arbor Networks Inc + + +   + + 2005-11-022012-09-06 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + CipherOptics™ SG-Series Network Security Appliance Version 3.1 - Models SG 100 and SG 1002   +
+ +
+ + + + + + +
+
+ CipherOptics Inc + + +   + + 2005-10-212015-09-29 + + + EAL2 + + + CA – Canadian Common Criteria Scheme
CA
+
+ + Cisco ONS 15454 SONET Multiservice Provisioning Platform (MSPP)   +
+ +
+ + + + + + +
+
+ Cisco Systems, Inc. + + +   + + 2005-10-212012-09-06 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + Secure Remote Access (SRA) Client v3.7.1 Server v4.2.1   +
+ +
+ + + + + + +
+
+ ActivCard Developments Pty Ltd + + +   + + 2005-10-012019-09-01 + + + EAL2 + + + AU – Australasian Certification Authority (ACA)
AU
+
+ + Owl Computing Technologies, Inc. Data Diode Network Interface Card Version 3   +
+ +
+ + + + + + +
+
+ Owl Computing Technologies, Inc. + + +   + + 2005-09-022012-09-07 + + + EAL4 + + + US – National Information Assurance Partnership
US
+
+ + Hewlett-Packard OpenView Operations for UNIX V A.08.10   +
+ +
+ + + + + + +
+
+ Hewlett-Packard Company + + +   + + 2005-08-192012-09-06 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + Boîtier MISTRAL TRC 7535 version 4.5.2.2   +
+ +
+ + + + + + +
+
+ Thalès Communications + + +   + + 2005-05-302019-09-01 + + + EAL3+ +
ADV_IMP.1 +
ADV_LLD.1 +
ALC_FLR.3 +
ALC_TAT.1 +
AVA_VLA.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + nCircle™ IP360™ Vulnerability Management System V6.3.4   +
+ +
+ + + + + + +
+
+ nCircle Inc. + + +   + + 2005-05-162015-09-29 + + + EAL3 + + + CA – Canadian Common Criteria Scheme
CA
+
+ + Sourcefire 3D Sensors (v. 3.2.3): 3D500, 3D1000, 3D2000, 3D2100, 3D3000; Sourcefire Defense Centers: (v. 3.2.3): DC1000, DC3000 (formerly Sourcefire Intrusion Detection Sensors (v. 3.2.3): NS500, NS1000, NS2000, NS2100, NS3000; Sourcefire Management Consoles (v. 3.2.3): MC1000, MC3000)   + + + Sourcefire Inc. + + +   + + 2005-05-032012-09-07 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + SQ-Phoenix Digital Encryptor V2.7   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2007-12-10 – SQ Multifunction Encryptor
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ CES Communications Ltd + + +   + + 2005-04-272017-07-13 + + + EAL2 + + + AU – Australasian Certification Authority (ACA)
AU
+
+ + Marconi ASX/TNX and BXR Family of Multiservice Switch/Routers   +
+ +
+ + + + + + +
+
+ Marconi Corporation plc + + +   + + 2005-04-132012-09-06 + + + EAL3 + + + US – National Information Assurance Partnership
US
+
+ + NIKSUN®, Inc. NetDetector®/NetVCR® 2005   +
+ +
+ + + + + + +
+
+ NIKSUN® Incorporated + + +   + + 2005-03-032015-09-29 + + + EAL2 + + + CA – Canadian Common Criteria Scheme
CA
+
+ + Market Central SecureSwitch Fiber Optic A/B/C Switch Revision A   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2007-06-29 – Market Central SecureSwitch Fiber Optic A/B/C Switch Revision B, dated 29 March 2007
    + Maintenance Report + +
  2. + +
    +
  3. + 2008-11-24 – Market Central Secure Switch Fiber Optic A/OFF/C Switch Revision C, dated 19 August 2008
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ Market Central, Inc. + + +   + + 2005-01-132015-02-26 + + + EAL4+ +
AVA_CCA.1 +
AVA_VLA.3 +
+ + US – National Information Assurance Partnership
US
+
+ + Network Security Manager™ (NSM™) v4.1   +
+ +
+ + + + + + +
+
+ Intellitactics, Inc. + + +   + + 2004-12-012015-09-29 + + + EAL2 + + + CA – Canadian Common Criteria Scheme
CA
+
+ + BULL Trustway VPN Appliance v3.01.06   +
+ +
+ + + + + + +
+
+ BULL S.A. + + +   + + 2004-09-212019-09-01 + + + EAL2+ +
ADV_HLD.2 +
ADV_IMP.1 +
ADV_LLD.1 +
ALC_DVS.1 +
ALC_FLR.3 +
ALC_TAT.1 +
AVA_MSU.1 +
AVA_VLA.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Blue Ridge Networks BorderGuard Centrally Managed Embedded PKI/VPN Firmware Release 6.2 & VPN Manager Application Software Release 2.2   +
+ +
+ + + + + + +
+
+ Blue Ridge Networks + + +   + + 2004-09-082012-09-06 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + Top Layer Networks IDS Balancer TM Version 2.2 Appliance (IDSB3531-CCV1.0, IDSB3532-CCV1.0, IDSB4508-CCV1.0)   +
+ +
+ + + + + + +
+
+ Top Layer Networks + + +   + + 2004-09-032012-09-07 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + Datacryptor 2000 Application Software Version 3.3   +
+ +
+ + + + + + +
+
+ Thales e-Security Ltd + + +   + + 2004-09-012013-04-30 + + + EAL5 + + + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + Datacryptor 2000 Application Software Version 3.3   +
+ +
+ + + + + + +
+
+ Thales e-Security Ltd + + +   + + 2004-09-012013-04-30 + + + EAL4 + + + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + SELEX Communications MPS   +
+ +
+ + + + + + +
+
+ SELEX Communications + + +   + + 2004-07-012013-03-05 + + + EAL4+ + + + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + Citadel Hercules® Automated Vulnerability Remediation v2.2.0   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2004-08-19 – Citadel Hercules® Automated Vulnerability Remediation Version 3.0
    + Maintenance Report + + Maintenance ST + +
  2. + +
    +
  3. + 2004-12-13 – Citadel Hercules® Automated Vulnerability Remediation Version 3.5
    + Maintenance Report + + Maintenance ST + +
  4. + +
+
+ + +
+
+ McAfee, Inc. + + +   + + 2004-03-012015-09-29 + + + EAL3 + + + CA – Canadian Common Criteria Scheme
CA
+
+ + Foundry Networks, Management Module IV: J-BxGMR4 and J-FxGMR4   +
+ +
+ + + + + + +
+
+ Foundry Networks, Inc. + + +   + + 2004-01-012012-09-06 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + Juniper Networks M & T-Series Family of Internet Routers running JUNOS 6.0r1, Model numbers M5, M10, M20, M40e, M7i, M160, T320, T640   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2004-06-24 – Models M10i M320 Running JUNOS 6.3r1
    + Maintenance Report + +
  2. + +
    +
  3. + 2005-12-14 – Previous Model Running JUNOS 7.4.r1
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ Juniper Networks, Inc. + + +   + + 2004-01-012012-09-06 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + Securify SecurVantage Version 3.1   +
+ +
+ + + + + + +
+
+ Securify, Inc. + + +   + + 2004-01-012012-09-07 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + Secureworks V3.0   +
+ +
+ + + + + + +
+
+ Oullim Information Technology, Inc. + + +   + + 2003-09-012019-09-01 + + + EAL3 + + + AU – Australasian Certification Authority (ACA)
AU
+
+ + STAT® Scanner Professional Version 5.08   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2004-06-30 – STAT® Scanner Professional Version 5.11
    + Maintenance Report + +
  2. + +
    +
  3. + 2004-11-22 – STAT® Scanner Professional Version 5.19.1
    + Maintenance Report + +
  4. + +
    +
  5. + 2005-01-10 – STAT® Scanner Professional Version 5.29.4
    + Maintenance Report + +
  6. + +
+
+ + +
+
+ Lumension Security + + +   + + 2003-04-012015-09-29 + + + EAL2+ +
ACM_CAP.4 +
ACM_SCP.1 +
ALC_DVS.1 +
ALC_FLR.3 +
ALC_LCD.1 +
AVA_MSU.1 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + M>Tunnel 2.5 (MT25-B43-08)   +
+ +
+ + + + + + +
+
+ EADS Telecom + + +   + + 2003-02-072019-09-01 + + + EAL2+ +
ALC_LLD.1 +
ADV_HLD.2 +
AVA_VLA.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + BMC Software PATROL, V3.4.11   +
+ +
+ + + + + + +
+
+ BMC Software, Inc. + + +   + + 2002-09-012012-09-06 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + Cisco IPSec Crypto System   +
+ +
+ + + + + + +
+
+ Cisco Systems, Inc. + + +   + + 2002-09-012019-09-01 + + + EAL4 + + + AU – Australasian Certification Authority (ACA)
AU
+
+ + DiamondTEK Product (DiamondCentral: NSC Application S/W version 2.0.1; NSD-Prime F/W version 2.1.4) and NSD (DiamondLink, DiamondPak, DiamondVPN) F/W version 2.1.4   + + + Cryptek Secure Communications, LLC + + +   + + 2002-06-012012-09-07 + + + EAL4 + + + US – National Information Assurance Partnership
US
+
+ + BMC PATROL Perform/Predict, V6.5.30   +
+ +
+ + + + + + +
+
+ BMC Software, Inc. + + +   + + 2002-04-012012-09-06 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + CTAM Cyphercell ATM Encryptor V1.2.1   +
+ +
+ + + + + + +
+
+ Senetas Corporation Ltd. + + +   + + 2001-04-012019-09-01 + + + EAL4 + + + AU – Australasian Certification Authority (ACA)
AU
+
+ + Secure Session VPN V4.1.1   +
+ +
+ + + + + + +
+
+ KyberPass + + +   + + 2000-10-012019-09-01 + + + EAL1 + + + AU – Australasian Certification Authority (ACA)
AU
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ProductVendorProduct
Certificate
Date Certificate
Issued
Certificate
Validity
Expiration
Date
(Archived)
ComplianceScheme
+ This list was generated on Friday, April 16, 2021, at 10:31 AM +
+ Operating Systems – 155 Certified Products +
+ + SUSE Linux Enterprise Server Version 12   + + + SUSE LLC + + +   + + 2016-02-242021-02-24 + + + EAL4+ +
ALC_FLR.3 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + PR/SM for IBM z13 EC GA1 Driver Level D22H   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2015-10-152020-10-15 + + + EAL5+ +
ALC_FLR.3 +
ALC_TAT.3 +
ATE_FUN.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + z/OS Version 2 Release 1   + + + IBM Corporation + + +   + + 2015-09-142020-09-14 + + + PP Compliant + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + VMware® vSphere 5.5 Update 2   +
+ +
+ + + + + + +
+
+ VMware, Inc. + + + CCRA Certificate + + 2015-06-302020-06-30 + + + EAL2+ +
ALC_FLR.3 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + JBoss Enterprise Application Platform 6 Version 6.2.2   +
+ +
+ + + + + + +
+
+ Red Hat, Inc. + + +   + + 2015-04-132020-04-13 + + + EAL4+ +
ALC_FLR.3 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + RACF Element of z/OS Version 2, Release 1   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2015-04-132020-04-13 + + + EAL5+ +
ALC_FLR.3 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + z/VM Version 6 Release 3   + + + IBM Corporation + + +   + + 2015-03-302020-05-30 + + + EAL4+ +
ALC_FLR.3 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Microsoft Windows 8 and Windows RT   + + + Microsoft Corporation + + +   + + 2015-01-092017-01-09 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Microsoft Windows 8 and Windows Server 2012   + + + Microsoft Corporation + + +   + + 2015-01-092017-01-09 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + NetApp Clustered Data ONTAP® 8.2.1   +
+ +
+ + + + + + +
+
+ NetApp, Inc. + + + CCRA Certificate + + 2015-01-052020-01-05 + + + EAL2+ +
ALC_FLR.3 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Router operating system : Comware V7.1 running on MSR2000, MSR3000 and MSR 4000 Series Routers   +
+ +
+ + + + + + +
+
+ Hewlett Packard Enterprise Company + + + CCRA Certificate + + 2014-12-142020-01-14 + + + EAL2 + + + IN – Indian Common Criteria Certification Scheme (IC3S)
IN
+
+ + NetApp Clustered Data ONTAP® 8.2.1   +
+ +
+ + + + + + +
+
+ NetApp, Inc. + + +   + + 2014-11-112018-05-06 + + + EAL2+ +
ALC_FLR.3 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + NetApp Data ONTAP® v8.2.1 7-Mode   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2015-01-07 – Report NetApp Data ONTAP� v8.2.2 7-Mode
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ NetApp, Inc. + + + CCRA Certificate + + 2014-09-252019-09-25 + + + EAL2+ +
ALC_FLR.3 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + FINX RTOS Security Enhanced (SE) v3.1   +
+ +
+ + + + + + +
+
+ MBDA Italia S.p.A. + + +   + + 2014-05-212019-09-01 + + + EAL4+ +
ALC_FLR.1 +
+ + IT – OCSI - Organismo di Certificazione della Sicurezza Informatica
IT
+
+ + Oracle Solaris 11.1   + + + Oracle Corporation + + + CCRA Certificate + + 2014-02-242019-03-18 + + + EAL4+ +
ALC_FLR.3 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + PR/SM for IBM zEnterprise EC12 GA2 and BC12 GA1 Driver Level D15F   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2014-02-192019-09-01 + + + EAL5+ +
ALC_FLR.3 +
ALC_TAT.3 +
ATE_FUN.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Data Domain® Operating System v5.2.1.0   +
+ +
+ + + + + + +
+
+ EMC Corporation + + + CCRA Certificate + + 2013-05-172018-05-17 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + NetApp Data ONTAP® v8.1.1 7-Mode   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2013-07-29 – NetApp Data ONTAP® v8.1.2 7-Mode
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ NetApp, Inc. + + + CCRA Certificate + + 2013-05-022018-06-13 + + + EAL2+ +
ALC_FLR.3 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + SUSE Linux Enterprise Server 11 Service Pack 2 on IBM System z   + + + SUSE Linux Products Gmbh + + +   + + 2013-03-012019-09-01 + + + EAL4+ +
ALC_FLR.3 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + SUSE Linux Enterprise Server 11 Service Pack 2 including KVM virtualization   + + + SUSE Linux Products Gmbh + + +   + + 2013-02-272019-09-01 + + + EAL4+ +
ALC_FLR.3 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + z/VM Version 6 Release 1   + + + IBM Corporation + + +   + + 2013-02-202019-09-01 + + + EAL4+ +
ALC_FLR.3 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + IBM RACF for z/OS Version 1, Release 13   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2013-02-192019-09-01 + + + EAL5+ +
ALC_FLR.3 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + PR/SM for IBM zEnterprise EC12 GA1 Driver Level D12K   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2013-02-192019-09-01 + + + EAL5+ +
ALC_FLR.3 +
ALC_TAT.3 +
ATE_FUN.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Red Hat Enterprise Linux Version 6.2 on IBM Hardware for Power and System z Architectures   + + + Red Hat, Inc. + + +   + + 2012-10-232019-09-01 + + + EAL4+ +
ALC_FLR.3 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Red Hat Enterprise Linux Version 6.2 with KVM Virtualization for x86 Architectures   + + + Red Hat, Inc. + + +   + + 2012-10-232019-09-01 + + + EAL4+ +
ALC_FLR.3 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Citrix XenServer 6.0.2 Platinum Edition   +
+ +
+ + + + + + +
+
+ Citrix Systems, Inc. + + +   + + 2012-09-252017-09-25 + + + EAL2+ +
ALC_FLR.2 +
+ + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + IBM zOS, Version 1, Release 13   + + + IBM Corporation + + +   + + 2012-09-122019-09-01 + + + EAL4+ +
ALC_FLR.3 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + IBM AIX 7 for POWER V7.1 Technology level 7100-00-03 with optional IBM Virtual I/O Server V2.2   + + + IBM Corporation + + +   + + 2012-08-202019-09-01 + + + EAL4+ +
ALC_FLR.3 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + CloudShield CS-2000 with CPOS 3.0.3   +
+ +
+ + + + + + +
+
+ CloudShield Technologies + + +   + + 2012-05-082014-11-01 + + + EAL4+ +
ALC_FLR.3 +
+ + US – National Information Assurance Partnership
US
+
+ + Red Hat Enterprise Linux Version 5.6 Virtualization with KVM   +
+ +
+ + + + + + +
+
+ Red Hat, Inc. + + +   + + 2012-04-202019-09-01 + + + EAL4+ +
ALC_FLR.3 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + EMC Isilon® OneFS® v6.5.4   +
+ +
+ + + + + + +
+
+ EMC Corporation + + +   + + 2012-04-172017-05-15 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Extreme Networks ExtremeXOS Network Operating System v12.3.6.2   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2012-08-08 – Extreme Networks, Inc. ExtremeXOS Network Operating System v15.1.2
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Extreme Networks, Inc. + + +   + + 2012-03-202017-05-15 + + + EAL3+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + PR/SM on IBM Systems z196 GA2 z114 GA1, Driver Level D93G   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2012-03-012019-09-01 + + + EAL5+ +
ALC_FLR.3 +
ALC_TAT.3 +
ATE_FUN.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + IBM RACF for z/OS Version 1, Release 12   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2012-02-232019-09-01 + + + EAL5+ +
ALC_FLR.3 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Microsoft Windows Server 2008 R2 Hyper-V Release 6.1.7600   +
+ +
+ + + + + + +
+
+ Microsoft Corporation + + +   + + 2012-02-062019-09-01 + + + EAL4+ +
ALC_FLR.3 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + BAE Systems STOP OS™ v7.3.1   +
+ +
+ + + + + + +
+
+ BAE Systems + + +   + + 2012-01-202017-05-15 + + + EAL4+ +
ALC_FLR.3 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + JBoss Enterprise Application Platform 5 Version 5.1.0 and 5.1.1   +
+ +
+ + + + + + +
+
+ Red Hat, Inc. + + +   + + 2011-12-212019-09-01 + + + EAL4+ +
ALC_FLR.3 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + NetApp Data ONTAP® 8.0.0 7-Mode and Data ONTAP® 8.0.1 7-Mode   +
+ +
+ + + + + + +
+
+ NetApp, Inc. + + +   + + 2011-10-142017-05-15 + + + EAL2+ +
ALC_FLR.3 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + IBM z/OS Version 1 Release 12   + + + IBM Corporation + + +   + + 2011-07-282019-09-01 + + + EAL4+ +
ALC_FLR.3 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + PR/SM on IBM System z196 HE GA1   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2011-07-212019-09-01 + + + EAL5+ +
ALC_FLR.3 +
ALC_TAT.3 +
ATE_FUN.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Wind River Linux Secure 1.0   + + + Wind River + + +   + + 2011-04-052014-11-01 + + + EAL4+ +
ALC_FLR.3 +
+ + US – National Information Assurance Partnership
US
+
+ + Microsoft Windows 7, Microsoft Windows Server 2008 R2   + + + Microsoft Corporation + + +   + + 2011-03-242014-11-01 + + + EAL4+ +
ALC_FLR.3 +
+ + US – National Information Assurance Partnership
US
+
+ + Unisys Stealth Solution for Networks 1.0   +
+ +
+ + + + + + +
+
+ Unisys Corporation + + +   + + 2011-03-212014-11-01 + + + EAL4+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Green Hills Software INTEGRITY-178B Separation Kernel, comprising: INTEGRITY-178B Real Time Operating System (RTOS), version IN-ICR750-0402-GH01_Rel (Version 4.2) running on Compact PCI card, version CPN 944-2021-021 w/PowerPC, version 750CXE   + + + Green Hills Software, Inc. + + +   + + 2011-01-312014-11-01 + + + EAL6+ +
ALC_DVS.2 +
ALC_FLR.3 +
ALC_LCD.2 +
ALC_TAT.3 +
ATE_COV.3 +
ATE_DPT.3 +
ATE_FUN.2 +
ATE_IND.3 +
ACM_AUT.2 +
ACM_CAP.5 +
ACM_SCP.3 +
ADO_IGS.1 +
ADV_RCR.3 +
ADV_SPM.3 +
AGD_USR.1 +
AVA_MSU.3 +
AVA_SOF.1 +
+ + US – National Information Assurance Partnership
US
+
+ + Data Domain Operating System v 4.8.2.0   +
+ +
+ + + + + + +
+
+ EMC Corporation + + +   + + 2010-11-242017-05-15 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + VMware® ESX 4.0 Update 1 and vCenter Server 4.0 Update 1   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2010-12-15 – VMware® ESX 4.1 and vCenter Server 4.1
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ VMware, Inc. + + +   + + 2010-10-152017-05-15 + + + EAL4+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + VMware® ESXi 4.0 Update 1 and vCenter Server 4.0 Update 1   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2010-12-15 – VMware® ESXi 4.1 and vCenter Server 4.1
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ VMware, Inc. + + +   + + 2010-10-152017-05-15 + + + EAL4+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Citrix XenServer 5.6 Platinum Edition   +
+ +
+ + + + + + +
+
+ Citrix Systems, Inc. + + +   + + 2010-08-202016-01-05 + + + EAL2+ +
ALC_FLR.2 +
+ + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + IBM z/OS Version 1 Release 11   + + + IBM Corporation + + +   + + 2010-06-302019-09-01 + + + EAL4+ +
ALC_FLR.3 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + VMware® ESXi Server 3.5 and VirtualCenter 2.5   +
+ +
+ + + + + + +
+
+ VMware, Inc. + + +   + + 2010-02-242015-09-29 + + + EAL4+ + + + CA – Canadian Common Criteria Scheme
CA
+
+ + VMware® ESX Server 3.5 and VirtualCenter 2.5   +
+ +
+ + + + + + +
+
+ VMware, Inc. + + +   + + 2010-02-092015-09-29 + + + EAL4+ + + + CA – Canadian Common Criteria Scheme
CA
+
+ + Microsoft Windows Mobile 6.5   +
+ +
+ + + + + + +
+
+ Microsoft Corporation + + +   + + 2010-02-052019-09-01 + + + EAL4+ + + + AU – Australasian Certification Authority (ACA)
AU
+
+ + Apple Mac OS X 10.6   +
+ +
+ + + + + + +
+
+ Apple Inc. + + +   + + 2010-01-082019-09-01 + + + EAL3+ + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Red Hat Enterprise Linux Ver. 5.3 on Dell 11G Family Servers   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2013-02-25 – Red Hat Enterprise Linux (RHEL) 5.6
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Dell, Inc. + + +   + + 2009-12-232015-01-15 + + + EAL4+ +
ALC_FLR.3 +
+ + US – National Information Assurance Partnership
US
+
+ + Hewlett-Packard HP-UX 11i v3 (using CCv3.1)   + + + Hewlett-Packard Company + + +   + + 2009-11-272014-11-27 + + + EAL4+ +
ALC_FLR.3 +
+ + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + NetApp Data ONTAP Version 7.3.1.1   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2010-01-19 – Netapp Inc, Data ONTAP Version 7.3.2
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ NetApp, Inc. + + +   + + 2009-11-052015-09-29 + + + EAL3+ + + + CA – Canadian Common Criteria Scheme
CA
+
+ + Microsoft Windows Mobile 6.1   +
+ +
+ + + + + + +
+
+ Microsoft Corporation + + +   + + 2009-09-172019-09-01 + + + EAL4+ +
ALC_FLR.1 +
+ + AU – Australasian Certification Authority (ACA)
AU
+
+ + Windows Vista Enterprise; Windows Server 2008 Standard Edition; Windows Server 2008 Enterprise Edition; Windows Server 2008 Datacenter Edition   +
+ +
+ + + + + + +
+
+ Microsoft Corporation + + +   + + 2009-08-312014-05-08 + + + EAL4+ +
ALC_FLR.3 +
+ + US – National Information Assurance Partnership
US
+
+ + IBM z/OS Version 1 Release 10   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2009-08-132019-09-01 + + + EAL4+ +
ALC_FLR.3 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Microsoft Windows Server 2008 Hyper-V Role with HotFix KB950050   +
+ +
+ + + + + + +
+
+ Microsoft Corporation + + +   + + 2009-07-242019-09-01 + + + EAL4+ +
ALC_FLR.3 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Processor Resource / Systems Manager (PR/SM) for the IBM z10 EC GA2 and z10 BC GA1   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2009-05-042019-09-01 + + + EAL5 + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + QNX Neutrino Secure Kernel v6.4.0   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2011-01-05 – QNX® Neutrino® RTOS Secure Kernel 6.5.0
    + Maintenance Report + + Maintenance ST + +
  2. + +
    +
  3. + 2011-03-23 – QNX® Neutrino® RTOS Certified Plus 1.0
    + Maintenance Report + + Maintenance ST + +
  4. + +
+
+ + +
+
+ QNX Software Systems + + +   + + 2009-03-252015-09-29 + + + EAL4+ +
ALC_FLR.1 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + NetApp Data ONTAP Version 7.2.5.1   +
+ +
+ + + + + + +
+
+ NetApp, Inc. + + +   + + 2009-02-042015-09-29 + + + EAL2+ +
ALC_FLR.3 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Cray UNICOS/lc Operating System 2   +
+ +
+ + + + + + +
+
+ Cray Incorporated + + +   + + 2008-12-122012-07-20 + + + EAL3+ +
ALC_FLR.1 +
+ + US – National Information Assurance Partnership
US
+
+ + SECUWARE OPERATING SYSTEM V4.1.0.276   +
+ +
+ + + + + + +
+
+ Secuware + + +   + + 2008-11-102019-09-01 + + + EAL2 + + + ES – Organismo de Certificación de la Seguridad de las Tecnologías de la Información
ES
+
+ + SECUWARE VIRTUAL SYSTEM V4.1.0.276   +
+ +
+ + + + + + +
+
+ Secuware + + +   + + 2008-11-102019-09-01 + + + EAL2 + + + ES – Organismo de Certificación de la Seguridad de las Tecnologías de la Información
ES
+
+ + PR/SM for IBM System z10 EC GA1   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2008-10-292019-09-01 + + + EAL5 + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Oracle Enterprise Linux Version 5 Update 1   +
+ +
+ + + + + + +
+
+ Oracle Corporation + + +   + + 2008-10-152019-09-01 + + + EAL4+ +
ALC_FLR.3 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Microsoft Windows Vista and Windows Server 2008   +
+ +
+ + + + + + +
+
+ Microsoft Corporation + + +   + + 2008-09-172019-09-01 + + + EAL1 + + + AU – Australasian Certification Authority (ACA)
AU
+
+ + Green Hills Software INTEGRITY-178B Separation Kernel, comprising: INTEGRITY-178B Real Time Operating System (RTOS), version IN-ICR750-0101-GH01_Rel running on Compact PCI card, version CPN 944-2021-021 with PowerPC, version 750CXe   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2009-07-31 – Green Hills Software INTEGRITY-178B Separation Kernel, comprising: INTEGRITY-178B Real Time Operating System (RTOS), version IN-ISP448-0100-SK_LMFWPCD2_Rel running on JSF PCD System Processor CCA, version 437140-007 with PowerPC, version 7448
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Green Hills Software, Inc. + + +   + + 2008-09-012012-07-20 + + + EAL6+ + + + US – National Information Assurance Partnership
US
+
+ + Microsoft Windows Mobile 6.1   +
+ +
+ + + + + + +
+
+ Microsoft Corporation + + +   + + 2008-08-062019-09-01 + + + EAL2+ +
ALC_FLR.1 +
+ + AU – Australasian Certification Authority (ACA)
AU
+
+ + IBM z/VM Version 5 Release 3   +
+ +
+ + + + + + +
+
+ IBM Deutschland Entwicklung GmbH + + +   + + 2008-07-282019-09-01 + + + EAL4+ +
ALC_FLR.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + XTS-400/STOP 6.4 U4   +
+ +
+ + + + + + +
+
+ BAE Systems, Inc. + + +   + + 2008-07-032012-07-20 + + + EAL5+ +
ALC_FLR.3 +
ATE_IND.3 +
+ + US – National Information Assurance Partnership
US
+
+ + Solaris™ 10 Release 11/06 Trusted Extensions   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2009-03-25 – Solaris™ 10 Release 05/08 Trusted Extensions
    + Maintenance Report + + Maintenance ST + +
  2. + +
    +
  3. + 2009-12-22 – Solaris™ 10 Release 05/09 Trusted Extensions
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ Oracle Corporation + + +   + + 2008-06-112015-09-29 + + + EAL4+ +
ALC_FLR.3 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + VMware ESX Server 3.0.2 and Virtual Center 2.0.2   +
+ +
+ + + + + + +
+
+ VMware, Inc. + + +   + + 2008-05-202015-09-29 + + + EAL4+ +
ALC_FLR.1 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + AIX 6 version 6100-00-02 with optional Virtual IO Server (VIOS) version 1.5   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2008-05-152019-09-01 + + + EAL4+ +
ALC_FLR.3 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Red Hat Enterprise Linux Version 5.1   +
+ +
+ + + + + + +
+
+ Silicon Graphics, Inc. + + +   + + 2008-04-212012-07-20 + + + EAL4+ +
ALC_FLR.3 +
+ + US – National Information Assurance Partnership
US
+
+ + Hewlett-Packard HP-UX 11i v3 (using CCv2.3)   + + + Hewlett-Packard Company + + +   + + 2008-03-262013-04-30 + + + EAL4+ +
ALC_FLR.3 +
+ + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + Microsoft Windows Mobile 5.0 MSFP   +
+ +
+ + + + + + +
+
+ Microsoft Corporation + + +   + + 2008-03-102019-09-01 + + + EAL2+ +
ALC_FLR.1 +
+ + AU – Australasian Certification Authority (ACA)
AU
+
+ + Windows Mobile 6   +
+ +
+ + + + + + +
+
+ Microsoft Corporation + + +   + + 2008-03-102019-09-01 + + + EAL2+ +
ALC_FLR.1 +
+ + AU – Australasian Certification Authority (ACA)
AU
+
+ + XTS-400 STOP Version 6.4 (UKE), running on XTS-400 Model 3200UKE   + + + BAE Systems Integrated Systems Technologies Limited + + +   + + 2008-03-062013-04-30 + + + EAL5+ +
ALC_FLR.3 +
ATE_IND.3 +
+ + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + IBM z/OS Version 1, Release 9   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2008-02-292019-09-01 + + + EAL4+ +
ALC_FLR.3 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Microsoft Windows Server 2003 SP2 including R2, Standard, Enterprise, Datacenter, x64, and Itanium Editions; Windows XP Professional SP2 and x64 SP2; Windows XP Embedded SP2   +
+ +
+ + + + + + +
+
+ Microsoft Corporation + + +   + + 2008-02-072010-02-07 + + + EAL4+ +
ALC_FLR.3 +
+ + US – National Information Assurance Partnership
US
+
+ + Solaris™ 10 Release 11/06   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2009-01-05 – Solaris™ 10 Release 05/08
    + Maintenance Report + + Maintenance ST + +
  2. + +
    +
  3. + 2009-09-11 – Solaris™ 10 Release 05/09
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ Oracle Corporation + + +   + + 2007-11-062015-09-29 + + + EAL4+ +
ALC_FLR.3 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + EMC® Celerra® Network Server v5.5 running on EMC® Celerra® NSX and EMC® Celerra® NS series   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2009-06-22 – EMC® Celerra® Network Server Version 5.6 running on EMC® Celerra® NSX series, EMC® Celerra® NS series, and EMC® Celerra® NX series
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ EMC Corporation + + +   + + 2007-10-152015-09-29 + + + EAL2+ +
ALC_FLR.1 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + SUSE Linux Enterprise Server 10 SP1   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2007-10-082012-09-06 + + + EAL4+ +
ALC_FLR.3 +
+ + US – National Information Assurance Partnership
US
+
+ + Oracle Enterprise Linux Version 4 Update 4   +
+ +
+ + + + + + +
+
+ Oracle Corporation UK Limited + + +   + + 2007-07-192019-09-01 + + + EAL4+ +
ALC_FLR.3 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Oracle Enterprise Linux Version 4 Update 5   +
+ +
+ + + + + + +
+
+ Oracle Corporation + + +   + + 2007-07-182019-09-01 + + + EAL4+ +
ALC_FLR.3 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Red Hat Enterprise Linux Version 5   +
+ +
+ + + + + + +
+
+ Hewlett-Packard Company + + +   + + 2007-06-262012-09-06 + + + EAL4+ +
ALC_FLR.3 +
+ + US – National Information Assurance Partnership
US
+
+ + AirTight Networks SpectraGuard Enterprise V 5.0 and SpectraGuard SAFE Enterprise Edition V 2.0   +
+ +
+ + + + + + +
+
+ AirTight Networks, Inc. + + +   + + 2007-06-082012-09-06 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + Red Hat Enterprise Linux Version 5 running on IBM Hardware   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2007-06-072012-09-06 + + + EAL4+ +
ALC_FLR.3 +
+ + US – National Information Assurance Partnership
US
+
+ + eEye Retina Enterprise Suite, comprising the following eEye components: Retina Network Security Scanner Version 5.4.21.53, REM version 3.0.2.571, and REM Events Server version 2.2.0.194   +
+ +
+ + + + + + +
+
+ eEye Digital Security Corporation + + +   + + 2007-05-252012-09-06 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + IBM z/OS Version 1, Release 8   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2007-05-162019-09-01 + + + EAL4+ +
ALC_FLR.3 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + OSⅣ/MSP SECURE AF2 V10L10 C06121   +
+ +
+ + + + + + +
+
+ Fujitsu Limited + + +   + + 2007-04-272013-10-07 + + + EAL1 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Network Appliance Data ONTAP Versions 7.0.3 and 7.0.4   +
+ +
+ + + + + + +
+
+ NetApp, Inc. + + +   + + 2007-04-032012-09-07 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + Microsoft Windows Server 2003 and Microsoft Windows XP   +
+ +
+ + + + + + +
+
+ Microsoft Corporation + + +   + + 2007-04-012012-09-07 + + + EAL4+ +
ALC_FLR.3 +
AVA_VLA.4 +
+ + US – National Information Assurance Partnership
US
+
+ + Red Hat Enterprise Linux (RHEL) Advanced Server (AS) Version 3 Update 5 Running on Unisys ES7000 Hardware models 405, 410, 420, 430, and 440   +
+ +
+ + + + + + +
+
+ Unisys Corporation + + +   + + 2007-01-292012-09-06 + + + EAL3+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Red Hat Enterprise Linux (RHEL) Advanced Server (AS) Version 4 Running on Unisys ES7000 Hardware models 405, 410, 420, 430, 440, 505, 510, 520, 530, 540, and one   +
+ +
+ + + + + + +
+
+ Unisys Corporation + + +   + + 2007-01-292012-09-06 + + + EAL3+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + MIRACLE LINUX V4.0 / MIRACLE LINUX V4.0 One / MIRACLE LINUX V4.0 x86-64 / MIRACLE LINUX V4.0 x86-64 One Operating System V4.0   +
+ +
+ + + + + + +
+
+ Miracle Linux Corporation + + +   + + 2007-01-242013-10-07 + + + EAL1 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + IBM AIX 5L for POWER V5.3, Technology level 5300-05-02 with Argus Systems Group PitBull Foundation Suite 5.0 and optional IBM Virtual IO Server (VIOS) Version 1.3   +
+ +
+ + + + + + +
+
+ Innovative Security Systems, Inc. + + +   + + 2007-01-162019-09-01 + + + EAL4+ +
ALC_FLR.1 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + IBM AIX 5L for POWER V5.2 Maintenance Level 5200-06 Program Number 5765-E62   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2007-01-012019-09-01 + + + EAL4+ +
ALC_FLR.3 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + PR/SM LPAR for the IBM System z9 109   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2007-01-012019-09-01 + + + EAL5 + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + PR/SM™ LPAR for the IBM System z9™ Enterprise Class and the IBM System z9™ Business Class   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2007-01-012019-09-01 + + + EAL5 + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + IBM AIX 5L for POWER V5.3 Technology Level 5300-05-02 with optional Virtual I/O Server (VIOS), Version 1.3   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2006-12-222019-09-01 + + + EAL4+ +
ALC_FLR.3 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Solaris™ 10 Release 03/05   +
+ +
+ + + + + + +
+
+ Oracle Corporation + + +   + + 2006-12-152015-09-29 + + + EAL4+ +
ALC_FLR.3 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Red Hat Enterprise Linux AS, Version 4 Update 4   +
+ +
+ + + + + + +
+
+ Red Hat, Inc. + + +   + + 2006-09-222012-09-06 + + + EAL3+ +
ALC_FLR.3 +
+ + US – National Information Assurance Partnership
US
+
+ + Microsoft Windows Server 2003 and Microsoft Windows XP with x64 Hardware Support   +
+ +
+ + + + + + +
+
+ Microsoft Corporation + + +   + + 2006-09-182012-09-07 + + + EAL4+ +
ALC_FLR.3 +
+ + US – National Information Assurance Partnership
US
+
+ + SUSE Linux Enterprise Server V 8 with Service Pack 3   +
+ +
+ + + + + + +
+
+ SUSE Linux Products Gmbh + + +   + + 2006-06-062019-09-01 + + + EAL3+ +
ALC_FLR.3 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Red Hat Enterprise Linux Version 4 Update 2 AS & Red Hat Enterprise Linux Version 4 Update 2 WS   +
+ +
+ + + + + + +
+
+ Red Hat, Inc. + + +   + + 2006-05-312012-09-06 + + + EAL3+ +
ALC_FLR.3 +
+ + US – National Information Assurance Partnership
US
+
+ + IBM AIX 5L for POWER V 5.2, Maintenance Level 5200-05 with Innovative Security Systems PitBull Foundation 5.0   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2006-05-022019-09-01 + + + EAL4+ +
ALC_FLR.1 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Hewlett-Packard HP-UX 11i v2   + + + Hewlett-Packard Company + + +   + + 2006-05-012013-03-05 + + + EAL4+ +
ALC_FLR.3 +
+ + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + VMware ESX Server 2.5.0 & VirtualCenter 1.2.0   +
+ +
+ + + + + + +
+
+ VMware, Inc. + + +   + + 2006-03-272012-09-07 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + IBM z/OS, Version 1, Release 7   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2006-03-022019-09-01 + + + EAL4+ +
ALC_FLR.1 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Red Hat Enterprise Linux (RHEL) Version 4 Update 1 AS and Red Hat Enterprise Linux (RHEL) Version 4 Update 1 WS   +
+ +
+ + + + + + +
+
+ Red Hat, Inc. + + +   + + 2006-01-262012-09-06 + + + EAL4+ +
ALC_FLR.3 +
+ + US – National Information Assurance Partnership
US
+
+ + Microsoft Exchange Server 2003 Enterprise Edition, Version/Build 6.5.7226.0 and Hotfix MS05-021   +
+ +
+ + + + + + +
+
+ Microsoft Corporation + + +   + + 2005-11-092019-09-01 + + + EAL4+ +
ALC_FLR.3 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Microsoft Windows 2003 and Microsoft Windows XP   +
+ +
+ + + + + + +
+
+ Microsoft Corporation + + +   + + 2005-11-062012-09-07 + + + EAL4+ +
ALC_FLR.3 +
AVA_VLA.4 +
+ + US – National Information Assurance Partnership
US
+
+ + SUSE Linux Enterprise Server Version 9 with Service Pack 2, ProPack 4 for Service Pack 2 and certification-sles-sgi-eal3 package   +
+ +
+ + + + + + +
+
+ SUSE Linux Products Gmbh + + +   + + 2005-10-132019-09-01 + + + EAL3+ +
ALC_FLR.3 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Network Appliance Data ONTAP 6.5.2R1   +
+ +
+ + + + + + +
+
+ NetApp, Inc. + + +   + + 2005-09-292012-09-07 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + SUSE Linux Enterprise Server 8 with service pack 3 to CC EAL 3+   +
+ +
+ + + + + + +
+
+ SUSE Linux Products Gmbh + + +   + + 2005-08-122019-09-01 + + + EAL3+ +
ALC_FLR.3 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + IBM i5/OS V5R3MO running on IBM eServer models 520, 550, and 570 with Software Feature Code 1930   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2005-08-102012-09-06 + + + EAL4+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Blue Coat ProxySG Operating System v3.2.4.8   +
+ +
+ + + + + + +
+
+ Blue Coat Systems, Inc. + + +   + + 2005-08-082012-09-06 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + IBM z/VM Version 5, Release 1 with RSU1   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2005-07-272019-09-01 + + + EAL3+ +
ALC_FLR.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + IBM z/OS Version 1, Release 6   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2005-03-092019-09-01 + + + EAL3+ +
ALC_FLR.1 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + SuSE Linux Enterprise Server Version 9 with certification-sles-ibm-eal4 package   +
+ +
+ + + + + + +
+
+ SUSE Linux Products Gmbh + + +   + + 2005-03-092019-09-01 + + + EAL4+ +
ALC_FLR.3 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + XTS-400(tm) / STOP(tm) 6.1.E   +
+ +
+ + + + + + +
+
+ BAE Systems Information Technology + + +   + + 2005-03-012012-09-06 + + + EAL5+ +
ALC_FLR.3 +
ATE_IND.3 +
+ + US – National Information Assurance Partnership
US
+
+ + Solaris™ 9 Release 08/03   +
+ +
+ + + + + + +
+
+ Oracle Corporation + + +   + + 2005-01-252015-09-29 + + + EAL4+ +
ALC_FLR.3 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Apple Mac OS X v10.3.6 and Apple Mac OS X Server V10.3.6   +
+ +
+ + + + + + +
+
+ Apple Inc. + + +   + + 2005-01-132012-09-06 + + + EAL3 + + + US – National Information Assurance Partnership
US
+
+ + Red Hat Enterprise Linux AS, Version 3 Update 3   +
+ +
+ + + + + + +
+
+ Hewlett-Packard Company + + +   + + 2004-09-232019-09-01 + + + EAL3+ +
ALC_FLR.3 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Red Hat Enterprise Linux WS, Version 3 Update 3   +
+ +
+ + + + + + +
+
+ Hewlett-Packard Company + + +   + + 2004-09-232019-09-01 + + + EAL3+ +
ALC_FLR.3 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + SUSE Linux Enterprise Server 8 with service pack 3   +
+ +
+ + + + + + +
+
+ SUSE Linux Products Gmbh + + +   + + 2004-09-232019-09-01 + + + EAL3+ +
ALC_FLR.3 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Cray UNICOS/mp Operating System Version 2.4.15   +
+ +
+ + + + + + +
+
+ Cray Incorporated + + +   + + 2004-08-302012-09-06 + + + EAL2+ +
ALC_FLR.1 +
+ + US – National Information Assurance Partnership
US
+
+ + Red Hat Enterprise Linux AS, Version 3 Update 2   +
+ +
+ + + + + + +
+
+ Red Hat, Inc. + + +   + + 2004-08-022019-09-01 + + + EAL3+ +
ALC_FLR.3 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Red Hat Enterprise Linux WS, Version 3 Update 2   +
+ +
+ + + + + + +
+
+ Red Hat, Inc. + + +   + + 2004-08-022019-09-01 + + + EAL3+ +
ALC_FLR.3 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + PR/SM on IBM zSeries 990   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2004-05-012019-09-01 + + + EAL4 + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Sun Trusted Solaris Version 8 4/01   +
+ +
+ + + + + + +
+
+ Sun Microsystems, Inc. + + +   + + 2004-03-012013-03-05 + + + EAL4 + + + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + XTS-400 / STOP 6.0.E   +
+ +
+ + + + + + +
+
+ BAE Systems Information Technology + + +   + + 2004-03-012012-09-06 + + + EAL4+ +
ALC_FLR.3 +
+ + US – National Information Assurance Partnership
US
+
+ + Hewlett-Packard Tru64 UNIX V5.1A   +
+ +
+ + + + + + +
+
+ Hewlett-Packard Company + + +   + + 2004-02-012013-03-05 + + + EAL1 + + + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + Red Hat Enterprise Linux 3   +
+ +
+ + + + + + +
+
+ Oracle Corporation + + +   + + 2004-02-012013-03-05 + + + EAL2 + + + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + IBM LPAR for POWER 4 for the IBM pSeries Firmware Releases3R031021 (p630), 3K031021 (p650) and 3H031021 (p690)   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2004-01-012019-09-01 + + + EAL4+ +
ALC_FLR.1 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + SuSE Linux Enterprise Server V8, Service Pack 3, RC4, with certification-sles-eal3 package   +
+ +
+ + + + + + +
+
+ SUSE Linux Products Gmbh + + +   + + 2004-01-012019-09-01 + + + EAL3+ +
ALC_FLR.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + IBM AIX 5L for POWER V5.2 with Recommended Maintenance Package 5200-01, Program Number 5765-E62   +
+ +
+ + + + + + +
+
+ IBM Informationssysteme Deutschland GmbH + + +   + + 2003-09-012019-09-01 + + + EAL4+ +
ALC_FLR.1 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Nokia IPSO 3.5, 3.5.1 (EAL4)   +
+ +
+ + + + + + +
+
+ Nokia Corporation + + +   + + 2003-07-012013-03-05 + + + EAL4 + + + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + Processor Resource/ System Manager (PR/SM) on IBM zSeries 800 and 900   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2003-06-012019-09-01 + + + EAL5 + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Processor Resource/ System Manager (PR/SM) on IBM zSeries 800 and 900   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2003-06-012019-09-01 + + + EAL4 + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Sun Solaris 8 02/02   +
+ +
+ + + + + + +
+
+ Sun Microsystems, Inc. + + +   + + 2003-04-012013-03-05 + + + EAL4 + + + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + Hewlett Packard HP-UX 11i   + + + Hewlett-Packard Company + + +   + + 2003-02-032013-02-27 + + + EAL4+ + + + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + Processor Resource/ System Manager (PR/SM) for the IBM eServer zSeries 900   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2003-02-012019-09-01 + + + EAL4 + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Processor Resource/ System Manager (PR/SM) for the IBM eServer zSeries 900   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2003-02-012019-09-01 + + + EAL5 + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + AIX 5L for POWER Versi- on 5.2, Program Number 5765-E62   +
+ +
+ + + + + + +
+
+ IBM Informationssysteme Deutschland GmbH + + +   + + 2002-11-012019-09-01 + + + EAL4+ +
ALC_FLR.1 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Microsoft Windows 2000 Professional, Server, and Advanced Server with SP3 and Q326886   +
+ +
+ + + + + + +
+
+ Microsoft Corporation + + +   + + 2002-10-012012-09-07 + + + EAL4+ +
ALC_FLR.3 +
+ + US – National Information Assurance Partnership
US
+
+ + Trusted IRIX/CMW v 6.5.13, with patches 4354, 4451, 4452, 4373, 4473   +
+ +
+ + + + + + +
+
+ Silicon Graphics, Inc. + + +   + + 2002-05-012012-09-07 + + + EAL3 + + + US – National Information Assurance Partnership
US
+
+ + IRIX v 6.5.13, with patches 4354, 4451, 4452   +
+ +
+ + + + + + +
+
+ Silicon Graphics, Inc. + + +   + + 2002-04-012012-09-07 + + + EAL3 + + + US – National Information Assurance Partnership
US
+
+ + SuSE Linux Enterprise Server V8   +
+ +
+ + + + + + +
+
+ SUSE Linux Products Gmbh + + +   + + 2002-02-012019-09-01 + + + EAL2+ +
ALC_FLR.1 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Sun Solaris Version 8 with AdminSuite v 3.0.1   +
+ +
+ + + + + + +
+
+ Sun Microsystems, Inc. + + +   + + 2000-11-012013-02-27 + + + EAL4 + + + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + B1/EST-X Version 2.0.1 with AIX, Version 4.3.1   +
+ +
+ + + + + + +
+
+ Bull S.A. and IBM Informationssysteme Deutschland GmbH + + +   + + 1999-03-012019-09-01 + + + EAL4 + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ProductVendorProduct
Certificate
Date Certificate
Issued
Certificate
Validity
Expiration
Date
(Archived)
ComplianceScheme
+ This list was generated on Friday, April 16, 2021, at 10:31 AM +
+ Other Devices and Systems – 531 Certified Products +
+ + Huawei FusionDirector 1.5.1.SPC1   +
+ +
+ + + + + + +
+
+ Huawei Technologies Co., Ltd. + + + CCRA Certificate + + 2020-10-232020-10-23 + + + EAL2+ +
ALC_FLR.1 +
+ + NL – NSCIB operated by
NL
+
+ + Red Hat Certificate System 9.4   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2021-03-31 – Red Hat Certificate System 9.4 batch update 3
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ Red Hat, Inc. + + + CCRA Certificate + + 2019-04-092021-04-09 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + SonicWall SonicOS Enhanced V6.5.2   + + + SonicWALL, Inc + + +   + + 2019-03-112021-03-11 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Apple iOS 12 Contacts   + + + Apple Inc. + + + CCRA Certificate + + 2019-02-282021-02-28 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Symantec Endpoint Protection   + + + Symantec Corporation + + + CCRA Certificate + + 2018-12-102020-01-16 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Apple iOS 11 Safari   + + + Apple Inc. + + + CCRA Certificate + + 2018-11-092020-11-09 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Tripp Lite B002 Secure KVM Switches Series   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2020-01-09 – Tripp Lite Secure KVM Peripheral Sharing Switches
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ Tripp Lite + + + CCRA Certificate + + 2018-10-032021-01-09 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Apple iOS 11 Contacts   + + + Apple Inc. + + + CCRA Certificate + + 2018-09-132020-08-13 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Enveil ZeroReveal™ Compute Fabric v1.1.1   + + + Enveil + + + CCRA Certificate + + 2018-08-282020-08-28 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Hypori Client (iOS) v4.1   + + + Intelligent Waves, LLC + + + CCRA Certificate + + 2018-08-272020-08-27 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Hypori Client (Android) v4.1   + + + Intelligent Waves, LLC + + + CCRA Certificate + + 2018-08-242020-08-24 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + IPGARD Secure KVM/Matrix Switch (SDVN, SUHN, SDMN, SDPN models)   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2020-01-08 – IPGARD Secure KVM/Matrix Switch
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ IPGARD, Inc. + + + CCRA Certificate + + 2018-08-142021-01-08 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Black Box SSXP Secure KVM Switches Series   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2019-06-21 – Black Box Secure KVM/Matrix and KM Switch
    + Maintenance Report + + Maintenance ST + +
  2. + +
    +
  3. + 2020-01-06 – Black Box Secure KVM/Matrix and KM Switch
    + Maintenance Report + + Maintenance ST + +
  4. + +
+
+ + +
+
+ Black Box Corporation + + + CCRA Certificate + + 2018-08-032021-01-06 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Nubo Software Thin Client v2.0   + + + Nubo Software Inc. + + + CCRA Certificate + + 2018-07-232020-07-23 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + BeyondTrust Password Safe 6.2 (a BeyondInsight component)   + + + BeyondTrust Software, Inc. + + + CCRA Certificate + + 2018-06-262020-06-26 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + IBM MaaS360 v2.9 Cloud Extender   + + + IBM Corporation + + + CCRA Certificate + + 2018-06-142020-06-14 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Trivalent Protect (for Android) Version 2.6   + + + Trivalent + + + CCRA Certificate + + 2018-06-132020-06-13 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Cisco AnyConnect Secure Mobility Client v4.6 for Apple iOS   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2019-02-11 – Cisco AnyConnect Secure Mobility Client v4.7 for Apple iOS 11.2
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Cisco Systems, Inc. + + + CCRA Certificate + + 2018-06-082020-12-08 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + CertAgent v7.0   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2019-08-23 – CertAgent v7.0
    + Maintenance Report + +
  2. + +
    +
  3. + 2020-08-13 – CertAgent v7.0 patch level 8
    + Maintenance Report + + Maintenance ST + +
  4. + +
+
+ + +
+
+ Information Security Corporation + + + CCRA Certificate + + 2018-06-012020-06-01 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + I/O Interconnect Secure KVM v1.0   + + + I O Interconnect, LTD + + + CCRA Certificate + + 2018-05-112020-05-11 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Apple iOS 11 VPN Client on iPhone and iPad   + + + Apple Computer, Inc. + + + CCRA Certificate + + 2018-05-102020-05-10 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Aruba, a Hewlett Packard Enterprise company Virtual Intranet Access (VIA) Client Version 3.0   + + + Aruba Networks + + + CCRA Certificate + + 2018-05-082020-11-08 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + SecureIO   + + + Vencore Labs + + + CCRA Certificate + + 2018-03-142020-03-14 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + AKGÜN HIS v4.0   + + + Akgün Bilgisayar Program ve Hizmet San. Tic. Ltd. Şti + + +   + + 2018-03-122021-03-11 + + + EAL2 + + + TR – TSE (Turkish Standards Institution) Common Criteria Certification Scheme
TR
+
+ + Raritan Secure KVM Switch Series (model RSS-102, RSS-102C, RSS-104, RSS-104C)   + + + Raritan, Inc. + + + CCRA Certificate + + 2018-02-132020-02-13 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + ATEN Secure KVM Switch Series (models CS118xxx, CS114xxx)   + + + ATEN International Co., LTD + + + CCRA Certificate + + 2018-01-292020-01-29 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + IOGEAR Secure KVM Switch Series (models GCS12xxTAA3, GCS13xxTAA3, and GCS14xxTAA3)   + + + IOGEAR + + + CCRA Certificate + + 2018-01-292020-01-29 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + NCR E10 New Generation FCR 2.0 (FCR Application Version 2.0, OpenSSL Version 1.0.2d Secure-IC firmware and hardware crypto library Version 0.0.6)   + + + Encore Bilişim Sistemleri Ltd. Şti. + + +   + + 2018-01-152021-01-14 + + + EAL2 + + + TR – TSE (Turkish Standards Institution) Common Criteria Certification Scheme
TR
+
+ + Monkton IA Docs Reinforced by Rebar for iOS v1.0.0   + + + Monkton, Inc. + + + CCRA Certificate + + 2017-12-072019-12-07 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Hyper-V for Windows Server 2016, Windows Server 2012 R2, and Windows 10   + + + Microsoft Corporation + + + CCRA Certificate + + 2017-11-202019-11-20 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + N-PosCore v.2.0.0.31   + + + EnPOS Bilişim Sanayi ve Ticaret A.Ş. + + +   + + 2017-10-272020-10-26 + + + EAL2 + + + TR – TSE (Turkish Standards Institution) Common Criteria Certification Scheme
TR
+
+ + CA Top Secret r16   + + + CA Technologies + + + CCRA Certificate + + 2017-10-042019-10-04 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Venafi Trust Protection Platform v17.1   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2018-08-27 – Maintenance Update of Venafi Trust Protection Platform
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Venafi + + + CCRA Certificate + + 2017-09-152019-09-15 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + CA ACF2 r16   + + + CA Technologies + + + CCRA Certificate + + 2017-09-012019-09-01 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Oracle Access Manager Suite 11g Release 2   + + + Oracle Corporation + + + CCRA Certificate + + 2017-08-312019-08-31 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Seneka EBDYS v1.0   + + + Seneka Yazılım Donanım Bilişim Tic. Taah. ve San. Ltd. Şti. + + +   + + 2017-08-102020-08-09 + + + EAL2+ +
ALC_FLR.1 +
ALC_LCD.1 +
+ + TR – TSE (Turkish Standards Institution) Common Criteria Certification Scheme
TR
+
+ + Cisco Jabber 11.8 for Windows 10   + + + Cisco Systems, Inc. + + + CCRA Certificate + + 2017-06-132019-07-13 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + RSA Identity Governance and Lifecycle v7.0   + + + RSA Security LLC + + + CCRA Certificate + + 2017-05-312019-05-31 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Splunk Enterprise 6.4.5   + + + Splunk, Inc. + + + CCRA Certificate + + 2017-03-222019-03-22 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Cisco Jabber 11.7 for Android & iPhone/iPad   + + + Cisco Systems, Inc. + + + CCRA Certificate + + 2017-03-142019-03-14 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + IPGARD Secure KVM/KM Switch (SDVN, SDPN, SDHN, SKMN models)   + + + IPGARD, Inc. + + + CCRA Certificate + + 2017-03-102019-03-10 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Aruba Remote Access Point Version 6.5.0-FIPS   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2017-11-08 – Maintenance Update of Aruba Remote Access Points
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Aruba Networks + + + CCRA Certificate + + 2017-02-262019-02-26 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Axway API Gateway version 7.4.1 with SP2   + + + Axway + + + CCRA Certificate + + 2017-01-132019-01-13 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Cisco 1000V Cloud Services Router v3.16   + + + Cisco Systems, Inc. + + + CCRA Certificate + + 2016-11-232018-11-23 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Windows 10 IPsec VPN Client   + + + Microsoft Corporation + + + CCRA Certificate + + 2016-11-102018-11-10 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Samsung Galaxy Note 7 VPNCPP   + + + Samsung Electronics Co., Ltd. + + +   + + 2016-10-172016-11-14 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Samsung Galaxy Note 7 MDFPP   + + + Samsung Electronics Co., Ltd. + + +   + + 2016-10-142016-11-14 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + FireEye xAgent   + + + FireEye Incorporated + + + CCRA Certificate + + 2016-07-082018-07-08 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + CA Top Secret r15   + + + CA Technologies + + + CCRA Certificate + + 2016-06-022018-06-02 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Huawei P8 Mobile Device   + + + Huawei Technologies Co., Ltd. + + +   + + 2016-05-242018-05-24 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + CA ACF2 r15   + + + CA Technologies + + + CCRA Certificate + + 2016-05-102018-05-10 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Trustwave SIEM Enterprise Version 2.3.3   +
+ +
+ + + + + + +
+
+ Trustwave Holdings, Inc. + + + CCRA Certificate + + 2016-04-142021-04-14 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Vormetric Data Security Manager V6000, Version 5.3   + + + Vormetric Inc. + + + CCRA Certificate + + 2016-04-052018-04-05 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Belkin Secure KM models F1DN102K-3, F1DN104K-3, and F1DN108K-3   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2018-03-19 – Maintenance Update for Belkin Secure KM Switch F1DN104K-3, F1DN104K-3, F1DN108K-3
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Belkin International, Inc. + + + CCRA Certificate + + 2016-03-242019-03-24 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Belkin Secure KVM models F1DN102F-3, F1DN102N-3, F1DN102V-3, F1DN102H-3, F1DN104P-3, F1DN104W-3, F1DN104B-3, F1DN104C-3, F1DN104E-3, F1DN104F-3, F1DN104Q-3, F1DN108C-3, F1DN116C-3, and F1DN108F-3   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2018-03-19 – Maintenance Update for Belkin Secure KVM Switch Models: F1DN102F-3, F1DN102N-3, F1DN102V-3, F1DN102H-3, F1DN104P-3, F1DN104W-3, F1DN104B-3, F1DN104C-3, F1DN104E-3, F1DN104F-3, F1DN104Q-3, F1DN108C-3, F1DN116C-3, F1DN108F-3
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Belkin International, Inc. + + + CCRA Certificate + + 2016-03-242019-03-24 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + HSL Secure KM Models SM20N-3, SM40N-3, SM40NU-3, SM80N-3, SM80NU-3   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2018-03-19 – Maintenance Update for High Security Labs Secure KM Models: SM20N-3, SM40N-3, SM40NU-3, SM80N-3, SM80NU-3
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ High Security Labs Ltd. + + + CCRA Certificate + + 2016-03-242018-03-24 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + HSL Secure KVM Models SK21D-3, SK21P-3, SK21H-3, SX22D-3, SX22H-3, DK22H-3, DK22P-3, DK22D-3, DK22PD-3, SK41D-3, SK41DU-3, SK41P-3, SK41PU-3, SK41H-3, SK41HU-3, DK42D-3, DK42DU-3, DK42P-3, DK42PU-3, DK42H-3, DK42HU-3, SX42DU-3, SX42PU-3, SX42HU-3, SK81DU-3, DK82DU-3, and SK161DU-3   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2018-03-19 – Maintenance Update for High Security Labs Secure KVM & Matrix Models: SK21D-3, SK21P-3, SK21H-3, SX22D-3, SX22H-3, DK22H-3, DK22P-3, DK22D-3DK22PD-3, SK41D-3, SK41DU-3, SK41P-3, SK41PU-3, SK41H-3, SK41HU-3, DK42D-3, DK42DU-3, DK42P-3, DK42PU-3, DK42H-3, DK42HU-3, SX42DU-3, SX42PU-3, SX42HU-3, SK81DU-3, DK82DU-3, SK161DU-3
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ High Security Labs Ltd. + + + CCRA Certificate + + 2016-03-242018-03-24 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Vertiv Secure KM (formerly as Emerson Secure KM Models SCKM120, SCKM140, SCKM145, SCKM180 and SCKM185)   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2018-03-19 – Maintenance Update for Vertiv Secure KM Switch Models: SCKM120, SCKM140, SCKM145, SCKM180, SCKM185
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Vertiv + + + CCRA Certificate + + 2016-03-242018-03-24 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Vertiv Secure KVM and Matrix (formerly as Emerson Secure KVM models SC820, SC820D, SC820H, SCM120, SCM120H, SC920H, SC920D, SC920, SC920XD, SC840, SC845, SC945, SC940, SC840D, SC845D, SC940D, SC945D, SC840H, SC845H, SC940H, SC945H, SC945XD, SCM145, SCM145H, SC1045XD, SC885, SC985, and SC8165)   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2017-03-30 – Vertiv Secure KVM and Matrix
    + Maintenance Report + +
  2. + +
    +
  3. + 2018-03-19 – Maintenance Update for Vertiv Secure KVM and Matrix Models: SC820, SC820DD, SC820H SCM120, SCM120H, SC920H, SC920D, SC920XD, SC840 ,SC845, SC945, SC940, SC840D, SC845D, SC940D, SC945D, SC80H, SC845H, SC940H, SC945H, SC945XD, SCM145, SC1045XD, SC885, SC985, SC8165
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ Vertiv + + + CCRA Certificate + + 2016-03-242018-03-24 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + HP Universal CMDB and Universal Discovery v10.21   +
+ +
+ + + + + + +
+
+ Hewlett-Packard Development Company, L.P. + + + CCRA Certificate + + 2016-03-142021-03-14 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Apple IOS VPN Client on iPhone & iPad   + + + Apple Inc. + + + CCRA Certificate + + 2016-03-102019-03-10 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + POLYAS CORE Version 2.2.3   + + + Micromata GmbH + + +   + + 2016-03-102021-03-10 + + + EAL2+ +
ALC_CMC.3 +
ALC_CMS.3 +
ALC_DVS.1 +
ALC_LCD.1 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + DataOverwriteSecurity Unit Type M19 1.02   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2017-10-02 – DataOverwriteSecurity Unit Type M19 1.02
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ Ricoh Company, Ltd. + + +   + + 2016-03-092021-03-09 + + + EAL2 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Hypori ACE Client v3.1.0   + + + Hypori, Inc. + + + CCRA Certificate + + 2016-03-092018-03-09 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + HSM TrustWay Proteccio Version V128/X130   +
+ +
+ + + + + + +
+
+ BULL S.A. + + +   + + 2016-02-172021-02-17 + + + EAL4+ +
ADV_IMP.2 +
ALC_DVS.2 +
ALC_FLR.3 +
AVA_VAN.5 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + MetaCRYPT-API Version 1.2.1   +
+ +
+ + + + + + +
+
+ BULL S.A. + + +   + + 2016-02-172021-02-17 + + + EAL3+ +
ALC_FLR.3 +
AVA_VAN.3 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Samsung Smart TV Security Solution GAIA V1.0   +
+ +
+ + + + + + +
+
+ Samsung Electronics Co., Ltd. + + +   + + 2016-01-212021-01-21 + + + EAL1 + + + KR – IT Security Certification Center(ITSCC)
KR
+
+ + EMC SourceOne™ v7.2   +
+ +
+ + + + + + +
+
+ EMC Corporation + + + CCRA Certificate + + 2016-01-112021-01-11 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + NATEK Security Information and Event Management SIEM GUI v2.0.2 with SIEM SERVER v6.2.0 and SIEM RECORDER v9.2.2 and SIEM AGENT v6.1.0   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2017-09-12 – NATEK Security Information and Event Management SIEM GUI v2.0.2 with SIEM SERVER v6.2.0 and SIEM RECORDER v9.2.2 and SIEM Agent v6.1.0 Maintenance
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ NATEK BİLİŞİM + + +   + + 2016-01-092019-01-09 + + + EAL3 + + + TR – TSE (Turkish Standards Institution) Common Criteria Certification Scheme
TR
+
+ + HP Server Automation Ultimate v10.10.002   +
+ +
+ + + + + + +
+
+ Hewlett-Packard Development Company, L.P. + + + CCRA Certificate + + 2015-12-222020-12-22 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + EMC Isilon® OneFS® v7.2.0.4   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2018-12-08 – Dell EMC™ Isilon OneFS v7.2.1.6
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ EMC Corporation + + + CCRA Certificate + + 2015-12-142020-12-14 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + EMC® ViPR® Controller v2.1.0.3   +
+ +
+ + + + + + +
+
+ EMC Corporation + + + CCRA Certificate + + 2015-11-202020-11-20 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Cisco Jabber 11.0 for Windows   + + + Cisco Systems, Inc. + + + CCRA Certificate + + 2015-11-132017-11-13 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + 3e-525N, 3e-523N, 3e-525N MP, 3e-525NV and 3-e523NR Wireless Access Points Hardware Version 1.0, Software Version 5.1   + + + 3e Technologies International, Inc. + + + CCRA Certificate + + 2015-10-132017-10-13 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Fuji Xerox +ApeosPort-V C7785/C6685/C5585 +DocuCentre-V C7785/C6685/C5585 +Series Controller Software +Controller ROM Ver. 1.0.7   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2015-10-062020-10-06 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Fuji Xerox ApeosPort-V +C7776/C6676/C5576/C4476/C3376/C3374/C2276 +DocuCentre-V C7776/C6676/C5576/C4476/ +C3376/C3374/C2276 Series Controller Software +Controller ROM Ver. 1.0.7   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2015-10-062020-10-06 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + SailPoint IdentityIQ version 6.4   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2017-10-06 – Assurance Continuity Maintenance Report For SailPoint IdentityIQ Version 7.1
    + Maintenance Report + + Maintenance ST + +
  2. + +
    +
  3. + 2018-10-02 – SailPoint IdentityIQ Version 7.2p2
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ SailPoint Technologies, Inc. + + + CCRA Certificate + + 2015-10-022019-10-02 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Tanium Platform 6.2   +
+ +
+ + + + + + +
+
+ Tanium Inc. + + + CCRA Certificate + + 2015-09-292020-09-29 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + MX-FR47 +C.10   +
+ +
+ + + + + + +
+
+ Sharp Corporation + + +   + + 2015-09-282020-09-28 + + + EAL2 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + HP Network Automation Ultimate Edition 10.10   +
+ +
+ + + + + + +
+
+ Hewlett-Packard Development Company, L.P. + + + CCRA Certificate + + 2015-09-242020-09-24 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Fuji Xerox ApeosPort-V 4020 Series Controller Software +Controller ROM Ver. 1.2.0   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2015-09-172020-09-17 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Fuji Xerox ApeosPort-V C3320 Series Controller Software +Controller ROM Ver. 1.2.0   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2015-09-172020-09-17 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + HP Cloud Service Automation v4.10   +
+ +
+ + + + + + +
+
+ Hewlett-Packard Development Company, L.P. + + + CCRA Certificate + + 2015-09-152020-09-15 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + bizhub 4750 / bizhub 4050 PKI Card System Control Software A6F730G0273999P   +
+ +
+ + + + + + +
+
+ KONICA MINOLTA, INC. + + +   + + 2015-08-262020-08-26 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + bizhub C3850 / bizhub C3350 PKI Card System Control Software A3GN30G0213999P   +
+ +
+ + + + + + +
+
+ KONICA MINOLTA, INC. + + +   + + 2015-08-262020-08-26 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Fuji Xerox ApeosPort-V 5070/4070 DocuCentre-V 5070/4070 Series Controller Software +Controller ROM Ver. 1.0.8   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2015-08-262020-08-26 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Fuji Xerox ApeosPort-V 7080/6080 DocuCentre-V 7080/6080 Series Controller Software +Controller ROM Ver. 1.0.7   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2015-08-262020-08-26 + + + EAL3+ +
ALC_FLR.2 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + HP Operations Orchestration 10.20   +
+ +
+ + + + + + +
+
+ Hewlett-Packard Development Company, L.P. + + + CCRA Certificate + + 2015-08-122020-08-12 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Tintri VMstore v3.1.2.1   +
+ +
+ + + + + + +
+
+ Tintri, Inc. + + + CCRA Certificate + + 2015-08-102020-08-10 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + HP SiteScope v11.30   +
+ +
+ + + + + + +
+
+ Hewlett-Packard Development Company, L.P. + + + CCRA Certificate + + 2015-08-072020-08-07 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + CyberArk Privileged Account Security Solution v9.1   +
+ +
+ + + + + + +
+
+ CyberArk Software, Ltd + + + CCRA Certificate + + 2015-06-292020-06-29 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Microsoft Surface Pro 3, Windows 8.1   + + + Microsoft + + +   + + 2015-04-212017-04-21 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Digital Tachograph DTCO 1381, Release 2.2   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2015-08-05 – Digital Tachograph DTCO 1381, Release 2.2a
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Continental Automotive GmbH + + +   + + 2015-04-162020-04-16 + + + EAL4+ +
ATE_DPT.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Samsung Galaxy S6 & S6 Edge   + + + Samsung Electronics Co., Ltd. + + +   + + 2015-04-082017-04-08 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Samsung Galaxy Note 4 Android 5   + + + Samsung Electronics Co., Ltd. + + +   + + 2015-04-032017-04-03 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Microsoft Windows 8.1, Phone 8.1   + + + Microsoft Corporation + + +   + + 2015-03-162017-02-11 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + US Federal Shavlik Protect Standard v9.1   +
+ +
+ + + + + + +
+
+ LANDesk Software + + + CCRA Certificate + + 2015-03-122019-12-04 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Boeing Black   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2015-03-20 – Boeing Black with Hardware ID v6.0.2 and PureSecure v1.3
    + Maintenance Report + +
  2. + +
    +
  3. + 2015-04-03 – The Boeing Company Boeing Black with Hardware ID v.6.0.2 and PureSecure v1.3
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ The Boeing Company + + +   + + 2015-02-242017-02-24 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Fuji Xerox ApeosPort-V C7775/C6675/ C5575/C4475/C3375/C3373/C2275 T2 DocuCentre-V C7775/C6675/C5575/C4475/ C3375/C3373/C2275 T2 Series Controller Software Controller ROM Ver. 2.0.12   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2015-02-132020-03-03 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Fuji Xerox ApeosPort-V C7780/C6680/C5580 T2 DocuCentre-V C7780/C6680/C5580 T2 Series Controller SoftwareController ROM Ver. 2.0.13   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2015-02-132020-03-03 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Securonix Security Intelligence Platform 4.0.5   +
+ +
+ + + + + + +
+
+ Securonix + + + CCRA Certificate + + 2015-02-132020-02-13 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + BMC Atrium® Discovery and Dependency Mapping 10.0   +
+ +
+ + + + + + +
+
+ BMC Software, Inc. + + + CCRA Certificate + + 2015-02-102020-02-10 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Samsung Galaxy Note Edge & Galaxy Tab Active   + + + Samsung Electronics Co., Ltd. + + +   + + 2014-12-122016-12-12 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + NetIQ® Secure Configuration Manager™ 5.9.1   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2016-11-28 – 2016-11-28 NetIQ® Secure Configuration Manager™ 6.2.0
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ NetIQ Corporation + + + CCRA Certificate + + 2014-11-282019-11-28 + + + EAL2+ +
ALC_FLR.1 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + MX-FR42 D.10   +
+ +
+ + + + + + +
+
+ Sharp Corporation + + +   + + 2014-11-272019-12-02 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + MX-FR44 C.10   +
+ +
+ + + + + + +
+
+ Sharp Corporation + + +   + + 2014-11-272019-12-02 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Avocent Cybex SwitchView SC Series Switches   +
+ +
+ + + + + + +
+
+ Vertiv + + + CCRA Certificate + + 2014-11-192019-11-19 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Avocent Cybex SwitchView SC Series Switches   +
+ +
+ + + + + + +
+
+ Vertiv + + +   + + 2014-11-192018-05-07 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + SolarWinds® Log and Event Manager v5.70   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2015-10-29 – SolarWinds Log and Event Manager (LEM) V6.2.0
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ Solarwinds Worldwide, LLC + + + CCRA Certificate + + 2014-11-142019-10-15 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Samsung Galaxy Note 4, Galaxy Note Edge, Galaxy Alpha, Galaxy Tab S 8.4 LTE & 10.5 LTE, & Galaxy Tab Active with KNOX 2   + + + Samsung Electronics Co., Ltd. + + +   + + 2014-11-132016-11-13 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + SolarWinds® Orion® Suite for Federal Government V1.0   +
+ +
+ + + + + + +
+
+ Solarwinds Worldwide, LLC + + + CCRA Certificate + + 2014-11-032019-10-01 + + + EAL2 + + + CA – Canadian Common Criteria Scheme
CA
+
+ + Samsung Galaxy S5 with KNOX 2   + + + Samsung Electronics Co., Ltd. + + +   + + 2014-10-312016-10-31 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Samsung Galaxy Note 4, Galaxy Note Edge, Galaxy Alpha & Galaxy Tab S 8.4 LTE & 10.5 LTE   + + + Samsung Electronics Co., Ltd. + + +   + + 2014-10-292016-10-29 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Samsung Galaxy S5 & Note 10.1 2014 Edition   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2014-07-24 – Samsung Electronics Co., Ltd. Samsung Galaxy Devices (MDFPP11), Version 3.0
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Samsung Electronics Co., Ltd. + + +   + + 2014-09-102016-04-19 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + McAfee Enterprise Mobility Management 12.0   +
+ +
+ + + + + + +
+
+ McAfee, Inc. + + + CCRA Certificate + + 2014-09-042019-09-04 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Nutanix Virtual Computing Platform v3.5.1   +
+ +
+ + + + + + +
+
+ Nutanix, Inc. + + + CCRA Certificate + + 2014-08-262019-09-22 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + SegoAssurance Module Version 1.2   +
+ +
+ + + + + + +
+
+ Comcotec Messtechnik GmbH + + +   + + 2014-08-192019-09-01 + + + EAL1 + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + EMC® VNX OE for Block v05.33 and File v8.1 with Unisphere™ v1.3 running on VNX Series Hardware Models VNX5200™, VNX5400™, VNX5600™, VNX5800™, VNX7600™, and VNX8000™   +
+ +
+ + + + + + +
+
+ EMC Corporation + + + CCRA Certificate + + 2014-08-082019-08-27 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Fuji Xerox ApeosPort-V C7780/C6680/C5580 DocuCentre-V C7780/C6680/C5580 Series Controller Software, Version: Controller ROM Ver. 1.0.13   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2014-07-112019-08-05 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Japanese : Fuji Xerox ApeosPort-V C7775/C6675/C5575/C4475/C3375/C2275 DocuCentre-V C7775/C6675/C5575/C4475/C3375/C2275 Series Controller Software English : Fuji Xerox ApeosPort-V C7775/C6675/C5575/C4475/C3375/C3373/C2275 DocuCentre-V C7775/C6675/C5575/C4475/C3375/C3373/C2275 Series Controller Software, Version: Controller ROM Ver. 1.0.14   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2014-07-112019-08-05 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + CAYBIS v1.0 Tea Processing and Personnel Management System Web Application   +
+ +
+ + + + + + +
+
+ SAMPAŞ A.Ş + + +   + + 2014-07-072019-09-01 + + + EAL2 + + + TR – TSE (Turkish Standards Institution) Common Criteria Certification Scheme
TR
+
+ + Violin Memory 6000 Series Memory Arrays with Memory Gateways Version 5.5.2   +
+ +
+ + + + + + +
+
+ Violin Memory, Inc + + + CCRA Certificate + + 2014-07-042019-07-04 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Módulo de Firma Electrónica de Documentos v2.18   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2014-12-08 – Módulo de Firma Electrónica de Documentos v2.19
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ RCI Banque S.A. Sucursal en España + + +   + + 2014-05-092019-09-01 + + + EAL1+ +
ASE_OBJ.2 +
ASE_REQ.2 +
ASE_SPD.1 +
+ + ES – Organismo de Certificación de la Seguridad de las Tecnologías de la Información
ES
+
+ + bizhub 554e / bizhub 454e / bizhub 364e / bizhub 284e / bizhub 224e PKI Card System Control Software Version: A61F0Y0-0100-G00-09pki   +
+ +
+ + + + + + +
+
+ KONICA MINOLTA, INC. + + +   + + 2014-04-282019-05-07 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + bizhub 754e / bizhub 654e PKI Card System Control Software Version:A55V0Y0-0100-G00-60pki   +
+ +
+ + + + + + +
+
+ KONICA MINOLTA, INC. + + +   + + 2014-04-282019-05-07 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Secure Identification system for the management and control system of actions over urban furniture in the street through RFID sensors, version 1.0   + + + Boreal Information Technology + + +   + + 2014-04-232019-09-01 + + + EAL1+ +
ASE_SPD.1 +
+ + ES – Organismo de Certificación de la Seguridad de las Tecnologías de la Información
ES
+
+ + Cellcrypt Mobile for Secret Client Version 1.0   + + + Cellcrypt, Inc. + + +   + + 2014-04-142016-04-14 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + Samsung Electronics Co., Ltd. Samsung Galaxy Devices with Qualcomm Snapdragon Processors including the Galaxy S4, Galaxy Note 3, and the Galaxy NotePRO Tablet   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2014-06-13 – Samsung Electronics Co., Ltd. Samsung Galaxy Devices with Qualcomm Snapdragon Processors (MDFPP10)
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Samsung Electronics Co., Ltd. + + +   + + 2014-02-262016-04-19 + + + PP Compliant + + + US – National Information Assurance Partnership
US
+
+ + VMware vSphere 5.1 Update 1c   +
+ +
+ + + + + + +
+
+ VMware, Inc. + + + CCRA Certificate + + 2014-02-242019-03-24 + + + EAL2+ +
ALC_FLR.3 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + IBM WebSphere MQ v7.1.0.2   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2014-01-302016-01-30 + + + EAL2+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Dispositif de placement sous surveillance électronique PSE/PSEM/DEPAR   +
+ +
+ + + + + + +
+
+ G4S Monitoring Technologies ltd + + +   + + 2014-01-242019-09-01 + + + EAL2 +
ALC_DVS.2 +
ALC_FLR.3 +
AVA_VAN.3 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Trend Micro Deep Discovery Inspector 3.2, build 1118   + + + Trend Micro Inc. + + + CCRA Certificate + + 2014-01-212019-01-21 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + MX-FR41 Version:D.10   +
+ +
+ + + + + + +
+
+ Sharp Corporation + + +   + + 2013-12-252019-01-09 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Software AG webMethods Business Process Management Suite 8.2 SP2   +
+ +
+ + + + + + +
+
+ Software AG, Inc. + + +   + + 2013-12-202015-12-19 + + + EAL2 +
ALC_FLR.1 +
+ + US – National Information Assurance Partnership
US
+
+ + HP StoreOnce Backup System   +
+ +
+ + + + + + +
+
+ Hewlett-Packard Ltd. + + +   + + 2013-12-172016-02-27 + + + EAL2+ +
ALC_FLR.3 +
+ + US – National Information Assurance Partnership
US
+
+ + imagio Security Card Type 7 (Japanese name), DataOverwriteSecurity Unit Type H (English name) Version: 1.02x   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2015-12-07 – DataOverwriteSecurity Unit Type H 1.02x
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ Ricoh Company, Ltd. + + +   + + 2013-11-292019-09-01 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + imagio Security Card Type 9 (Japanese name), DataOverwriteSecurity Unit Type I (English name) Version: 1.02m   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2015-03-30 – DataOverwriteSecurity Unit Type I 1.02m
    + Maintenance Report + + Maintenance ST + +
  2. + +
    +
  3. + 2015-12-07 – DataOverwriteSecurity Unit Type I 1.02m
    + Maintenance Report + + Maintenance ST + +
  4. + +
+
+ + +
+
+ Ricoh Company, Ltd. + + +   + + 2013-11-292019-09-01 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + bizhub C754e / bizhub C654e PKI Card System Control Software. Version:A2X00Y0-0100-G00-80pki   +
+ +
+ + + + + + +
+
+ KONICA MINOLTA, INC. + + +   + + 2013-11-282018-12-05 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Thinklogical MX48 Router KVM Matrix Switch   +
+ +
+ + + + + + +
+
+ Thinklogical + + +   + + 2013-11-282019-09-01 + + + EAL4 + + + NO – SERTIT
NO
+
+ + Thinklogical VX320A Router KVM Matrix Switch   +
+ +
+ + + + + + +
+
+ Thinklogical + + +   + + 2013-11-282019-09-01 + + + EAL4 + + + NO – SERTIT
NO
+
+ + Thinklogical VX320V Router KVM Matrix Switch   +
+ +
+ + + + + + +
+
+ Thinklogical + + +   + + 2013-11-282019-09-01 + + + EAL4 + + + NO – SERTIT
NO
+
+ + Thinklogical VX640 Router KVM Matrix Switch   +
+ +
+ + + + + + +
+
+ Thinklogical + + +   + + 2013-11-282019-09-01 + + + EAL4 + + + NO – SERTIT
NO
+
+ + Thinklogical VX80 Router KVM Matrix Switch   +
+ +
+ + + + + + +
+
+ Thinklogical + + +   + + 2013-11-282019-09-01 + + + EAL4 + + + NO – SERTIT
NO
+
+ + Trustwave Secure Web Gateway Version 11.0   +
+ +
+ + + + + + +
+
+ Trustwave Holdings, Inc. + + + CCRA Certificate + + 2013-11-072018-12-17 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + HP BladeSystem c7000 and c3000 Enclosure with Onboard Administrator (running firmware version 3.71), Virtual Connect (running firmware version 4.01), and HP Integrated Lights-Out 3 (version 1.50)   +
+ +
+ + + + + + +
+
+ Hewlett-Packard Company + + + CCRA Certificate + + 2013-10-212018-12-09 + + + EAL4+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Wise Waste RFID System v3.0.0   + + + SOMA - Sociedade de Montagem de Automòveis, S.A. + + +   + + 2013-09-092019-09-01 + + + EAL1+ +
ASE_OBJ.2 +
ASE_REQ.2 +
ASE_SPD.1 +
+ + ES – Organismo de Certificación de la Seguridad de las Tecnologías de la Información
ES
+
+ + SISOFT HEALTHCARE INFORMATION SYSTEMS   +
+ +
+ + + + + + +
+
+ SISOFT SAĞLIK BİLGİ SİSTEMLERİ + + +   + + 2013-09-052017-03-27 + + + EAL2+ +
ALC_FLR.1 +
+ + TR – TSE (Turkish Standards Institution) Common Criteria Certification Scheme
TR
+
+ + TAXSAYA Online Version 1.5.0.12   +
+ +
+ + + + + + +
+
+ EA Link System Sdn Bhd + + +   + + 2013-08-152019-09-01 + + + EAL1 + + + MY – CyberSecurity Malaysia
MY
+
+ + Pivotal tc Server Standard Edition v2.8.2 RELEASE   +
+ +
+ + + + + + +
+
+ Pivotal, Inc. + + + CCRA Certificate + + 2013-07-172018-07-15 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Belkin® Secure DVI KVM Switch, Secure KM Switch and Secure Windowing KVM   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2013-09-24 – Belkin® Secure DVI KVM Switch, Secure KM Switch and Secure Windowing KVM
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Belkin International, Inc. + + +   + + 2013-07-162018-04-19 + + + EAL4+ +
ALC_FLR.3 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + bizhub 754 / bizhub 654 / ineo 754 / ineo 654 Control Software, Version: A55V0Y0-0100-G00-10   +
+ +
+ + + + + + +
+
+ KONICA MINOLTA, INC. + + +   + + 2013-07-122018-08-07 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + bizhub C554e / bizhub C454e / bizhub C364e / bizhub C284e / bizhub C224e PKI Card System Control Software, Version: A5C10Y0-0100-G00-17pki   +
+ +
+ + + + + + +
+
+ KONICA MINOLTA, INC. + + +   + + 2013-07-102018-08-07 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + tru/cos tacho v1.1   + + + Trueb AG + + +   + + 2013-06-282019-09-01 + + + EAL4+ +
ATE_DPT.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + bizhub 754 / bizhub 654 PKI Card System Control Software, version: A55V0Y0-0100-G00-10pki   +
+ +
+ + + + + + +
+
+ KONICA MINOLTA, INC. + + +   + + 2013-06-202018-07-04 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Digital Tachograph DTCO 1381, Release 2.1   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2015-10-23 – Digital Tachograph DTCO 1381, Release 2.1a
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Continental Automotive GmbH + + +   + + 2013-04-252019-09-01 + + + EAL4+ +
ATE_DPT.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Dell EqualLogic PS Series Storage Array Firmware Version 5.1.1-H2   +
+ +
+ + + + + + +
+
+ Dell, Inc. + + +   + + 2013-03-282019-09-01 + + + EAL2+ +
ALC_FLR.1 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Symantec Altiris IT Management Suite 7.1 SP2   +
+ +
+ + + + + + +
+
+ Symantec Corporation + + +   + + 2013-03-062018-04-19 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Symantec™ Endpoint Protection Version 12.1.2   + + + Symantec Corporation + + +   + + 2013-03-052018-04-19 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + ZTE Optical Transmission Equipment Series   +
+ +
+ + + + + + +
+
+ ZTE Corporation + + +   + + 2013-02-252019-09-01 + + + EAL2+ +
ALC_FLR.2 +
+ + NO – SERTIT
NO
+
+ + MX-FR37 Version: C.10   +
+ +
+ + + + + + +
+
+ Sharp Corporation + + +   + + 2013-02-222018-03-01 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + PARS DT-101 DIGITAL TACHOGRAPH VEHICLE UNIT v1.0   + + + PARS Arge ve Bilgi Teknolojileri Ltd Şti + + +   + + 2013-01-302017-03-27 + + + EAL4+ +
AVA_VAN.5 +
+ + TR – TSE (Turkish Standards Institution) Common Criteria Certification Scheme
TR
+
+ + RioRey Perimeter Protection Platform (RE500, RE1500, RX1800, RX2300, RX4400 and RG with RIOS Software version 5.0.12sp8) and rView Software version 5.0.12sp9   +
+ +
+ + + + + + +
+
+ RIOREY Incorporated + + +   + + 2012-12-212014-12-31 + + + EAL4+ +
ALC_FLR.1 +
+ + US – National Information Assurance Partnership
US
+
+ + McAfee® Email Gateway (MEG) software v7.0.1, running on VMware server   +
+ +
+ + + + + + +
+
+ McAfee, Inc. + + +   + + 2012-12-112018-04-19 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + bizhub C554 / bizhub C454 / bizhub C364 / bizhub C284 / bizhub C224 / bizhub C7828 / bizhub C7822 / ineo+ 554 / ineo+ 454 / ineo+ 364 / ineo+ 284 / ineo+ 224 Control Software Version: A2XK0Y0-0100-G00-56   +
+ +
+ + + + + + +
+
+ Konica Minolta Business Technologies, Inc + + +   + + 2012-11-152017-12-06 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + bizhub C554 / bizhub C454 / bizhub C364 / bizhub C284 / bizhub C224 PKI Card System Control Software Version:A2XK0Y0-0100-G00-56pki   +
+ +
+ + + + + + +
+
+ Konica Minolta Business Technologies, Inc + + +   + + 2012-11-152017-12-06 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Hewlett-Packard 3PAR InServ Storage Systems   +
+ +
+ + + + + + +
+
+ Hewlett-Packard Company + + +   + + 2012-10-302014-11-01 + + + EAL2+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Hewlett-Packard 3PAR InServ Storage Systems with Virtual Domains   +
+ +
+ + + + + + +
+
+ Hewlett-Packard Company + + +   + + 2012-10-302014-11-01 + + + EAL2+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + bizhub C754 / bizhub C654 / ineo+ 754 / ineo+ 654 Control Software Version: A2X00Y0-0100-G00-53   +
+ +
+ + + + + + +
+
+ Konica Minolta Business Technologies, Inc + + +   + + 2012-10-292017-11-13 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + bizhub C754 / bizhub C654 PKI Card System Control Software Version:A2X00Y0-0100-G00-53pki   +
+ +
+ + + + + + +
+
+ Konica Minolta Business Technologies, Inc + + +   + + 2012-10-292017-11-13 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + RADIUSS Core Version 2.0   +
+ +
+ + + + + + +
+
+ Radmik Solutions Sdn Bhd + + +   + + 2012-10-192019-09-01 + + + EAL1 + + + MY – CyberSecurity Malaysia
MY
+
+ + EMC® Avamar® v6.1   +
+ +
+ + + + + + +
+
+ EMC Corporation + + +   + + 2012-10-122018-04-19 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Adder Secure Analogue and Digital KVM Switches, Version 1.0, AVSD1002-XX, AVSD1004-XX, AVSV1002-XX, AVSV1004-XX; where XX is one of the following: UK (United Kingdom), US (United States), EURO (Europe), AUS (Australia)   + + + Adder Technology Ltd + + +   + + 2012-09-252017-09-25 + + + EAL2+ +
ALC_FLR.2 +
+ + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + Black Box Secure Analogue and Digital KVM Switches, Version 1.0, SW2008A-USB-EAL, SW4008A-USB-EAL, SW2006A-USB-EAL, SW4006A-USB-EAL   + + + Black Box Corporation + + +   + + 2012-09-252017-09-25 + + + EAL2+ +
ALC_FLR.2 +
+ + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + SecDocs Security Komponenten Version 1.0 build version 1.0.308_6236   + + + Fujitsu Technology Solutions GmbH + + +   + + 2012-09-102019-09-01 + + + EAL4+ +
ALC_FLR.1 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + MX-FR30 Version:C.10   +
+ +
+ + + + + + +
+
+ Sharp Corporation + + +   + + 2012-09-062017-10-12 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + MX-FR33 Version:C.10   +
+ +
+ + + + + + +
+
+ Sharp Corporation + + +   + + 2012-09-062017-10-12 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + McAfee Enterprise Mobility Management 9.7   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2012-11-26 – Maintenance Addendum: McAfee Enterprise Mobility Management 10.2
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ McAfee, Inc. + + +   + + 2012-08-302018-04-19 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + tru/cos tacho v1.0   +
+ +
+ + + + + + +
+
+ Trueb AG + + +   + + 2012-08-282019-09-01 + + + EAL4+ +
ATE_DPT.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Fuji Xerox DocuCentre-IV 3060/2060 (SSD Model) Series Controller Software Version: Controller ROM Ver. 1.0.13   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2012-07-302017-08-03 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Fuji Xerox DocuCentre-IV 3065/3060/2060 (SSD Model) Series Controller Software for Asia Pacific Version: Controller ROM Ver. 1.120.13   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2012-07-302017-08-03 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Fuji Xerox DocuCentre-IV C2265/C2263 (SSD Model) Series Controller Software for Asia Pacific Version: Controller ROM Ver. 1.111.4   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2012-07-302017-08-03 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Trustwave SIEM Operations Edition Version 5.9.0 and Trustwave SIEM LP Software Version 1.2.1   + + + Trustwave + + +   + + 2012-07-192018-04-19 + + + EAL3+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Emerson®-Cybex® Secure DVI KVM Switch, Secure KM Switch and Secure Windowing KVM (formerly Avocent®-Cybex®)   +
+ +
+ + + + + + +
+
+ Vertiv + + +   + + 2012-07-162018-04-19 + + + EAL4+ +
ALC_FLR.3 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Secure DVI KVM Switch, Secure KM Switch and Secure KVM Combiner   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2013-04-11 – High Security Labs Secure DVI KVM Switch, Secure KM Switch and Secure KVM Combiner (April 2013)
    + Maintenance Report + +
  2. + +
    +
  3. + 2014-05-06 – High Security Labs Secure DVI KVM Switch, Secure KM Switch and Secure KVM Combiner May 2014)
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ High Security Labs Ltd. + + +   + + 2012-07-162018-04-19 + + + EAL4+ +
ALC_FLR.3 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Fuji Xerox ApeosPort-IV C5575/C4475/C3375/C2275 DocuCentre-IV C5575/C4475/C3375/C2275 (SSD Model) Series Controller Software Version: Controller ROM Ver. 1.1.7   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2012-07-122017-08-03 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Fuji Xerox ApeosPort-IV C5575/C4475/C3375/C3373/C2275 DocuCentre-IV C5575/C4475/C3375/C3373 (SSD Model) Series Controller Software for Asia Pacific Version: Controller ROM Ver. 1.102.7   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2012-07-122017-08-03 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Fuji Xerox DocuCentre-IV C2263 (SSD Model) Series Controller Software Version: Controller ROM Ver. 1.1.1   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2012-07-122017-08-03 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Motorola Network Gateways GGM 8000, S6000, and S2500   +
+ +
+ + + + + + +
+
+ Motorola, Inc. + + +   + + 2012-06-302014-11-01 + + + EAL2+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Digital Tachograph DTCO 1381, Release 2.0   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2012-09-17 – Digital Tachograph DTCO 1381, Release 2.0a
    + Maintenance Report + +
  2. + +
    +
  3. + 2013-01-18 – Digital Tachograph DTCO 1381, Release 2.0U
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ Continental Automotive GmbH + + +   + + 2012-06-142019-09-01 + + + EAL4+ +
ATE_DPT.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + IBM Global Security Kit (GSKit) v8   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2014-04-10 – GSKit Version 8.0.14.42
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ IBM Corporation + + +   + + 2012-06-112015-06-05 + + + EAL4 + + + US – National Information Assurance Partnership
US
+
+ + DbProtect AppDetective 2009.1 R2   +
+ +
+ + + + + + +
+
+ Application Security, Inc. + + +   + + 2012-06-042014-11-01 + + + EAL2+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + DbProtect AppRadar 2009.1 R2   +
+ +
+ + + + + + +
+
+ Application Security, Inc. + + +   + + 2012-06-042014-11-01 + + + EAL2+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + IBM WebSphere Application Server for z/OS V7   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2012-05-252014-11-01 + + + EAL4+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + IBM WebSphere Application Server Network Deployment (32-bit) V7   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2012-05-252014-11-01 + + + EAL4+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + IBM WebSphere Application Server V7 (32-bit)   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2012-05-252014-11-01 + + + EAL4+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + DefensePro Product Family Software Version 5.11   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2014-06-04 – DefensePro Product Family Software Version 6.09.01
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ Radware + + +   + + 2012-05-222017-05-15 + + + EAL4+ +
ALC_FLR.3 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Rapid7™ Nexpose™ Vulnerability Management and Penetration Testing System V5.1   +
+ +
+ + + + + + +
+
+ Rapid7 LLC + + +   + + 2012-05-222017-05-15 + + + EAL3+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + VMware® vSphere 5.0   +
+ +
+ + + + + + +
+
+ VMware, Inc. + + +   + + 2012-05-182017-05-15 + + + EAL4+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Dispositif de placement sous surveillance électronique   +
+ +
+ + + + + + +
+
+ G4S Monitoring Technologies ltd + + +   + + 2012-04-052019-09-01 + + + EAL2+ +
ALC_DVS.1 +
ALC_FLR.3 +
AVA_VAN.3 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Fuji Xerox ApeosPort-IV C5575/C4475/C3375/C2275 (G4 Model) Series Controller Software Version: Controller ROM Ver. 1.40.18   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2012-03-282017-04-03 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Fuji Xerox ApeosPort-IV C5575/C4475/C3375/C2275 DocuCentre-IV C5575/C4475/C3375/C2275 Series Controller Software Version:Controller ROM Ver. 1.0.18   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2012-03-282017-04-03 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Fuji Xerox ApeosPort-IV C5575/C4475/C3375/C3373/C2275 DocuCentre-IV C5575/C4475/C3375/C3373 Series Controller Software for Asia Pacific Version: Controller ROM Ver. 1.101.18   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2012-03-282017-04-03 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Ornet Neuron version 1.2.2   +
+ +
+ + + + + + +
+
+ Ornet Solutions Sdn Bhd + + +   + + 2012-03-262019-09-01 + + + EAL1 + + + MY – CyberSecurity Malaysia
MY
+
+ + Northern Light Video Conferencing System (NLVC) consist of NLVC Client version 6.3.0.0, NLVC Server Webadmin Tool version 7.0.0.1, and NLVC Server version 6.1-0.21   +
+ +
+ + + + + + +
+
+ JMCS Sdn Bhd + + +   + + 2012-03-222019-09-01 + + + EAL2 + + + MY – CyberSecurity Malaysia
MY
+
+ + Fuji Xerox ApeosPort-IV 4070(G4 Model) Series Controller Software Controller ROM Ver. 1.40.10   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2012-03-132017-04-03 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Fuji Xerox ApeosPort-IV 7080(G4 Model) Series Controller Software Controller ROM Ver. 1.40.10   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2012-03-132017-04-03 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Fuji Xerox ApeosPort-IV 7080/6080 DocuCentre-IV 7080/6080 Series Controller Software for Asia Pacific Controller ROM Ver. 1.101.9   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2012-03-132017-04-03 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Fuji Xerox DocuCentre-IV C2263 Series Controller Software Controller ROM Ver. 1.0.12   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2012-03-132017-04-03 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + EMC® Atmos™ v2.0.1   +
+ +
+ + + + + + +
+
+ EMC Corporation + + +   + + 2012-03-022017-05-15 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Web Bytes Xilnex Framework version 3.0   +
+ +
+ + + + + + +
+
+ Web Bytes Sdn Bhd + + +   + + 2012-02-162019-09-01 + + + EAL1 + + + MY – CyberSecurity Malaysia
MY
+
+ + SAP NetWeaver Application Server ABAP 7.02 SP8 (Unicode Kernel 64 bit) with Common Criteria Addendum (Material No. 51041562)   +
+ +
+ + + + + + +
+
+ SAP AG + + +   + + 2012-02-152019-09-01 + + + EAL4+ +
ALC_FLR.1 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Fuji Xerox ApeosPort-IV 4070/3070 DocuCentre-IV 4070/3070 Series Controller Software Version: Controller ROM Ver. 1.0.10   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2012-01-312017-02-02 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Fuji Xerox ApeosPort-IV 7080/6080/5080 DocuCentre-IV 7080/6080/5080 Series Controller Software Version: Controller ROM Ver. 1.0.10   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2012-01-312017-02-02 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Fuji Xerox DocuCentre-IV C2265/C2263 Series Controller Software for Asia Pacific Version: Controller ROM Ver. 1.101.12   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2012-01-312017-02-02 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + AssetCentral 4.0.0 consist of AssetXplorer (v5.0) and AssetCentral Server (v4.0)   +
+ +
+ + + + + + +
+
+ Authentic Venture Sdn Bhd + + +   + + 2012-01-162019-09-01 + + + EAL1 + + + MY – CyberSecurity Malaysia
MY
+
+ + Metastorm BPM 9.0   +
+ +
+ + + + + + +
+
+ Metastorm, Inc. + + +   + + 2012-01-102014-11-01 + + + EAL4+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Digital Tachograph EFAS-4.0 Version 02   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2012-09-17 – Digital Tachograph EFAS-4.0 Version 02.01
    + Maintenance Report + +
  2. + +
    +
  3. + 2012-09-17 – Digital Tachograph EFAS-4.1 Version 02.01
    + Maintenance Report + +
  4. + +
    +
  5. + 2012-12-20 – Digital Tachograph EFAS-4.0 Version 02.10
    + Maintenance Report + +
  6. + +
    +
  7. + 2012-12-20 – Digital Tachograph EFAS-4.1 Version 02.10
    + Maintenance Report + +
  8. + +
    +
  9. + 2013-06-04 – Digital Tachograph EFAS-4.0 Version 02.10
    + Maintenance Report + +
  10. + +
    +
  11. + 2013-06-04 – Digital Tachograph EFAS-4.1 Version 02.10
    + Maintenance Report + +
  12. + +
    +
  13. + 2013-10-02 – Digital Tachograph EFAS-4.0 Version 02.15
    + Maintenance Report + +
  14. + +
    +
  15. + 2013-10-02 – Digital Tachograph EFAS-4.1 Version 02.15
    + Maintenance Report + +
  16. + +
    +
  17. + 2013-10-02 – Digital Tachograph EFAS-4.2 Version 02.15
    + Maintenance Report + +
  18. + +
    +
  19. + 2014-01-31 – Digital Tachograph EFAS-4.0, 4.1 and 4.2 Version 02.15
    + Maintenance Report + +
  20. + +
+
+ + +
+
+ intellic GmbH + + +   + + 2012-01-092019-09-01 + + + EAL4+ +
ATE_DPT.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + EMC VPLEX with GeoSynchrony version 5.0   +
+ +
+ + + + + + +
+
+ EMC Corporation + + +   + + 2012-01-092017-05-15 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Employee Express (EmplX) Security Module v1.0 (Build SVR 2.0)   +
+ +
+ + + + + + +
+
+ MYwave Sdn Bhd + + +   + + 2011-11-042019-09-01 + + + EAL2 + + + MY – CyberSecurity Malaysia
MY
+
+ + McAfee VirusScan Enterprise v8.8 and ePolicy Orchestrator v4.5   +
+ +
+ + + + + + +
+
+ McAfee, Inc. + + +   + + 2011-10-172014-11-01 + + + EAL2+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + RSA Archer eGRC Platform v5.0   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2013-10-18 – RSA Archer GRC Platform v5.3 SP1 (October 2013)
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ RSA, The Security Division of EMC + + +   + + 2011-10-132017-05-15 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Fuji Xerox ApeosPort-IV 5070/4070/3070 DocuCentre-IV 5070/4070 Series Controller Software for Asia Pacific Controller ROM Ver. 1.120.1   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2011-09-302016-10-03 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Fuji Xerox DocuCentre-IV 3060/2060 Series Controller Software Controller ROM Ver. 1.0.2   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2011-09-302016-10-03 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Fuji Xerox DocuCentre-IV 3065/3060/2060 Series Controller Software for Asia Pacific Controller ROM Ver. 1.100.2   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2011-09-302016-10-03 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Symantec™ Control Compliance Suite v10.5.1   +
+ +
+ + + + + + +
+
+ Symantec Corporation + + +   + + 2011-09-162017-05-15 + + + EAL3+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + bizhub 423 / bizhub 363 / bizhub 283 / bizhub 223 / bizhub 7828 / ineo 423 / ineo 363 / ineo 283 / ineo 223 / N607 / N606 / N605 Control Software Version: A1UD0Y0-0100-GM0-04   +
+ +
+ + + + + + +
+
+ Konica Minolta Business Technologies, Inc + + +   + + 2011-08-312016-09-01 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + bizhub C360 / bizhub C280 / bizhub C220 / bizhub C7728 / bizhub C7722 / ineo+ 360 / ineo+ 280 / ineo+ 220 / VarioLink 3622c / VarioLink 2822c / VarioLink 2222c / D407 / D406 / D405 Control Software Version: A0ED0Y0-0100-GM0-24   +
+ +
+ + + + + + +
+
+ Konica Minolta Business Technologies, Inc + + +   + + 2011-08-312016-09-01 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + bizhub C652 / bizhub C652DS / bizhub C552 / bizhub C552DS / bizhub C452 / ineo+ 652 / ineo+ 652DS / ineo+ 552 / ineo+ 452 / VarioLink 6522c / VarioLink 5522c / VarioLink 4522c Control Software Version: A0P00Y0-0100-GM0-24   +
+ +
+ + + + + + +
+
+ Konica Minolta Business Technologies, Inc + + +   + + 2011-08-312016-09-01 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + TASKalfa 3500i, TASKalfa 4500i, TASKalfa 5500i Data Security Kit (E) V1.00J   +
+ +
+ + + + + + +
+
+ KYOCERA MITA Corporation + + +   + + 2011-08-312016-09-01 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + TASKalfa 3500i, TASKalfa 4500i, TASKalfa 5500i, TASKalfa 3500iG, TASKalfa 4500iG, TASKalfa 5500iG, CS 3500i, CS 4500i, CS 5500i, CD 1435, CD 1445, CD 1455, DC 2435, DC 2445, DC 2455 Data Security Kit (E) V1.00E   +
+ +
+ + + + + + +
+
+ KYOCERA MITA Corporation + + +   + + 2011-08-312016-09-01 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + TASKalfa 6500i, TASKalfa 8000i Data Security Kit (E) V1.00J   +
+ +
+ + + + + + +
+
+ KYOCERA MITA Corporation + + +   + + 2011-08-312016-09-01 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + TASKalfa 6500i, TASKalfa 8000i, TASKalfa 6500iG, TASKalfa 8000iG, CS 6500i, CS 8000i, CD 1465, CD 1480, DC 2465, DC 2480 Data Security Kit (E) V1.00E   +
+ +
+ + + + + + +
+
+ KYOCERA MITA Corporation + + +   + + 2011-08-312016-09-01 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + TASKalfa 6550ci, TASKalfa 7550ci, TASKalfa 6550ciG, TASKalfa 7550ciG, CS 6550ci, CS 7550ci, CDC 1965, CDC 1970, DCC 2965, DCC 2970 Data Security Kit (E) V1.00E   +
+ +
+ + + + + + +
+
+ KYOCERA MITA Corporation + + +   + + 2011-08-312016-09-01 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + TASKalfa 6550ci, TASKalfa 7550ci Data Security Kit (E) V1.00J   +
+ +
+ + + + + + +
+
+ KYOCERA MITA Corporation + + +   + + 2011-08-152016-09-01 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + EMC® VNXe Operating Environment v2.0 with Unisphere™ running on VNXe Series hardware models VNXe3300 and VNXe3100   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2012-06-01 – EMC VNXe™ Operating Environment v2.3 with Unisphere™ running on VNXe Series hardware models VNXe3300™ and VNXe3100™
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ EMC Corporation + + +   + + 2011-08-092017-05-15 + + + EAL3+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + ATEN/IOGear Secure KVM Switch Series   + + + ATEN International Co., LTD + + +   + + 2011-07-012014-11-01 + + + EAL2+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + GL1 Computer Software Component of SkyView   +
+ +
+ + + + + + +
+
+ Thales Norway AS + + +   + + 2011-06-282019-09-01 + + + EAL4 + + + NO – SERTIT
NO
+
+ + Fuji Xerox ApeosPort-IV C4430 DocuCentre-IV C4430 Series Controller Software for Asia Pacific Controller ROM Ver. 1.101.2   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2011-06-232016-07-04 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Fuji Xerox ApeosPort-IV C7780/C6680/C5580 (G4 Model) Series Controller Software Controller ROM Ver. 1.40.7   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2011-06-232016-07-04 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Fuji Xerox ApeosPort-IV C7780/C6680/C5580 DocuCentre-IV C7780/C6680/C5580 Series Controller Software Controller ROM Ver. 1.0.7   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2011-06-232016-07-04 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Fuji Xerox ApeosPort-IV C7780/C6680/C5580 DocuCentre-IV C7780/C6680/C5580 Series Controller Software for Asia Pacific Controller ROM Ver. 1.101.7   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2011-06-232016-07-04 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Sistema de Gestión de Eventos (SIEM) Suite LogICA, versión 3.0-SP2 Patch11   +
+ +
+ + + + + + +
+
+ ICA Informática y Comunicaciones Avanzadas S.L. + + +   + + 2011-06-162019-09-01 + + + EAL2 + + + ES – Organismo de Certificación de la Seguridad de las Tecnologías de la Información
ES
+
+ + EMC RecoverPoint version 3.4   +
+ +
+ + + + + + +
+
+ EMC Corporation + + +   + + 2011-06-102017-05-15 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + bizhub 652 / bizhub 602 / bizhub 552 / bizhub 502 / ineo 652 / ineo 602 / ineo 552 / ineo 502 Control Software Version: A2WU0Y0-0100-GM0-00   +
+ +
+ + + + + + +
+
+ Konica Minolta Business Technologies, Inc + + +   + + 2011-05-302016-06-06 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + bizhub 652 / bizhub 602 / bizhub 552 / bizhub 502 PKI Card System Control Software Version: A2WU0Y0-0100-G00-F2pki   +
+ +
+ + + + + + +
+
+ Konica Minolta Business Technologies, Inc + + +   + + 2011-05-302016-06-06 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + EMC® VNX OE for Block v5.31 with Unisphere™ v7.0 running on VNX Series Hardware Model VNX5100™ and EMC® VNX OE for File v7.0 and VNX OE for Block v5.31 with Unisphere™ v7.0 running on VNX Series Hardware Models VNX5300™, VNX5500™, VNX5700™, and VNX7500™   +
+ +
+ + + + + + +
+
+ EMC Corporation + + +   + + 2011-05-302017-05-15 + + + EAL3+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + TASKalfa 3050ci, TASKalfa 3550ci, TASKalfa 4550ci, TASKalfa 5550ci Data Security Kit (E) V1.00J   +
+ +
+ + + + + + +
+
+ KYOCERA MITA Corporation + + +   + + 2011-05-302016-06-06 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + TASKalfa 3050ci, TASKalfa 3550ci, TASKalfa 4550ci, TASKalfa 5550ci, TASKalfa 3050ciG, TASKalfa 3550ciG, TASKalfa 4550ciG, TASKalfa 5550ciG, CS 3050ci, CS 3550ci, CS 4550ci, CS 5550ci, CDC 1930, CDC 1935, CDC 1945, CDC 1950, DCC 2930, DCC 2935, DCC 2945, DCC 2950 Data Security Kit (E) V1.00E   +
+ +
+ + + + + + +
+
+ KYOCERA MITA Corporation + + +   + + 2011-05-302016-06-06 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Envicomp Security System ESS Version 3.0   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2013-10-08 – Envicomp Security System ESS, Version 3.0
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ Envicomp Systemlogistik GmbH + + +   + + 2011-05-092019-09-01 + + + EAL1+ +
ASE_OBJ.2 +
ASE_REQ.2 +
ASE_SPD.1 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + VX 160 Router KVM Matrix Switch   +
+ +
+ + + + + + +
+
+ Thinklogical + + +   + + 2011-04-182019-09-01 + + + EAL4 + + + NO – SERTIT
NO
+
+ + VX 320 Router KVM Matrix Switch   +
+ +
+ + + + + + +
+
+ Thinklogical + + +   + + 2011-04-182019-09-01 + + + EAL4 + + + NO – SERTIT
NO
+
+ + VX 40 Router KVM Matrix Switch   +
+ +
+ + + + + + +
+
+ Thinklogical + + +   + + 2011-04-182019-09-01 + + + EAL4 + + + NO – SERTIT
NO
+
+ + Micardo V3.6 R1.0 Tachograph V2.0   +
+ +
+ + + + + + +
+
+ Sagem Orga GmbH + + +   + + 2011-04-072019-09-01 + + + EAL4+ +
ADO_IGS.2 +
ADV_IMP.2 +
ATE_DPT.2 +
AVA_VLA.4 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + NetIQ® AppManager™ 7.0.1   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2013-03-18 – NetIQ AppManager 8.0.2 (April 2013)
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ NetIQ, Incorporated + + +   + + 2011-04-042017-05-15 + + + EAL2 + + + CA – Canadian Common Criteria Scheme
CA
+
+ + NetIQ® Directory Resource Administrator™ 8.6   +
+ +
+ + + + + + +
+
+ NetIQ, Incorporated + + +   + + 2011-04-042017-05-15 + + + EAL2 + + + CA – Canadian Common Criteria Scheme
CA
+
+ + NetIQ® Group Policy Administrator™ 6.2   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2013-04-04 – NetIQ Group Policy Administrator 6.6 (April 2013)
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ NetIQ, Incorporated + + +   + + 2011-04-042017-05-15 + + + EAL2 + + + CA – Canadian Common Criteria Scheme
CA
+
+ + NetIQ® Security Manager™ 6.5.3   +
+ +
+ + + + + + +
+
+ NetIQ, Incorporated + + +   + + 2011-04-042017-05-15 + + + EAL3 + + + CA – Canadian Common Criteria Scheme
CA
+
+ + AppDetective Pro V5.8.0   +
+ +
+ + + + + + +
+
+ Application Security, Inc. + + +   + + 2011-03-312014-11-01 + + + EAL2+ +
ALC_FLR.2 +
AVA_MSU.1 +
+ + US – National Information Assurance Partnership
US
+
+ + Splunk 4.1.7   +
+ +
+ + + + + + +
+
+ Splunk, Inc. + + +   + + 2011-03-182014-11-01 + + + EAL2+ +
ALC_FLR.1 +
+ + US – National Information Assurance Partnership
US
+
+ + EMC® Symmetrix® VMAX™ Series with Enginuity™ Operating Environment 5875, Solutions Enabler 7.2.0 and Symmetrix Management Console 7.2.0   +
+ +
+ + + + + + +
+
+ EMC Corporation + + +   + + 2011-03-022017-05-15 + + + EAL2+ +
ALC_FLR.2 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Microsoft Exchange Server 2010 SP1 Enterprise (English) 64-bit   +
+ +
+ + + + + + +
+
+ Microsoft Corporation + + +   + + 2011-02-162017-07-13 + + + EAL4+ +
ALC_FLR.3 +
+ + AU – Australasian Certification Authority (ACA)
AU
+
+ + SAP NetWeaver Application Server Java 7.02 SP3 with Common Criteria Addendum (material no. 51039496)   +
+ +
+ + + + + + +
+
+ SAP AG + + +   + + 2011-02-082019-09-01 + + + EAL4+ +
ALC_FLR.1 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + MX-FR22 Version:C.10   +
+ +
+ + + + + + +
+
+ Sharp Corporation + + +   + + 2011-01-282016-02-01 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Secure Analogue and Digital KVM Switches - Adder models AVSD1002-XX, AVSD1004-XX, AVSV1002-XX, AVSV1004-XX, AVSC1102-XX, AVSC1104-XX   +
+ +
+ + + + + + +
+
+ Adder Technology Ltd + + +   + + 2011-01-042016-01-04 + + + EAL4+ +
ALC_FLR.2 +
ATE_DPT.2 +
+ + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + Secure Analogue and Digital KVM Switches - Black Box models SW2006A-USB-EAL, SW4006A-USB-EAL, SW2008A-USB-EAL, SW4008A-USB-EAL, SW2009A-USB-EAL, SW4009A-USB-EAL   +
+ +
+ + + + + + +
+
+ Black Box Corporation + + +   + + 2011-01-042016-01-04 + + + EAL4+ +
ALC_FLR.2 +
ATE_DPT.2 +
+ + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + Fuji Xerox ApeosPort-IV C5570/C4470/C3370/C3371/C2270, DocuCentre-IV C5570/C4470/C3370/C3371/C2270 Series Controller Software for Asia Pacific Controller ROM Ver. 1.103.0   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2010-12-212016-01-04 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Japan : bizhub PRESS C8000 Image Control Program, Overseas : bizhub PRESS C8000 Image Control Program Version: A1RF0Y0-00I1-G00-10   +
+ +
+ + + + + + +
+
+ KONICA MINOLTA, INC. + + +   + + 2010-11-162015-12-02 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + bizhub C360 / bizhub C280 / bizhub C220 PKI Card System Control Software Version: A0ED0Y0-0100-GM0-31   +
+ +
+ + + + + + +
+
+ Konica Minolta Business Technologies, Inc + + +   + + 2010-10-222015-11-04 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Procesa Engine v1.7.3   +
+ +
+ + + + + + +
+
+ Mnemo Evolution & Integrations Services S.A. + + +   + + 2010-10-012019-09-01 + + + EAL1+ +
ALC_FLR.1 +
ASE_SPD.1 +
ASE_REQ.2 +
ASE_OBJ.2 +
+ + ES – Organismo de Certificación de la Seguridad de las Tecnologías de la Información
ES
+
+ + bizhub C652 / bizhub C552 / bizhub C452 PKI Card System Control Software Version: A0P00Y0-0100-GM0-31   +
+ +
+ + + + + + +
+
+ Konica Minolta Business Technologies, Inc + + +   + + 2010-09-282015-10-01 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Data Security Kit (E) Software Type II V1.00E   +
+ +
+ + + + + + +
+
+ KYOCERA MITA Corporation + + +   + + 2010-09-282015-10-01 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Data Security Kit (E) Software Type II V1.00J   +
+ +
+ + + + + + +
+
+ KYOCERA MITA Corporation + + +   + + 2010-09-282015-10-01 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Data Security Kit (E) Software Type III V1.00E   +
+ +
+ + + + + + +
+
+ KYOCERA MITA Corporation + + +   + + 2010-09-282015-10-01 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Data Security Kit (E) Software Type III V1.00J   +
+ +
+ + + + + + +
+
+ KYOCERA MITA Corporation + + +   + + 2010-09-282015-10-01 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Data Security Kit (E) Software Type IV V1.00   +
+ +
+ + + + + + +
+
+ KYOCERA MITA Corporation + + +   + + 2010-09-282015-10-01 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Xacta IA Manager: Assessment Engine and Xacta IA Manager: Continuous Assessment, Version 4.0 Service Pack 8   +
+ +
+ + + + + + +
+
+ Telos Corporation + + +   + + 2010-09-162014-11-01 + + + EAL2 +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Microsoft Exchange Server 2010 Enterprise   +
+ +
+ + + + + + +
+
+ Microsoft Corporation + + +   + + 2010-09-152019-09-01 + + + EAL1+ +
ALC_FLR.3 +
+ + AU – Australasian Certification Authority (ACA)
AU
+
+ + bizhub 423 / bizhub 363 / bizhub 283 / bizhub 223 / bizhub 7828 / ineo 423 / ineo 363 / ineo 283 / ineo 223 Control Software, Version A1UD0Y0-0100-GM0-00   +
+ +
+ + + + + + +
+
+ Konica Minolta Business Technologies, Inc + + +   + + 2010-08-312015-09-01 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + bizhub 423 / bizhub 363 / bizhub 283 / bizhub 223 PKI Card System Control Software, Version A1UD0Y0-0100-G00-20   +
+ +
+ + + + + + +
+
+ Konica Minolta Business Technologies, Inc + + +   + + 2010-08-312015-09-01 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Cisco Wide Area Application Services Version 4.0, Wide Area Application Engine (WAE) 512, 612, 674, 7341, 7371 and WAE Network Module [NME-WAE] NME-WAE-502 and NME-WAE-522   +
+ +
+ + + + + + +
+
+ Cisco Systems, Inc. + + +   + + 2010-08-312014-11-01 + + + EAL4+ +
ALC_FLR.3 +
+ + US – National Information Assurance Partnership
US
+
+ + Data Security Kit (E) Software Type I V1.00   +
+ +
+ + + + + + +
+
+ KYOCERA MITA Corporation + + +   + + 2010-08-312015-09-01 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Sipera Systems UC-Sec v4.0   +
+ +
+ + + + + + +
+
+ Sipera Systems, Inc. + + +   + + 2010-08-112015-08-11 + + + EAL3+ +
ALC_FLR.2 +
+ + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + TIBCO ActiveMatrix BusinessWorks Release 5.8   +
+ +
+ + + + + + +
+
+ TIBCO Software Inc. + + +   + + 2010-07-302014-11-01 + + + EAL2+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Noggin OCA Incident Manager v 1.1   +
+ +
+ + + + + + +
+
+ Noggin Pty Ltd + + +   + + 2010-07-022019-09-01 + + + EAL2+ +
ALC_FLR.1 +
+ + AU – Australasian Certification Authority (ACA)
AU
+
+ + Gefäßidentifikationssystem Gassner GWBIS 1.50   + + + GASSNER Wiege- und Messtechnik GmbH + + +   + + 2010-06-292019-09-01 + + + EAL1+ +
ASE_OBJ.2 +
ASE_REQ.2 +
ASE_SPD.1 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Software "Backoffice v. 2.0" incluso nella scheda di gioco ELSY J0P001 MAYAN TEMPLE   +
+ +
+ + + + + + +
+
+ Electro System S.p.A. + + +   + + 2010-06-252019-09-01 + + + EAL1+ +
ALC_DEL.1 +
+ + IT – OCSI - Organismo di Certificazione della Sicurezza Informatica
IT
+
+ + Software "Backoffice v. 3.0" incluso nella scheda di gioco ELSY J0D001 VAMPIRE   +
+ +
+ + + + + + +
+
+ Electro System S.p.A. + + +   + + 2010-06-252019-09-01 + + + EAL1+ +
ALC_DEL.1 +
+ + IT – OCSI - Organismo di Certificazione della Sicurezza Informatica
IT
+
+ + Software "Backoffice v. 4.0" incluso nella scheda di gioco ELSY J0H001 ISOLA DEL TESORO   +
+ +
+ + + + + + +
+
+ Electro System S.p.A. + + +   + + 2010-06-252019-09-01 + + + EAL1+ +
ALC_DEL.1 +
+ + IT – OCSI - Organismo di Certificazione della Sicurezza Informatica
IT
+
+ + Software "Backoffice v. 5.0" incluso nella scheda di gioco ELSY J0E001 BLACK KILLER   +
+ +
+ + + + + + +
+
+ Electro System S.p.A. + + +   + + 2010-06-252019-09-01 + + + EAL1+ +
ALC_DEL.1 +
+ + IT – OCSI - Organismo di Certificazione della Sicurezza Informatica
IT
+
+ + MX-FR15 Version C.10   +
+ +
+ + + + + + +
+
+ Sharp Corporation + + +   + + 2010-05-262015-06-02 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Software "Backoffice v. 1.0" incluso nella scheda di gioco ELSY J0A001 DIAMOND   +
+ +
+ + + + + + +
+
+ Electro System S.p.A. + + +   + + 2010-05-202019-09-01 + + + EAL1+ +
ALC_DEL.1 +
+ + IT – OCSI - Organismo di Certificazione della Sicurezza Informatica
IT
+
+ + Thales Trusted Security Filter TSF101   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2014-01-17 – Thales Trusted Security Filter TSF101
    + Maintenance Report + + Maintenance ST + +
  2. + +
    +
  3. + 2016-01-20 – Thales Trusted Security Filter TSF101 Maintenance
    + Maintenance Report + + Maintenance ST + +
  4. + +
+
+ + +
+
+ Thales Norway AS + + +   + + 2010-05-032019-09-01 + + + EAL5+ +
ALC_FLR.3 +
+ + NO – SERTIT
NO
+
+ + Fuji Xerox DocuCentre-IV C2260 Series Controller Software for Asia Pacific Version:Controller ROM Ver. 1.120.28   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2010-04-192015-05-06 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Netviewer one2oneTS Version 5.1   +
+ +
+ + + + + + +
+
+ Netviewer AG + + +   + + 2010-03-312019-09-01 + + + EAL2 + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Netviewer one2oneTS Version 5.1   +
+ +
+ + + + + + +
+
+ Netviewer AG + + +   + + 2010-03-312019-09-01 + + + EAL2 + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + imagio Security Card Type 7 Software 1.01x (Japanese name), DataOverwriteSecurity Unit Type H Software 1.01x (English name)   +
+ +
+ + + + + + +
+
+ Ricoh Company, Ltd. + + +   + + 2010-03-292015-04-01 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + imagio Security Card Type 9 Software 1.01m (Japanese name), DataOverwriteSecurity Unit Type I Software 1.01m (English name)   +
+ +
+ + + + + + +
+
+ Ricoh Company, Ltd. + + +   + + 2010-03-292019-09-01 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Thales Operator Terminal Adapter (OTA)   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2010-09-29 – Thales Operator Terminal Adapter (OTA)
    + Maintenance Report + + Maintenance ST + +
  2. + +
    +
  3. + 2011-11-07 – Thales Operator Terminal Adapter (OTA)
    + Maintenance Report + + Maintenance ST + +
  4. + +
    +
  5. + 2013-11-20 – Thales Operator Terminal Adapter (OTA)
    + Maintenance Report + + Maintenance ST + +
  6. + +
    +
  7. + 2014-04-29 – Thales Operator Terminal Adapter (OTA)
    + Maintenance Report + + Maintenance ST + +
  8. + +
    +
  9. + 2015-07-02 – Thales Operator Terminal Adapter (OTA)
    + Maintenance Report + + Maintenance ST + +
  10. + +
+
+ + +
+
+ Thales Norway AS + + +   + + 2010-03-242019-09-01 + + + EAL5+ +
ALC_FLR.3 +
+ + NO – SERTIT
NO
+
+ + BlackBerry® Device Software 5.0.0   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2010-10-07 – BlackBerry® Device Software 5.0.0
    + Maintenance Report + +
  2. + +
    +
  3. + 2011-03-09 – BlackBerry® Device Software 6.0.0
    + Maintenance Report + +
  4. + +
    +
  5. + 2011-04-26 – BlackBerry® Device Software 6.0.0
    + Maintenance Report + + Maintenance ST + +
  6. + +
    +
  7. + 2011-10-04 – BlackBerry® Device Software 7.0.0
    + Maintenance Report + +
  8. + +
    +
  9. + 2012-01-11 – BlackBerry® Device Software 7.0.0
    + Maintenance Report + +
  10. + +
    +
  11. + 2012-03-09 – BlackBerry® Device Software 7.1.0
    + Maintenance Report + +
  12. + +
+
+ + +
+
+ Research In Motion Limited + + +   + + 2010-03-122015-09-28 + + + EAL4+ +
ALC_FLR.1 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + BlackBerry® Enterprise Server Version 5.0.0   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2010-03-24 – BlackBerry® Enterprise Server 5.0.1
    + Maintenance Report + +
  2. + +
    +
  3. + 2010-08-16 – BlackBerry® Enterprise Server 5.0.2 (July 2010)
    + Maintenance Report + +
  4. + +
    +
  5. + 2011-03-25 – RIM BlackBerry® Enterprise Server Version 5.0.3
    + Maintenance Report + +
  6. + +
+
+ + +
+
+ Research In Motion Limited + + +   + + 2010-03-122015-09-28 + + + EAL4+ +
ALC_FLR.1 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + Fuji Xerox DocuCentre-IV C2260 Series Controller Software Controller ROM Ver. 1.0.25   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2010-03-122015-03-31 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Fort Fox Hardware Data Diode   +
+ +
+ + + + + + +
+
+ Fox-IT B.V. + + +   + + 2010-03-032019-09-01 + + + EAL4+ + + + NO – SERTIT
NO
+
+ + Altair PBS Professional Version 10.1   +
+ +
+ + + + + + +
+
+ Altair Engineering, Inc. + + +   + + 2010-02-232019-09-01 + + + EAL3+ + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + X0mail   +
+ +
+ + + + + + +
+
+ Thales Norway AS + + +   + + 2010-02-232019-09-01 + + + EAL4 + + + NO – SERTIT
NO
+
+ + XOmail   +
+ +
+ + + + + + +
+
+ Thales Norway AS + + +   + + 2010-02-232019-09-01 + + + EAL4 + + + NO – SERTIT
NO
+
+ + EMC® CLARiiON® FLARE v4.29 with Navisphere v6.29 running on CX4 Series Storage Systems   +
+ +
+ + + + + + +
+
+ EMC Corporation + + +   + + 2010-02-152015-09-29 + + + EAL2+ + + + CA – Canadian Common Criteria Scheme
CA
+
+ + 1E Power and Patch Management Pack including WakeUp and NightWatchman Version 5.6 running on multiple platforms   +
+ +
+ + + + + + +
+
+ 1E Ltd + + +   + + 2009-12-182014-12-18 + + + EAL2 + + + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + bizhub C652 / bizhub C552 / bizhub C452 / ineo+ 652 / ineo+ 552 / ineo+ 452 / VarioLink 6522c / VarioLink 5522c / VarioLink 4522c Control Software Version:A0P00Y0-0100-GM0-12   +
+ +
+ + + + + + +
+
+ Konica Minolta Business Technologies, Inc + + +   + + 2009-11-302011-04-21 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Microsoft Exchange Server 2007 Enterprise Edition (English), Version/Build 08.02.0176.002   +
+ +
+ + + + + + +
+
+ Microsoft Corporation + + +   + + 2009-11-162019-09-01 + + + EAL4+ + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Océ PRISMAsync 11.9.75.55 as used in the Océ VarioPrint 41x0 Release 1.3   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2010-01-20 – Océ PRISMAsync 11.9.81.15 as used in the Océ VarioPrint 4110/4120 Release 2.1
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ Océ N.V. + + +   + + 2009-11-132019-09-01 + + + EAL2+ + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + MX-FR13 Version:C.10   +
+ +
+ + + + + + +
+
+ Sharp Corporation + + +   + + 2009-10-232014-10-27 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Fuji Xerox ApeosPort-IV C5570/C4470/C3370/C2270 DocuCentre-IV C5570/C4470/C3370/C2270 Series Controller Software Version:Controller ROM Ver.1.0.6   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2009-10-152014-10-27 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Primavera P6 v6.2   +
+ +
+ + + + + + +
+
+ Primavera Systems Inc. + + +   + + 2009-08-252014-05-08 + + + EAL4 + + + US – National Information Assurance Partnership
US
+
+ + bizhub 350 / bizhub 250 / bizhub 200 / bizhub 362 / bizhub 282 / bizhub 222 / ineo 362 / ineo 282 / ineo 222 / VarioLink 3621 / VarioLink 2821 / VarioLink 2221 Control Software Version:A11U-0100-G10-06   +
+ +
+ + + + + + +
+
+ Konica Minolta Business Technologies, Inc + + +   + + 2009-08-212014-08-28 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + MetaMatrix Enterprise Data Services Platform V5.5.3   +
+ +
+ + + + + + +
+
+ Red Hat, Inc. + + +   + + 2009-08-182014-05-08 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + bizhub C253 / bizhub C203 PKI Card System Control Software Version:A02E0Y0-0100-GN0-U4   +
+ +
+ + + + + + +
+
+ Konica Minolta Business Technologies, Inc + + +   + + 2009-08-172014-08-28 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + bizhub C353 PKI Card System Control Software Version:A02E0Y0-0100-GM0-U4   +
+ +
+ + + + + + +
+
+ Konica Minolta Business Technologies, Inc + + +   + + 2009-08-172014-08-28 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + MX-FR10 Version:C.10   +
+ +
+ + + + + + +
+
+ Sharp Corporation + + +   + + 2009-07-272014-07-31 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + MX-FR11 Version:C.10   +
+ +
+ + + + + + +
+
+ Sharp Corporation + + +   + + 2009-07-272014-07-31 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + PP-100N Security control unit Version 1.00   +
+ +
+ + + + + + +
+
+ SEIKO EPSON CORPORATION + + +   + + 2009-07-272014-07-31 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + bizhub 501 / bizhub 421 / bizhub 361 / ineo 501/ ineo 421 / ineo 361 / VarioLink 5022 / VarioLink 4222 / VarioLink 3622 Control Software Version:A0R50Y0-0100-G00-20 (System Controller) A0R50Y0-1D00-G00-11 (BIOS Controller)   +
+ +
+ + + + + + +
+
+ Konica Minolta Business Technologies, Inc + + +   + + 2009-07-152014-07-31 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + bizhub PRO 1200 / 1200P / 1051 Control Software Image Control Program( Image Control I1):00I1-G00-10 Controller Control Program(IC Controller P):00P1-G00-10   +
+ +
+ + + + + + +
+
+ Konica Minolta Business Technologies, Inc + + +   + + 2009-07-152014-07-31 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Oracle Business Intelligence Enterprise Edition Release 10.1.3   +
+ +
+ + + + + + +
+
+ Oracle Corporation UK Limited + + +   + + 2009-06-302014-06-30 + + + EAL3 + + + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + Canon MFP Security Chip Version: 2.00   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2010-07-29 – Canon MFP Security Chip Version: 2.00
    + Maintenance Report + +
  2. + +
    +
  3. + 2011-03-29 – Canon MFP Security Chip Version: 2.01
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ Canon Inc. + + +   + + 2009-06-172014-06-30 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Tivoli Provisioning Manager (TPM) Version 5.1.1.1 Interim Fix 6   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2009-05-202019-09-01 + + + EAL3+ +
ALC_FLR.1 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + JBoss Enterprise Application Platform Version 4.3 CP03   +
+ +
+ + + + + + +
+
+ Red Hat, Inc. + + +   + + 2009-05-112019-09-01 + + + EAL2+ +
ALC_FLR.3 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Oracle AquaLogic BPM Suite Version 6.0 MP4(Build 95902)   +
+ +
+ + + + + + +
+
+ Oracle Corporation UK Limited + + +   + + 2009-05-042012-07-20 + + + EAL2+ +
ALC_FLR.1 +
+ + US – National Information Assurance Partnership
US
+
+ + bizhub PRO 950 Control Software Image Control Program(Image Control I1):00I1-G00-10 Controller Control Program(IC Controller P):00P1-G00-11   +
+ +
+ + + + + + +
+
+ Konica Minolta Business Technologies, Inc + + +   + + 2009-04-212014-04-28 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Cybex SwitchView SC Series Switches (Models SC420 (part number 520-753-502), SC440 (part number 520-721-502), and SC540 (part number 520-728-502)   + + + Avocent Corporation + + +   + + 2009-04-212012-07-20 + + + EAL2+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Secure Switching Unit Version D with firmware Version 4.1   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2012-05-11 – Secure Switching Unit Version D with firmware Version 4.1
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ DiCon Fiberoptics + + +   + + 2009-04-212012-07-20 + + + EAL4+ +
AVA_CCA.1 +
AVA_VLA.3 +
+ + US – National Information Assurance Partnership
US
+
+ + SwitchView SC Series Switches (Models SC420 (part number 520-753-601), SC440 (part number 520-721-601), and SC540 (part number 520-728-501)   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2009-09-25 – Cybex SwitchView SC Series Switches for models SC420 (part number 520-753-503), SC440 (part number 520-721-503) and SC540 (part number 520-728-503) with revised firmware
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Avocent Corporation + + +   + + 2009-04-212012-07-20 + + + EAL4+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + SISTEMA RFID PARA CONTENEDORES V1.0   +
+ +
+ + + + + + +
+
+ Distromel, S.A. + + +   + + 2009-04-172019-09-01 + + + EAL1 + + + ES – Organismo de Certificación de la Seguridad de las Tecnologías de la Información
ES
+
+ + IBM Tivoli Security Operations Manager 4.1.1   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2009-04-132012-07-20 + + + EAL3 + + + US – National Information Assurance Partnership
US
+
+ + Avaya VoIP PBX System based on the Communication Manager 5.1   +
+ +
+ + + + + + +
+
+ Avaya GmbH & Co. KG + + +   + + 2009-03-272019-09-01 + + + EAL1+ +
ASE_OBJ.2 +
ASE_REQ.2 +
ASE_SPD.1 +
ADV_FSP.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + bizhub 751 / bizhub 601 / ineo 751 / ineo 601 / VarioLink 7522 / VarioLink 6022 Control Software   +
+ +
+ + + + + + +
+
+ Konica Minolta Business Technologies, Inc + + +   + + 2009-03-132014-04-08 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Océ Digital Access Controller (DAC) R10.1.5 for use in the Océ VarioPrint 1055, 1055 BC, 1055 DP, 1065, 1075, 2062, 2075, 2075 DP printer/copier/scanner products   +
+ +
+ + + + + + +
+
+ Océ N.V. + + +   + + 2009-02-202019-09-01 + + + EAL2+ +
ALC_FLR.1 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Belkin OmniView Secure DVI Dual-Link 2-port (F1DN102D) or 4-port (F1DN104D) KVM Switch   +
+ +
+ + + + + + +
+
+ Belkin International, Inc. + + +   + + 2009-02-112012-07-20 + + + EAL4+ +
ALC_FLR.3 +
+ + US – National Information Assurance Partnership
US
+
+ + XFER Service V 2.0.1   +
+ +
+ + + + + + +
+
+ Norwegian Defence Communication and Information Services Division + + +   + + 2009-02-042019-09-01 + + + EAL4 + + + NO – SERTIT
NO
+
+ + BITACORA v4.0.2   +
+ +
+ + + + + + +
+
+ S21SEC + + +   + + 2008-12-292019-09-01 + + + EAL2 + + + ES – Organismo de Certificación de la Seguridad de las Tecnologías de la Información
ES
+
+ + Canon iR3225/iR3230/iR3235/iR3245 Series HDD Data Erase Kit-B2 Version 1.00   +
+ +
+ + + + + + +
+
+ Canon Inc. + + +   + + 2008-12-242014-04-08 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + IBM Logical Partition Architecture for Power6 operating on IBM Power Systems hardware (models E8A, MMA, and FHA)   +
+ +
+ + + + + + +
+
+ IBM Internet Security Systems, Inc. + + +   + + 2008-11-262012-07-20 + + + EAL4+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + bizhub 501 / bizhub 421 / bizhub 361 / ineo 501/ ineo 421 / ineo 361 Control Software Version: A0R50Y0-0100-G00-11 (System Controller), A0R50Y0-1D00-G00-10 (BIOS Controller)   +
+ +
+ + + + + + +
+
+ Konica Minolta Business Technologies, Inc + + +   + + 2008-10-302013-12-09 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + IBM Proventia Network Enterprise Scanner and IBM SiteProtector   +
+ +
+ + + + + + +
+
+ IBM Internet Security Systems, Inc. + + +   + + 2008-10-102012-07-20 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + Canon MFP Security Chip Version 1.50   +
+ +
+ + + + + + +
+
+ Canon Inc. + + +   + + 2008-09-242013-10-07 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Océ Smart Imager 10.3.5.68 as used in the Océ VarioPrint 21x0 Release 4.1   +
+ +
+ + + + + + +
+
+ Océ N.V. + + +   + + 2008-08-192019-09-01 + + + EAL2+ +
ALC_FLR.1 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + EpsonNet ID Print Authentication Print Module Version: 1.5bE   +
+ +
+ + + + + + +
+
+ SEIKO EPSON CORPORATION + + +   + + 2008-08-122013-10-07 + + + EAL2 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + VoiceIdent Unit 2.0   +
+ +
+ + + + + + +
+
+ Deutsche Telekom AG / T-COM + + +   + + 2008-07-082019-09-01 + + + EAL2+ +
ADV_SPM.1 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Digitaler Tachograph EFAS-3 V01   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2009-04-08 – Digital Tachograph EFAS-3 V01.02
    + Maintenance Report + +
  2. + +
    +
  3. + 2010-05-19 – Digital Tachograph EFAS-3 V01.03
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ Efkon + + +   + + 2008-06-192019-09-01 + + + EAL4+ +
ADV_IMP.2 +
ATE_DPT.2 +
ADO_IGS.2 +
AVA_VLA.4 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + IBM WebSphere Message Broker Version 6.0.0.3   +
+ +
+ + + + + + +
+
+ IBM Informationssysteme Deutschland GmbH + + +   + + 2008-06-132019-09-01 + + + EAL4+ +
ALC_FLR.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + MX-FRX9 Version M.10   +
+ +
+ + + + + + +
+
+ Sharp Corporation + + +   + + 2008-05-302013-10-07 + + + EAL3+ +
ADV_SPM.1 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + MAWIS Rev 3.0   +
+ +
+ + + + + + +
+
+ MOBA Mobile Automation AG + + +   + + 2008-05-162019-09-01 + + + EAL1 + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Secure Mail (IronMail) Software Version 6.7HF2   +
+ +
+ + + + + + +
+
+ Secure Computing Corporation + + +   + + 2008-04-292012-07-20 + + + EAL2+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + NEC Group Secure Information Exchange Site Version 1.0   +
+ +
+ + + + + + +
+
+ NEC Corporation + + +   + + 2008-04-252013-10-07 + + + EAL1+ +
ASE_OBJ.2 +
ASE_REQ.2 +
ASE_SPD.1 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Essentris Clinical Information System Release 1.4   +
+ +
+ + + + + + +
+
+ CliniComp International, Inc. + + +   + + 2008-04-112015-09-29 + + + EAL3 + + + CA – Canadian Common Criteria Scheme
CA
+
+ + bizhub C353P / ineo+ 353P Control Software version A02E0Y0-100_GM012   +
+ +
+ + + + + + +
+
+ Konica Minolta Business Technologies, Inc + + +   + + 2008-03-262013-10-07 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + magicolor 8650 Control Software Version A02E0Y0-0100-GP0-12   +
+ +
+ + + + + + +
+
+ Konica Minolta Business Technologies, Inc + + +   + + 2008-03-262013-10-07 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + DataOverwriteSecurity Unit Type H Software Version: 1.01x   +
+ +
+ + + + + + +
+
+ Ricoh Company, Ltd. + + +   + + 2008-02-282013-10-07 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + DataOverwriteSecurity Unit Type I Software Version: 1.01m   +
+ +
+ + + + + + +
+
+ Ricoh Company, Ltd. + + +   + + 2008-02-282013-10-07 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Cybex SwitchView SC Series Switches   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2008-12-08 – Cybex SwitchView SC Series Switches Adding part number 520-747-501
    + Maintenance Report + +
  2. + +
    +
  3. + 2009-02-19 – Cybex SwitchView SC Series Switches Adding part number 520-456-508
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ Avocent Corporation + + +   + + 2008-01-302012-07-20 + + + EAL4+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Veridat Ident, Volumen, Verwiegung 4.0   +
+ +
+ + + + + + +
+
+ Veridat Eurotech GmbH + + +   + + 2008-01-252019-09-01 + + + EAL1 + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + EMC® Disk Library v3.1   +
+ +
+ + + + + + +
+
+ EMC Corporation + + +   + + 2008-01-222015-09-29 + + + EAL2 + + + CA – Canadian Common Criteria Scheme
CA
+
+ + Canon iR3025/iR3030/iR3035/iR3045 Series HDD Data Erase Kit-B1 Version: 1.00   +
+ +
+ + + + + + +
+
+ Canon Inc. + + +   + + 2007-12-262013-10-07 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + NEC Groups Information Leakage Prevention System Version: 1.0   +
+ +
+ + + + + + +
+
+ NEC Corporation + + +   + + 2007-12-262013-10-07 + + + EAL1+ +
ASE_OBJ.2 +
ASE_REQ.2 +
ASE_SPD.1 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Knowledge Center Suite Version 6.5 with Service Pack 4   +
+ +
+ + + + + + +
+
+ Supportsoft, Inc. + + +   + + 2007-12-212009-12-21 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + McAfee Foundstone 5.0.4   +
+ +
+ + + + + + +
+
+ McAfee, Inc. + + +   + + 2007-12-072012-07-20 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + AR-FR24 VERSION M.10   +
+ +
+ + + + + + +
+
+ Sharp Corporation + + +   + + 2007-11-162013-10-07 + + + EAL3+ +
ADV_SPM.1 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + AR-FR25 VERSION M.10   +
+ +
+ + + + + + +
+
+ Sharp Corporation + + +   + + 2007-11-162013-10-07 + + + EAL3+ +
ADV_SPM.1 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + EMC ControlCenter® 5.2 Service Pack 5   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2008-09-01 – EMC ControlCenter® 6.1
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ EMC Corporation + + +   + + 2007-11-132015-09-29 + + + EAL2+ +
ALC_FLR.1 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + EMC® Symmetrix® Access Control, Enginuity™ 5771 with EMC® Solutions Enabler 6.3   +
+ +
+ + + + + + +
+
+ EMC Corporation + + +   + + 2007-11-132015-09-29 + + + EAL2+ +
ALC_FLR.1 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + IBM Logical Partition Architecture for Power6   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2007-11-072012-07-20 + + + EAL4+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Trusted Security Filter - TSF 101   +
+ +
+ + + + + + +
+
+ Thales Norway AS + + +   + + 2007-11-012019-09-01 + + + EAL5 + + + NO – SERTIT
NO
+
+ + c-ident, Version 1.0   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2008-01-23 – Gefäßidentifikationssystem c-ident Version 1.0, bestehend aus den Software-Komponenten IWS_BSI.OBJ Version 1.1 und c-secure.exe Version 1.1, sowie den dazugehörigen Transpondern
    + Maintenance Report + + Maintenance ST + +
  2. + +
    +
  3. + 2009-03-06 – Gefäßidentifikationssystem c-ident Version 1.0, bestehend aus den Software-Komponenten IWS_BSI.OBJ Version 1.1 und c-secure.exeVersion 1.1, sowie den dazugehörigen Transpondern
    + Maintenance Report + + Maintenance ST + +
  4. + +
+
+ + +
+
+ c-trace GmbH + + +   + + 2007-10-232019-09-01 + + + EAL1 + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + BEA WebLogic Integration V8.1 SP6 with BEA07-169.00 Security Advisory Patch   +
+ +
+ + + + + + +
+
+ BAE Systems, Inc. + + +   + + 2007-10-192012-07-20 + + + EAL2+ +
ALC_FLR.1 +
+ + US – National Information Assurance Partnership
US
+
+ + BEA WebLogic Platform V8.1 SP6 with BEA07-169.00 Security Advisory Patch   +
+ +
+ + + + + + +
+
+ BEA Systems, Inc. + + +   + + 2007-10-192012-07-20 + + + EAL2+ +
ALC_FLR.1 +
+ + US – National Information Assurance Partnership
US
+
+ + bizhub PRO C5500 / ineo+ 5500 Image Control Program A0E70Y0-00I1-G00-10   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2008-11-19 – bizhub PRO C5500/ineo+5500/bizhub PRO C5501/ ineo+5501 Image Control Program A0E70Y0-00I1-G00-41
    + Maintenance Report + +
  2. + +
    +
  3. + 2009-08-05 – bizhub PRO C5500/ineo+5500/bizhub PRO C5501/ ineo+5501 Image Control Program A0E70Y0-00I1-G00-60
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ Konica Minolta Business Technologies, Inc + + +   + + 2007-09-272013-10-07 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + EMC® CLARiiON® FLARE v3.24 with Navisphere v6.24 running on CX3 Series Storage Systems   +
+ +
+ + + + + + +
+
+ EMC Corporation + + +   + + 2007-09-252015-09-29 + + + EAL2+ +
ALC_FLR.1 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + V3Net for Windows server 6.0 and AhnLab Policy Center 3.0   +
+ +
+ + + + + + +
+
+ AhnLab, Inc. + + +   + + 2007-09-172019-06-01 + + + EAL4 + + + KR – IT Security Certification Center(ITSCC)
KR
+
+ + V3Pro2004 and AhnLab Policy Center 3.0   +
+ +
+ + + + + + +
+
+ AhnLab, Inc. + + +   + + 2007-09-172019-06-01 + + + EAL4 + + + KR – IT Security Certification Center(ITSCC)
KR
+
+ + BlackBerry® Enterprise Server Version 4.1.3   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2007-12-10 – BlackBerry® Enterprise Server Version 4.1.4
    + Maintenance Report + +
  2. + +
    +
  3. + 2008-05-22 – BlackBerry® Enterprise Server Version 4.1.4
    + Maintenance Report + +
  4. + +
    +
  5. + 2008-05-22 – BlackBerry® Enterprise Server Version 4.1.5
    + Maintenance Report + +
  6. + +
    +
  7. + 2008-09-22 – BlackBerry® Enterprise Server Version 4.1.43
    + Maintenance Report + +
  8. + +
+
+ + +
+
+ Research In Motion Limited + + +   + + 2007-09-122015-09-28 + + + EAL2+ +
ALC_FLR.1 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + BlackBerry® Wireless Handheld Software Version 4.1.0   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2007-12-10 – BlackBerry® Wireless Handheld Software Version 4.2.0
    + Maintenance Report + + Maintenance ST + +
  2. + +
    +
  3. + 2007-12-10 – BlackBerry® Wireless Handheld Software Version 4.2.1
    + Maintenance Report + +
  4. + +
    +
  5. + 2007-12-10 – BlackBerry® Wireless Handheld Software Version 4.2.2
    + Maintenance Report + +
  6. + +
    +
  7. + 2008-05-05 – BlackBerry® Wireless Handheld Software Version 4.3.0
    + Maintenance Report + +
  8. + +
    +
  9. + 2008-12-01 – BlackBerry® Wireless Handheld Software Version 4.2.2
    + Maintenance Report + +
  10. + +
    +
  11. + 2008-12-18 – BlackBerry® Smartphone Version 4.5.0
    + Maintenance Report + +
  12. + +
    +
  13. + 2008-12-18 – BlackBerry® Smartphone Version 4.6.0
    + Maintenance Report + +
  14. + +
    +
  15. + 2009-02-09 – BlackBerry® Smartphone Versions 4.6.1 and 4.7.0
    + Maintenance Report + +
  16. + +
    +
  17. + 2009-08-24 – BlackBerry® Smartphone Versions 4.6.1 and 4.7.1
    + Maintenance Report + +
  18. + +
+
+ + +
+
+ Research In Motion Limited + + +   + + 2007-09-122015-09-28 + + + EAL2+ +
ALC_FLR.1 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + EOS Original Data Security System Version 1.0   +
+ +
+ + + + + + +
+
+ Canon Inc. + + +   + + 2007-08-302011-07-01 + + + EAL2 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + NetIQ Security Manager 5.5   +
+ +
+ + + + + + +
+
+ NetIQ, Incorporated + + +   + + 2007-08-092012-09-07 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + IBM Global Security Kit Version 7.0.4.11   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2007-08-022012-09-06 + + + EAL4 + + + US – National Information Assurance Partnership
US
+
+ + Crypto Token USB TK01S1.47   +
+ +
+ + + + + + +
+
+ Datatech Sistemas Digitales Avanzados S.L. + + +   + + 2007-07-192019-09-01 + + + EAL3 + + + ES – Organismo de Certificación de la Seguridad de las Tecnologías de la Información
ES
+
+ + bizhub C250P / ineo+ 250P / magicolor 7460CK Control Software 4038-0100-GM0-11-000   +
+ +
+ + + + + + +
+
+ Konica Minolta Business Technologies, Inc + + +   + + 2007-06-272013-10-07 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + bizhub C252P / ineo+ 251P / magicolor 7465CK Control Software 4038-0100-GN0-03-000   +
+ +
+ + + + + + +
+
+ Konica Minolta Business Technologies, Inc + + +   + + 2007-06-272013-10-07 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + bizhub C352P / ineo+ 351P / magicolor 8460CK Control Software 9J06-0100-GM0-11-000   +
+ +
+ + + + + + +
+
+ Konica Minolta Business Technologies, Inc + + +   + + 2007-06-272013-10-07 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + HP Laser Jet M4345 MFP System Firmware Version 48.021.7, HP LaserJet M3027 MFP System Firmware Version 48.021.7A, HP LaserJet M3035 MFP system Firmware Version 48.021.7A, HP LaserJet M5025 MFP System Firmware Version 48.021.7A, HP LaserJet M5035 MFP System Firmware Version 48.021.7A, HP Color LaserJet 4730 MFP System Firmware 46.151.8   +
+ +
+ + + + + + +
+
+ Hewlett-Packard Company + + +   + + 2007-06-222012-09-06 + + + EAL3 + + + US – National Information Assurance Partnership
US
+
+ + McAfee VirusScan Enterprise v8.5i and McAfee ePolicy Orchestrator v3.6   + + + McAfee, Inc. + + +   + + 2007-06-222012-09-06 + + + EAL2+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + NitroSecurity Intrusion Prevention System v7.1.3   +
+ +
+ + + + + + +
+
+ NitroSecurity, Inc. + + +   + + 2007-06-112012-09-07 + + + EAL3+ + + + US – National Information Assurance Partnership
US
+
+ + CA Integrated Threat Management r.8.0.445   +
+ +
+ + + + + + +
+
+ CA Technologies + + +   + + 2007-06-102012-07-20 + + + EAL3 + + + US – National Information Assurance Partnership
US
+
+ + Belkin Omniview Secure KVM Models F1DN102U, F1DN104U, F1DN108U   +
+ +
+ + + + + + +
+
+ Belkin International, Inc. + + +   + + 2007-06-082012-09-06 + + + EAL4 + + + US – National Information Assurance Partnership
US
+
+ + Voltage SecureMail Suite 2.0   +
+ +
+ + + + + + +
+
+ Voltage Security + + +   + + 2007-05-292012-09-07 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + eEye Retina Network Security Scanner Version 5.4.21.53   +
+ +
+ + + + + + +
+
+ eEye Digital Security Corporation + + +   + + 2007-05-252012-09-06 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + McAfee Secure Content Management Appliance Version 4.0   +
+ +
+ + + + + + +
+
+ McAfee, Inc. + + +   + + 2007-05-182012-09-06 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + Océ SRA Controller, Version 3, Bundle 8.02   +
+ +
+ + + + + + +
+
+ Océ N.V. + + +   + + 2007-05-162019-09-01 + + + EAL3+ +
ALC_FLR.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Gentran Integration Suite (GIS) 4.2   +
+ +
+ + + + + + +
+
+ Sterling Commerce Inc. + + +   + + 2007-05-152015-09-29 + + + EAL2+ +
ALC_FLR.1 +
+ + CA – Canadian Common Criteria Scheme
CA
+
+ + OKI Color Page Printer C8800 Security Module DS 01.00   +
+ +
+ + + + + + +
+
+ OKI Data Corporation + + +   + + 2007-04-272013-10-07 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Microsoft Windows Server 2003 Certificate Server   +
+ +
+ + + + + + +
+
+ Microsoft Corporation + + +   + + 2007-04-012012-09-07 + + + EAL4+ +
ALC_FLR.3 +
AVA_VLA.4 +
+ + US – National Information Assurance Partnership
US
+
+ + bizhub PRO C6500 Gazou Seigyo Program Overseas: bizhub PRO C6500 Image Control Program A03U0Y0-00I1-G00-15   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2007-08-20 – bizhub PRO C6500 / bizhub PRO C6500P / ineo+6500 Gazou Seigyo Program Overseas: bizhub PRO C6500 / bizhub PRO C6500P / ineo+6500 Image Control Program A03U0Y0-00I1-G00-26
    + Maintenance Report + +
  2. + +
    +
  3. + 2008-11-19 – bizhub PRO C6500/bizhub PRO C6500P/ineo+6500/ bizhub PRO C6501/bizhub PRO C6501P/ineo+6501 Gazou Seigyo Program Overseas: bizhub PRO C6500/bizhub PRO C6500P/ineo+6500/ bizhub PRO C6501/bizhub PRO C6501P/ineo+6501 Image Control Program A03U0Y0-00I1-G00-41
    + Maintenance Report + +
  4. + +
    +
  5. + 2009-08-05 – bizhub PRO C6500/bizhub PRO C6500P/ineo+6500/bizhub PRO C6501/bizhub PRO C6501P/bizhub PRO C65hc/ineo+6501 Gazou Seigyo Program Overseas: bbizhub PRO C6500/bizhub PRO C6500P/ineo+6500/bizhub PRO C6501/bizhub PRO C6501P/bizhub PRO C65hc/ineo+6501 Image Control Program A03U0Y0-00I1-G00-60
    + Maintenance Report + +
  6. + +
+
+ + +
+
+ Konica Minolta Business Technologies, Inc + + +   + + 2007-03-222013-10-07 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + IBM WebSphere Application Server Network Deployment V6.1.0.2   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2007-03-162012-09-06 + + + EAL4+ +
ALC_FLR.1 +
+ + US – National Information Assurance Partnership
US
+
+ + IBM WebSphere Application Server V6.1.0.2   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2007-03-162012-09-06 + + + EAL4+ +
ALC_FLR.1 +
+ + US – National Information Assurance Partnership
US
+
+ + SecureWave Sanctuary Device Control Version 3.2   +
+ +
+ + + + + + +
+
+ Secure Wave + + +   + + 2007-03-162012-09-06 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + Hewlett Packard HP LaserJet 9040 MFP System Firmware Version 08.091.3, HP LaserJet 9050 MFP System Firmware Version 08.091.3, HP LaserJet 4345 MFP System Firmware Version 09.091.4, HP Color LaserJet CM4730 MFP System Firmware Version 50.021.4   +
+ +
+ + + + + + +
+
+ Hewlett-Packard Company + + +   + + 2007-02-282012-09-06 + + + EAL3 + + + US – National Information Assurance Partnership
US
+
+ + Data OverWriteSecurity Unit F Software 1.05   +
+ +
+ + + + + + +
+
+ Ricoh Company, Ltd. + + +   + + 2007-02-222013-10-07 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Fuji Xerox ApeosPort-II 4000/3000 Series Data Security Kit Controller ROM Ver1.40.17   +
+ +
+ + + + + + +
+
+ Fuji Xerox Co., Ltd. + + +   + + 2007-02-222013-10-07 + + + EAL2 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + IBM WebSphere Application Server for z/OS V6.1.0.2   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2007-02-162012-09-06 + + + EAL4+ +
ALC_FLR.1 +
+ + US – National Information Assurance Partnership
US
+
+ + IBM Tivoli License Compliance Manager, Version 2.2, Fix Pack 1   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2007-02-142019-09-01 + + + EAL2+ +
ALC_FLR.1 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Owl Computing Technologies Data Diode Network Interface Card Version 4   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2007-10-16 – Owl Computing Technologies Dual Diode Network Interface Card Version 6 for EAL4 Certification
    + Maintenance Report + +
  2. + +
    +
  3. + 2008-12-02 – Owl Computing Technologies DualDiode Network Interface Card Version 4 Revision B
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ Owl Computing Technologies, Inc. + + +   + + 2007-02-012012-09-07 + + + EAL4 + + + US – National Information Assurance Partnership
US
+
+ + eTrust Security Command Center r8 SP1 with_CR2 patch   +
+ +
+ + + + + + +
+
+ CA Technologies + + +   + + 2007-01-262016-04-05 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + Data Overwrite Security Unit Type C Software V0.04   +
+ +
+ + + + + + +
+
+ Ricoh Company, Ltd. + + +   + + 2007-01-242013-10-07 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Data Overwrite Security Unit Type D Software V0.03   +
+ +
+ + + + + + +
+
+ Ricoh Company, Ltd. + + +   + + 2007-01-242013-10-07 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Check Point Integrity Agent, version 6.5.063.145   +
+ +
+ + + + + + +
+
+ Check Point Software Technologies Ltd. + + +   + + 2007-01-112012-07-20 + + + EAL4+ +
ALC_FLR.2 +
AVA_VLA.3 +
+ + US – National Information Assurance Partnership
US
+
+ + ImageNow v5.42 SP3 and WebNow v3.42   +
+ +
+ + + + + + +
+
+ Perceptive Software, Inc. + + +   + + 2007-01-102012-09-07 + + + EAL2+ +
ALC_FLR.2 +
AVA_MSU.1 +
+ + US – National Information Assurance Partnership
US
+
+ + EOS-1D Mark II firmware Ver.1.0.1   +
+ +
+ + + + + + +
+
+ Canon Inc. + + +   + + 2007-01-012010-12-20 + + + EAL2+ +
ALC_DVS.1 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Océ Smart Imager 8.3.3.39 as used in the Océ VP 2090 R3.3   +
+ +
+ + + + + + +
+
+ Océ N.V. + + +   + + 2007-01-012019-09-01 + + + EAL2+ +
ALC_FLR.1 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + PR/SM LPAR for the IBM eServer zSeries z890 and z990   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2007-01-012019-09-01 + + + EAL5 + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + TIBCO Enterprise Message Service Version 4.3.0   +
+ +
+ + + + + + +
+
+ TIBCO Software Inc. + + +   + + 2006-12-312012-09-07 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + Sentinel from Novell Version 5.1.1   +
+ +
+ + + + + + +
+
+ Novell Inc. (Formerly e-Security Inc.) + + +   + + 2006-12-302012-09-07 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + Data Security Kit DA-SC02 V1.00   +
+ +
+ + + + + + +
+
+ Panasonic Communications Co., Ltd. + + +   + + 2006-12-152010-12-13 + + + EAL2 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + EUR Form Client 05-07   +
+ +
+ + + + + + +
+
+ Hitachi, Ltd. + + +   + + 2006-12-152010-12-28 + + + EAL2+ +
ALC_FLR.1 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Los Altos Technologies Unishred Pro Version 3.3.2   +
+ +
+ + + + + + +
+
+ Los Altos Technologies + + +   + + 2006-11-222012-09-06 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + Tenix Interactive Link Data Diode Device, Gigabit Variant, Version 3.0   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2007-12-13 – Interactive Link Data Diode Device (IL-DDD), F1D003, V3.1
    + Maintenance Report + +
  2. + +
    +
  3. + 2008-07-16 – P-8A Ruggedized Data Diode, Part F1D403, V1.0
    + Maintenance Report + +
  4. + +
    +
  5. + 2009-09-16 – Interactive Link Data Diode Device, Gigabit Variant Version 3.2
    + Maintenance Report + +
  6. + +
    +
  7. + 2009-09-16 – Interactive Link Data Diode Device, P-8A Ruggedized Data Diode, Part F1D403, V1.0, Build 1.0.4
    + Maintenance Report + +
  8. + +
    +
  9. + 2009-09-16 – Interactive Link Data Diode Device, P-8A Ruggedized Data Diode, Part F1D403, V1.0, Build 1.1.0
    + Maintenance Report + +
  10. + +
    +
  11. + 2010-03-24 – Interactive Link Data Diode Device, Gigabit Variant Version 3.3
    + Maintenance Report + +
  12. + +
+
+ + +
+
+ BAE SYSTEMS DATAGATE (formerly Tenix Datagate) + + +   + + 2006-11-162012-09-06 + + + EAL7+ + + + US – National Information Assurance Partnership
US
+
+ + SecureWave Sanctuary Application Control Desktop Version 2.8   +
+ +
+ + + + + + +
+
+ Secure Wave + + +   + + 2006-11-082012-09-06 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + Data Security Kit(D) Software V1.00E   +
+ +
+ + + + + + +
+
+ KYOCERA MITA Corporation + + +   + + 2006-10-312013-01-31 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Data Security Kit(D) Software V1.00J   +
+ +
+ + + + + + +
+
+ KYOCERA MITA Corporation + + +   + + 2006-10-312013-01-31 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Xceedium GateKeeper   +
+ +
+ + + + + + +
+
+ Xceedium, Inc. + + +   + + 2006-10-312012-09-07 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + Active TSM V3.0   +
+ +
+ + + + + + +
+
+ Oullim Inc. + + +   + + 2006-10-272019-06-01 + + + EAL4 + + + KR – IT Security Certification Center(ITSCC)
KR
+
+ + Océ Digital Access Controller (DAC) R9.1.6   +
+ +
+ + + + + + +
+
+ Océ N.V. + + +   + + 2006-10-262019-09-01 + + + EAL2+ +
ALC_FLR.1 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Metastorm e-work 6.6.1   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2008-01-16 – Metastorm BPM 7.5 SR1
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Metastorm, Inc. + + +   + + 2006-10-242012-09-07 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + HDD SecureD Version 1.6   +
+ +
+ + + + + + +
+
+ High Density Devices, AS + + +   + + 2006-10-182012-09-06 + + + EAL4+ +
AVA_VLA.3 +
+ + US – National Information Assurance Partnership
US
+
+ + EFI Fiery System 6 or 6e Secure Erase Options and EFI Fiery System 7 or 7e Secure Erase Option   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2007-10-16 – EFI Fiery System 8 or 8e Secure Erase Option and EFI Fiery System 8 or 8e Release 2 Secure Erase Option
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Electronics for Imaging, Inc. + + +   + + 2006-10-102012-09-06 + + + EAL3+ +
ALC_FLR.1 +
+ + US – National Information Assurance Partnership
US
+
+ + IBM WebSphere MQ 6.0.1.1   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2008-03-26 – WebSphere MQ version 6.0.2.2 Version 1.0
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ IBM United Kingdom Limited + + +   + + 2006-10-022012-09-06 + + + EAL4+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + SecureWave Sanctuary Application Control Custom Edition Version 2.8   +
+ +
+ + + + + + +
+
+ SecureWave + + +   + + 2006-09-112012-09-06 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + Gefäßidentifikationssystem BiTech bestehend aus den Software-Komponenten DE_BSI_M16_LIB Version 1.5 und DE_BSI_PC_DLL Version 1.5 sowie den dazugehörigen Transpondern   + + + deister electronic GmbH + + +   + + 2006-08-242019-09-01 + + + EAL1 + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + ABox 1.0   +
+ +
+ + + + + + +
+
+ T-Systems Enterprise Services GmbH + + +   + + 2006-08-142019-09-01 + + + EAL3 + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + LiveState Delivery v6.0.1   +
+ +
+ + + + + + +
+
+ Symantec Corporation + + +   + + 2006-08-012013-03-05 + + + EAL2 + + + UK – UK IT Security Evaluation and Certification Scheme
UK
+
+ + Canon MFP Security Chip 1.00   +
+ +
+ + + + + + +
+
+ Canon Inc. + + +   + + 2006-07-072013-10-07 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Carrier Access Broadmore 500, 1700, and 1750 Release 4.1.1   +
+ +
+ + + + + + +
+
+ Carrier Access Corporation + + +   + + 2006-06-262012-09-06 + + + EAL3 + + + US – National Information Assurance Partnership
US
+
+ + SecureInfo Risk Management System 3.2.06.12   +
+ +
+ + + + + + +
+
+ SecureInfo Corporation + + +   + + 2006-06-262012-09-07 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + Promia Intelligent Agent Security Manager, Version 1.2 (IASM)   +
+ +
+ + + + + + +
+
+ Promia Incorporated + + +   + + 2006-06-092012-09-07 + + + EAL3+ +
ALC_FLR.2 +
ALC_LCD.1 +
+ + US – National Information Assurance Partnership
US
+
+ + IBM WebSphere Application Server Version 6.0.2.3   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2006-05-222012-09-06 + + + EAL4+ +
ALC_FLR.1 +
+ + US – National Information Assurance Partnership
US
+
+ + ISS SiteProtector, Proventia A, Proventia G,and Network Sensor   +
+ +
+ + + + + + +
+
+ Internet Security Systems, Inc. + + +   + + 2006-05-162012-09-06 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + WebSphere Application Server 6.0   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2006-05-122016-04-05 + + + EAL4+ +
ALC_FLR.1 +
+ + US – National Information Assurance Partnership
US
+
+ + CipherTrust IronMail Secure Email Gateway Software Version 4.0.0   +
+ +
+ + + + + + +
+
+ CipherTrust, Inc. + + +   + + 2006-05-012012-09-06 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + BEA WebLogic Server 8.1 SP5   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2007-07-24 – BEA WebLogic Server 8.1 SP6
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ BEA Systems, Inc. + + +   + + 2006-04-282012-09-06 + + + EAL2+ +
ALC_FLR.1 +
+ + US – National Information Assurance Partnership
US
+
+ + BAE Military Message Handling System (MMHS) Filters version 1.1.1   +
+ +
+ + + + + + +
+
+ BAE Systems Information Technology + + +   + + 2006-04-242012-09-06 + + + EAL4 + + + US – National Information Assurance Partnership
US
+
+ + DEP/PCI Version 3.1 Host Security Module (Hardware & Software)   +
+ +
+ + + + + + +
+
+ Banksys N.V. + + +   + + 2006-04-102016-04-10 + + + EAL3+ +
ADV_FSP.2 +
ATE_FUN.1 +
+ + NL – NSCIB operated by
NL
+
+ + Platform LSF® HPC 6.2   +
+ +
+ + + + + + +
+
+ Platform computing Inc. + + +   + + 2006-04-042015-09-29 + + + EAL2 + + + CA – Canadian Common Criteria Scheme
CA
+
+ + Data Overwrite Security Unit Type C Software V0.04   +
+ +
+ + + + + + +
+
+ Ricoh Company, Ltd. + + +   + + 2006-03-292013-10-07 + + + EAL2 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Data Overwrite Security Unit Type D Software V0.03   +
+ +
+ + + + + + +
+
+ Ricoh Company, Ltd. + + +   + + 2006-03-292013-10-07 + + + EAL2 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + System Software for e-STUDIO202L/232/282 V1.0   +
+ +
+ + + + + + +
+
+ Toshiba TEC Corporation + + +   + + 2006-03-292010-12-10 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + System Software for e-STUDIO281c/351c/451c V1.0   +
+ +
+ + + + + + +
+
+ Toshiba TEC Corporation + + +   + + 2006-03-292013-02-15 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Lexmark Multifunction Printer (MFP) Controller Software Version 907.207b   +
+ +
+ + + + + + +
+
+ Lexmark International, Inc. + + +   + + 2006-02-232012-09-06 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + VPNConnect Version 1.2.650   +
+ +
+ + + + + + +
+
+ I-MOTION GmbH + + +   + + 2006-02-142019-09-01 + + + EAL2 + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + SigabaNet 2.2   +
+ +
+ + + + + + +
+
+ Secure Data In Motion, Inc.dba Sigaba + + +   + + 2006-02-072012-09-07 + + + EAL2+ +
ADV_SPM.1 +
+ + US – National Information Assurance Partnership
US
+
+ + eTrust Audit r8   +
+ +
+ + + + + + +
+
+ CA Technologies + + +   + + 2006-02-032016-04-05 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + Radware APSolute OS   +
+ +
+ + + + + + +
+
+ Radware + + +   + + 2006-02-032012-09-07 + + + EAL3 + + + US – National Information Assurance Partnership
US
+
+ + Océ Digital Access Controller R8.1.10   +
+ +
+ + + + + + +
+
+ Océ N.V. + + +   + + 2006-01-272019-09-01 + + + EAL2+ +
ALC_FLR.1 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + webMethods Fabric 6.5   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2006-05-22 – webMethods Fabric 6.5 Maintenance Release - May 06
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ webMethods, Inc. + + +   + + 2005-12-232012-09-07 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + IBM WebSphere Business Integration Message Broker, Version 5.0, Fix Pack 4   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2005-12-152012-09-06 + + + EAL3+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + DiamondTEK (DiamondCentral NSC (also sold as CC200) Application S/W Version 2.4.0.5, NSD-Prime F/W Version 2.4.0.3; and NSD (DiamondLink (also sold as CL100), DiamondPak (also sold as CP102, CP104, CP106), Diamond VPN (also sold as CV100); DiamondSAT   +
+ +
+ + + + + + +
+
+ Cryptek Inc. + + +   + + 2005-12-012012-09-07 + + + EAL4 + + + US – National Information Assurance Partnership
US
+
+ + Juniper Networks Secure Access Family Release 5.1R2   +
+ +
+ + + + + + +
+
+ Juniper Networks, Inc. + + +   + + 2005-12-012012-09-06 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + AR-FR22 VERSION S.10   +
+ +
+ + + + + + +
+
+ Sharp Corporation + + +   + + 2005-10-202013-10-07 + + + EAL3+ +
ADV_SPM.1 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Canon iR6570/iR5570 Series iR Security Kit-B3 Version 1.03   +
+ +
+ + + + + + +
+
+ Canon Inc. + + +   + + 2005-10-202013-10-07 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Mazu Profiler Blade System Version 5.0   +
+ +
+ + + + + + +
+
+ Mazu Networks Inc. + + +   + + 2005-10-102012-09-06 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + Canon iR4570/iR3570/iR2870/iR2270 Series iR Security Kit-B2 Version 2.03   +
+ +
+ + + + + + +
+
+ Canon Inc. + + +   + + 2005-09-092013-10-07 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Data Security Kit(B) Software V1.10E   +
+ +
+ + + + + + +
+
+ KYOCERA MITA Corporation + + +   + + 2005-09-092013-10-07 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Data Security Kit(B) Software V1.10J   +
+ +
+ + + + + + +
+
+ KYOCERA MITA Corporation + + +   + + 2005-09-092013-10-07 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + AR-FR21 VERSION M.10   +
+ +
+ + + + + + +
+
+ Sharp Corporation + + +   + + 2005-09-072013-10-07 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Tenix Interactive Link Data Diode Device Version 2.1   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2009-03-24 – Interactive Link Data Diode Device, 100MB Version 2.4
    + Maintenance Report + +
  2. + +
    +
  3. + 2009-09-16 – Interactive Link Data Diode Device, 100MB Version 2.3
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ BAE SYSTEMS DATAGATE (formerly Tenix Datagate) + + +   + + 2005-08-302012-09-06 + + + EAL7 + + + US – National Information Assurance Partnership
US
+
+ + Tenix Interactive Link Version 5.1   +
+ +
+ + + + + + +
+
+ BAE SYSTEMS DATAGATE (formerly Tenix Datagate) + + +   + + 2005-08-192012-09-06 + + + EAL5 + + + US – National Information Assurance Partnership
US
+
+ + bizhub PRO 920 control software Image control program(Image control I1):10-0000 Controller control program(IP control P):10-0000   +
+ +
+ + + + + + +
+
+ Konica Minolta Business Technologies, Inc + + +   + + 2005-07-072013-10-07 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Trust-CANP V8.0i   +
+ +
+ + + + + + +
+
+ Nippon Telegraph and Telephone Corporation + + +   + + 2005-07-072013-10-07 + + + EAL2 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + BMC CONTROL-SA   +
+ +
+ + + + + + +
+
+ BMC Software, Inc. + + +   + + 2005-06-242012-09-06 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + Digital Tachograph SMARTACH STANDARD (references 921435 Ind D, 921439 Ind D 921463 Ind D, 921459 Ind A)   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2005-09-30 – Rapport de maintenance M-2005/07
    + Maintenance Report + +
  2. + +
    +
  3. + 2006-01-11 – Rapport de maintenance M-2006/01
    + Maintenance Report + +
  4. + +
    +
  5. + 2006-02-22 – Rapport de maintenance M-2006/0
    + Maintenance Report + +
  6. + +
    +
  7. + 2006-07-28 – Rapport de maintenance M-2006/08
    + Maintenance Report + +
  8. + +
    +
  9. + 2006-10-24 – Rapport de maintenance M-2006/09
    + Maintenance Report + +
  10. + +
    +
  11. + 2006-11-21 – Rapport de maintenance M-2006/10
    + Maintenance Report + +
  12. + +
    +
  13. + 2007-03-28 – Rapport de maintenance M-2007/02
    + Maintenance Report + +
  14. + +
    +
  15. + 2007-06-11 – Rapport de maintenance M-2007/10
    + Maintenance Report + +
  16. + +
    +
  17. + 2007-06-25 – Rapport de maintenance M-2007/13
    + Maintenance Report + +
  18. + +
    +
  19. + 2007-08-04 – Rapport de maintenance M-2007/18
    + Maintenance Report + +
  20. + +
    +
  21. + 2008-04-24 – Rapport de maintenance DCSSI-2005/14-M11
    + Maintenance Report + +
  22. + +
    +
  23. + 2008-05-05 – Rapport de maintenance DCSSI-2005/14-M12
    + Maintenance Report + +
  24. + +
    +
  25. + 2009-04-28 – Rapport de maintenance DCSSI-2005/14-M13
    + Maintenance Report + +
  26. + +
+
+ + +
+
+ ACTIA + + +   + + 2005-06-242019-09-01 + + + EAL4+ +
ALC_FLR.1 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Tumbleweed MMS and IME Version 5.5.3   +
+ +
+ + + + + + +
+
+ Tumbleweed Communications Corp. + + +   + + 2005-06-232012-09-07 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + Marimba Desktop/Mobile Management and Server Change Management   +
+ +
+ + + + + + +
+
+ BMC Software, Inc. + + +   + + 2005-06-102012-09-06 + + + EAL3 + + + US – National Information Assurance Partnership
US
+
+ + AR-FR11 VERSION M.20   +
+ +
+ + + + + + +
+
+ Sharp Corporation + + +   + + 2005-06-032013-10-07 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + ACTIA IS2000 SRES (reference 921441 indice A), ACTIA IS2000 SRES FIAT (reference 921492 indice A)   +
+ +
+ + + + + + +
+
+ ACTIA + + +   + + 2005-05-262019-09-01 + + + EAL4+ +
ALC_FLR.1 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + PR/SM LPAR for the IBM eServer zSeries z890 and z990   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2005-05-132019-09-01 + + + EAL4 + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Cisco VoIP Telephony Solution   +
+ +
+ + + + + + +
+
+ Cisco Systems, Inc. + + +   + + 2005-05-122019-09-01 + + + EAL1 + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Appliporter Security Kitt 01-00   +
+ +
+ + + + + + +
+
+ Hitachi, Ltd. + + +   + + 2005-04-282013-10-07 + + + EAL2 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + NetForensics 3.1.1 With Point Update 45149   +
+ +
+ + + + + + +
+
+ NetForensics, Inc. + + +   + + 2005-04-072012-09-07 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + Nexor MMHS Security   +
+ +
+ + + + + + +
+
+ Nexor Ltd + + +   + + 2005-03-142012-09-07 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + AR-FR12M Version M.20   +
+ +
+ + + + + + +
+
+ Sharp Corporation + + +   + + 2005-03-112013-10-07 + + + EAL3+ +
ADV_SPM.1 +
+ + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + CBB business application unit Version 1.0   +
+ +
+ + + + + + +
+
+ The Bank of Tokyo-Mitsubishi/ MITSUBISHI ELECTRIC INFORMATION SYSTEMS CORPORATION + + +   + + 2005-03-112010-12-10 + + + EAL2 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Scrambler Board GP-1031 V2.0   +
+ +
+ + + + + + +
+
+ Toshiba TEC Corporation + + +   + + 2005-03-112010-12-10 + + + EAL2 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + bizhub PRO 1050 control software Image control program(Image control I1):11-0000 Controller control program(IP control P1):10-0000   +
+ +
+ + + + + + +
+
+ Konica Minolta Business Technologies, Inc + + +   + + 2005-02-212013-10-07 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + bizhub PRO 1050P zentai seigyo software Overseas: bizhub PRO 1050P control software   +
+ +
+ + + + + + +
+
+ Konica Minolta Business Technologies, Inc + + +   + + 2005-02-212013-10-07 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Canon iR4570/iR3570/iR2870/iR2270 Series iR Security Kit-B2 Version 1.04   +
+ +
+ + + + + + +
+
+ Canon Inc. + + +   + + 2005-02-212013-10-07 + + + EAL2 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Océ Digital Access Controller V7.3.6   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2005-09-14 – Océ Digital Access Controler (DAC) Version 7.3.10
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Océ N.V. + + +   + + 2005-02-112019-09-01 + + + EAL2+ +
ALC_FLR.1 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + InCrypto34v2   +
+ +
+ + + + + + +
+
+ ST INCARD S.r.I + + +   + + 2005-02-022019-09-01 + + + EAL4+ +
AVA_MSU.3 +
AVA_VLA.4 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + ACTIA IS2000 Motion Sensor - SMARTACH LxRy (references 921442 indice A, 921443 indice A, 921444 indice A, 921445 indice A, 921446 indice A, 921447 indice A, 921448 indice A, 921449 indice A, 921450 indice A, 921451 indice A, 921460 indice A)   +
+ +
+ + + + + + +
+
+ ACTIA + + +   + + 2005-01-252019-09-01 + + + EAL4+ +
ALC_FLR.1 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Java Intelligent Agent Componentware IV, Version 4.3.11   +
+ +
+ + + + + + +
+
+ DAI Labor, Technische Universität Berlin + + +   + + 2005-01-192019-09-01 + + + EAL3 + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + ACTIA L2000 Digital Tachograph – SMARTACH Famille Standard (références 921435 Indice B, 921439 Indice B et 921463 Indice B)   + + + ACTIA + + +   + + 2005-01-182019-09-01 + + + EAL1 + + + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ACTIA L2000 Digital Tachograph - SMARTACH Famille Standard (references 921435 Indice B, 921439 Indice B et 921463 Indice B)   + + + ACTIA + + +   + + 2005-01-182019-09-01 + + + EAL4+ +
ALC_FLR.1 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Xacta IA Manager Enterprise Edition V4.0 SP2, Build 485   +
+ +
+ + + + + + +
+
+ Xacta Corporation + + +   + + 2005-01-142012-09-07 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + Actional Security Gateway Version 3.1.2.5   +
+ +
+ + + + + + +
+
+ Actional Corporation + + +   + + 2005-01-112012-09-06 + + + EAL2+ +
ADV_SPM.1 +
ALC_FLR.2 +
AVA_MSU.1 +
+ + US – National Information Assurance Partnership
US
+
+ + ACOS EMV-A03V0, Konfiguration A   +
+ +
+ + + + + + +
+
+ Austria Card plastikkarten und Ausweissysteme Gmbh + + +   + + 2004-11-242019-09-01 + + + EAL4+ +
AVA_MSU.3 +
AVA_VLA.4 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + HOBLink Secure, Version 3.1   +
+ +
+ + + + + + +
+
+ HOB GmbH & Co. KG + + +   + + 2004-10-272019-09-01 + + + EAL2 + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + IDS Balancer Version 2.2 Appliance (IDSB3531-CCV1.0, ISDSB3532-CCV1.0, IDSB4508-CCV1.0)   +
+ +
+ + + + + + +
+
+ Top Layer Networks + + +   + + 2004-09-032016-04-05 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + McAfee IntruShield Intrusion Detection System   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2006-02-14 – McAfee IntruShield Assurance Maintenance
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ McAfee, Inc. + + +   + + 2004-08-312012-09-06 + + + EAL3 + + + US – National Information Assurance Partnership
US
+
+ + External Communications Management System (ECMS) V4.1   +
+ +
+ + + + + + +
+
+ Thales Communications S.A. + + +   + + 2004-08-192015-09-29 + + + EAL3 + + + CA – Canadian Common Criteria Scheme
CA
+
+ + Internal Communications Management System (ICMS) v3.7.1.0   +
+ +
+ + + + + + +
+
+ Thales Communications S.A. + + +   + + 2004-08-192015-09-29 + + + EAL3 + + + CA – Canadian Common Criteria Scheme
CA
+
+ + SeL v1 rev 01   +
+ +
+ + + + + + +
+
+ Canon Sales Co., Inc. + + +   + + 2004-08-032010-12-22 + + + EAL1 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Symantec CyberWolf v2.0   +
+ +
+ + + + + + +
+
+ Symantec Corporation + + +   + + 2004-06-042012-09-07 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + Thales Operator Terminal Adapter (OTA)   +
+ +
+ + + + + + +
+
+ Thales Norway AS + + +   + + 2004-05-192019-09-01 + + + EAL5 + + + NO – SERTIT
NO
+
+ + IBM WebSphere MQ 5.3.0.2 with Corrective Service Diskette (CSD) 6   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2004-04-272012-09-06 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + Thales Message Handling System (MHS)   +
+ +
+ + + + + + +
+
+ Thales Systems Canada + + +   + + 2004-04-012015-09-29 + + + EAL3 + + + CA – Canadian Common Criteria Scheme
CA
+
+ + 7145 control software 25.0000   +
+ +
+ + + + + + +
+
+ Konica Minolta Business Technologies, Inc + + +   + + 2004-03-162010-12-28 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + Data security kit for digital MFD:AR-FR10 Version S.10   +
+ +
+ + + + + + +
+
+ Sharp Corporation + + +   + + 2004-03-162010-12-10 + + + EAL3+ + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + IBM Tivoli Access Manager for e-business 4.1 with Fixpack 5   +
+ +
+ + + + + + +
+
+ IBM Corporation + + +   + + 2003-10-012019-09-01 + + + EAL3+ +
ALC_FLR.1 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + KnoWho Authentication Server v1.2.2 and Private ID v2.1.15   +
+ +
+ + + + + + +
+
+ Iridian Technologies, Inc. + + +   + + 2003-10-012019-09-01 + + + EAL2 + + + AU – Australasian Certification Authority (ACA)
AU
+
+ + Groove Cryptographic Services, (GrooveMisc.dll 2.5.0.1774, cryptopp.dll 5.0.4.0)   +
+ +
+ + + + + + +
+
+ Groove Networks, Inc + + +   + + 2003-09-172012-09-06 + + + EAL2+ +
ADV_SPM.1 +
+ + US – National Information Assurance Partnership
US
+
+ + ICitizen Tachograph : Carte tachygraphique version 0.9.0 (réf. : M256LFCHRON_SI_A5_05_01)   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2006-03-01 – Rapport de maintenance M-2006/04
    + Maintenance Report + +
  2. + +
    +
  3. + 2009-06-17 – Maintenance Report DCSSI-2003/12-M02
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ Schlumberger Systemes, Infineon Technologies + + +   + + 2003-08-272019-09-01 + + + EAL4+ +
ADV_IMP.2 +
ALC_DVS.2 +
ATE_DPT.2 +
ADO_IGS.2 +
AVA_MSU.3 +
AVA_VLA.4 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + BreachGate Sitegrity 2.5 (formerly G-Server Version 2.5)   +
+ +
+ + + + + + +
+
+ Breach Security, Inc. (Originally sponsored by Gillian Technologies, Inc.) + + +   + + 2003-08-112012-09-06 + + + EAL1 + + + US – National Information Assurance Partnership
US
+
+ + California Microwave Mail List Agent and Profiling User Agent (MLA/PUA) Version 3.1.0 with Patch A   +
+ +
+ + + + + + +
+
+ Northrop Grumman Systems Corporation, California Microwave Systems + + +   + + 2003-08-012012-09-07 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + DEP/PCI Version 3.0 Host Security Module (Hardware & Software)   +
+ +
+ + + + + + +
+
+ Banksys N.V. + + +   + + 2003-08-012019-09-01 + + + EAL3+ +
ADV_FSP.2 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + G-Server Version 2.5   +
+ +
+ + + + + + +
+
+ Gilian Technologies Inc. + + +   + + 2003-08-012016-04-05 + + + EAL1 + + + US – National Information Assurance Partnership
US
+
+ + Trend Micro InterScan VirusWall 3.52 for NT Trend Micro InterScan VirusWall 3.6 for Solaris, HP-UX, and Linux   +
+ +
+ + + + + + +
+
+ Trend Micro Inc. + + +   + + 2003-05-012012-09-07 + + + EAL4 + + + US – National Information Assurance Partnership
US
+
+ + Bodacion Technologies' HYDRA Server, Version 1.4   +
+ +
+ + + + + + +
+
+ Bodacion Technologies + + +   + + 2003-02-012012-09-06 + + + EAL1 + + + US – National Information Assurance Partnership
US
+
+ + Persona 5.0   +
+ +
+ + + + + + +
+
+ Esker, Incorporated + + +   + + 2002-12-012012-09-06 + + + EAL3 + + + US – National Information Assurance Partnership
US
+
+ + Messaging Management System, V4.6   +
+ +
+ + + + + + +
+
+ Tumbleweed Communications Pty. Ltd. + + +   + + 2002-03-012019-09-01 + + + EAL2 + + + AU – Australasian Certification Authority (ACA)
AU
+
+ + Smart Card IC Development flow, Smart Card IC Development section in Kumamoto, NEC - Japan   +
+ +
+ + + + + + +
+
+ NEC Smart Card IC development Section, Kumamoto (Japan) + + +   + + 2002-01-012019-09-01 + + + EAL1+ +
AVA_VLA.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + VPN IPSec administration service, Netcelo   +
+ +
+ + + + + + +
+
+ Netcelo + + +   + + 2002-01-012019-09-01 + + + EAL1+ +
AVA_VLA.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + SurfinGate, V5.6   +
+ +
+ + + + + + +
+
+ Finjan Software, Inc. + + +   + + 2001-10-012012-09-06 + + + EAL3 + + + US – National Information Assurance Partnership
US
+
+ + Bioscrypt™ Enterprise for NT Logon v2.1.3   +
+ +
+ + + + + + +
+
+ L-1 Identity Solutions, Inc + + +   + + 2001-06-012015-09-28 + + + EAL2 + + + CA – Canadian Common Criteria Scheme
CA
+
+ + Sharp Data Security Kit (AR-FR1/AR-FR2/AR-FR3) for Sharp Imager Family (FR-287, AR-337, AR-407, and AR-507)   +
+ +
+ + + + + + +
+
+ Sharp Electronics Corporation + + +   + + 2001-04-012012-09-07 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + CZ6 production line on the NEC site in Yamaguchi, Japan   +
+ +
+ + + + + + +
+
+ NEC Yamaguchi Ltd, NEC SCAC + + +   + + 2001-01-012019-09-01 + + + EAL1+ +
AVA_VLA.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Partitioning of virtual private networks as part of the Equant IP VPN service (version 1.0)   +
+ +
+ + + + + + +
+
+ Equant, France Telecom Transpac + + +   + + 2001-01-012019-09-01 + + + EAL1+ +
AVA_VLA.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ProductVendorProduct
Certificate
Date Certificate
Issued
Certificate
Validity
Expiration
Date
(Archived)
ComplianceScheme
+ This list was generated on Friday, April 16, 2021, at 10:31 AM +
+ Products for Digital Signatures – 88 Certified Products +
+ + MetaSIGN-Applet, Version 3.3.5   + + + BULL S.A. + + +   + + 2016-03-252021-03-25 + + + EAL3+ +
ALC_FLR.3 +
AVA_VAN.3 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + MetaSIGN-API, Version 3.3.5   +
+ +
+ + + + + + +
+
+ BULL S.A. + + +   + + 2016-03-212021-03-21 + + + EAL3+ +
ALC_FLR.3 +
AVA_VAN.3 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + CardOS V5.3 QES, V1.0   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2017-07-04 – CardOS V5.3 QES, V1.0
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Atos IT Solutions and Services GmbH + + +   + + 2014-08-062019-09-01 + + + EAL4+ +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + EzIdentityTM mSignTM (Android v2.0.0.1 & iOS v2.0.0.1) and EzIdentityTM Authentication Platform v4.0.0.2   +
+ +
+ + + + + + +
+
+ EZMCOM Inc. + + +   + + 2013-12-272019-09-01 + + + EAL2 + + + MY – CyberSecurity Malaysia
MY
+
+ + ST3 Ace (ST3 Ace Token Manager v1.0.13.927, ST3 Ace Middleware v1.0.13.910, and SecureCOS Firmware v5.2)   +
+ +
+ + + + + + +
+
+ SecureMetric Technology Sdn Bhd + + +   + + 2013-12-202019-09-01 + + + EAL2 + + + MY – CyberSecurity Malaysia
MY
+
+ + Advanced E-Signature ENsoft v1.1   +
+ +
+ + + + + + +
+
+ Euronovate SA + + +   + + 2013-09-182019-09-01 + + + EAL1 +
ASE_OBJ.2 +
ASE_REQ.2 +
ASE_SPD.1 +
+ + IT – OCSI - Organismo di Certificazione della Sicurezza Informatica
IT
+
+ + CardOS V5.0 with Application for QES, V1.0   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2017-07-07 – CardOS V5.0 with Application for QES, V1.0
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Atos IT Solutions and Services GmbH + + +   + + 2013-07-262019-09-01 + + + EAL4+ +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + STARCOS 3.5 ID ECC C1R   + + + G+D Mobile Security GmbH + + +   + + 2013-04-192019-09-01 + + + EAL4+ +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Controlador Java de la Secretaría de Estado de Administraciones Públicas para el DNIe v1.4   +
+ +
+ + + + + + +
+
+ Ministerio de Hacienda y Administraciones Públicas + + +   + + 2012-11-122019-09-01 + + + EAL1 + + + ES – Organismo de Certificación de la Seguridad de las Tecnologías de la Información
ES
+
+ + Crypto.X v2.3.6.1   + + + Inixa S.L. + + +   + + 2012-11-082019-09-01 + + + EAL1 + + + ES – Organismo de Certificación de la Seguridad de las Tecnologías de la Información
ES
+
+ + Driver DNIe PKCS#11 v1.0   +
+ +
+ + + + + + +
+
+ FNMT-RCM + + +   + + 2012-11-082019-09-01 + + + EAL1 + + + ES – Organismo de Certificación de la Seguridad de las Tecnologías de la Información
ES
+
+ + eSigna Crypto v2.1.1   + + + Indenova S.L. + + +   + + 2012-11-082019-09-01 + + + EAL1 + + + ES – Organismo de Certificación de la Seguridad de las Tecnologías de la Información
ES
+
+ + cv act ePasslet/ePKI v3.6   + + + cv cryptovision GmbH + + +   + + 2012-09-102019-09-01 + + + EAL4+ +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + STARCOS 3.5 ID ECC C1   + + + G+D Mobile Security GmbH + + +   + + 2012-08-312019-09-01 + + + EAL4+ +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Verizon UniCERT 5.3.4.1   +
+ +
+ + + + + + +
+
+ Verizon Business + + +   + + 2012-07-232019-09-01 + + + EAL4+ +
ALC_FLR.2 +
+ + AU – Australasian Certification Authority (ACA)
AU
+
+ + Driver DNIe Card Module v1.0   +
+ +
+ + + + + + +
+
+ FNMT-RCM + + +   + + 2012-07-162019-09-01 + + + EAL1 + + + ES – Organismo de Certificación de la Seguridad de las Tecnologías de la Información
ES
+
+ + AdSigner   + + + Dictao + + +   + + 2012-06-042019-09-01 + + + EAL3+ +
ALC_FLR.3 +
AVA_VAN.3 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + SmartApp SIGN 2.2   + + + Polska Wytwórnia Papierów Wartościowych S.A. + + +   + + 2012-02-062019-09-01 + + + EAL4+ +
ALC_DVS.2 +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + TCOS Signature Module Version 1.0 Release 1/SLE78CLX480P   +
+ +
+ + + + + + +
+
+ T-Systems International GMBH + + +   + + 2011-12-212019-09-01 + + + EAL4+ +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Worldline Signer One sur assistant personnel   + + + Atos Worldline + + +   + + 2011-11-302019-09-01 + + + EAL3+ +
ALC_FLR.3 +
AVA_VAN.3 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Worldline Signer One sur poste de travail   +
+ +
+ + + + + + +
+
+ Atos Worldline + + +   + + 2011-11-152019-09-01 + + + EAL3+ +
ALC_FLR.3 +
AVA_VAN.3 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Governikus – Teil der Virtuellen Poststelle des Bundes (Basis) Version 3.3.1.3   +
+ +
+ + + + + + +
+
+ Bremen online services GmbH and Co. KG + + +   + + 2011-04-152019-09-01 + + + EAL3+ +
ADO_DEL.2 +
ADV_IMP.1 +
ADV_LLD.1 +
ALC_TAT.1 +
AVA_MSU.3 +
AVA_VLA.4 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Governikus – Teil der Virtuellen Poststelle des Bundes (OSCI) Version 3.3.1.3   +
+ +
+ + + + + + +
+
+ Bremen online services GmbH and Co. KG + + +   + + 2011-04-152019-09-01 + + + EAL3+ +
ADO_DEL.2 +
ADV_IMP.1 +
ADV_LLD.1 +
ALC_TAT.1 +
AVA_MSU.3 +
AVA_VLA.4 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Governikus – Teil der Virtuellen Poststelle des Bundes (Verifikationsmodul) Version 3.3.1.3   +
+ +
+ + + + + + +
+
+ Bremen online services GmbH and Co. KG + + +   + + 2011-04-152019-09-01 + + + EAL3+ +
ADO_DEL.2 +
ADV_IMP.1 +
ADV_LLD.1 +
ALC_TAT.1 +
AVA_MSU.3 +
AVA_VLA.4 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + CardOS DI V4.2C CNS with Application for QES   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2011-10-18 – CardOS DI V4.2C CNS with Application for QES Version 1.01
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ Siemens IT Solutions and Services GmbH + + +   + + 2010-12-102019-09-01 + + + EAL4+ +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + CardOS V4.4 CNS with Application for QES   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2011-10-18 – CardOS V4.4 CNS with Application for QES Version 1.01
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ Siemens IT Solutions and Services GmbH + + +   + + 2010-12-092019-09-01 + + + EAL4+ +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + CardOS V4.4 with Application for QES   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2011-10-26 – CardOS V4.4 with Application for QES Version 1.01
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ Siemens IT Solutions and Services GmbH + + +   + + 2010-12-082019-09-01 + + + EAL4+ +
AVA_VAN.5 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + eAS/Trusted Signature Platform (SIAVAL) Módulo Crypto v6.2.1   +
+ +
+ + + + + + +
+
+ Sistemas Informáticos Abiertos S.A. + + +   + + 2010-10-012019-09-01 + + + EAL1+ +
ALC_FLR.1 +
+ + ES – Organismo de Certificación de la Seguridad de las Tecnologías de la Información
ES
+
+ + STARCOS 3.2 QES Version 2.1B   + + + G+D Mobile Security GmbH + + +   + + 2010-09-032019-09-01 + + + EAL4+ +
AVA_MSU.3 +
AVA_VLA.4 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + TrustySign version 4.1.4   +
+ +
+ + + + + + +
+
+ C.S. + + +   + + 2010-08-262019-09-01 + + + EAL3+ +
ALC_FLR.3 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + STARCOS 3.4 Health AHC C1   +
+ +
+ + + + + + +
+
+ G+D Mobile Security GmbH + + +   + + 2010-01-252019-09-01 + + + EAL4+ + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Luna PCI Configured for Use in Luna SA 4.1 with Backup   + + + SafeNet Inc. + + +   + + 2009-11-122019-12-11 + + + EAL4+ +
ADV_IMP.2 +
ALC_DVS.2 +
AVA_MSU.3 +
AVA_VLA.4 +
+ + NL – NSCIB operated by
NL
+
+ + OPENLiMiT SignCubes base components 2.5, Version 2.5.0.1   +
+ +
+ + + + + + +
+
+ OpenLimit SignCubes AG + + +   + + 2009-07-312019-09-01 + + + EAL4+ +
AVA_MSU.3 +
AVA_VLA.4 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + ZKA SECCOS Sig v2.6.4 R1.1   +
+ +
+ + + + + + +
+
+ Sagem Orga GmbH + + +   + + 2009-07-222019-09-01 + + + EAL4+ +
AVA_MSU.3 +
AVA_VLA.4 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + S-TRUST Sign-it base components 2.5 Version 2.5.1.1   +
+ +
+ + + + + + +
+
+ OpenLimit SignCubes AG + + +   + + 2009-06-222019-09-01 + + + EAL4+ +
AVA_MSU.3 +
AVA_VLA.4 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + STARCOS 3.4 Health QES C1   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2010-09-14 – STARCOS 3.4 Health QES C2
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ G+D Mobile Security GmbH + + +   + + 2009-04-302019-09-01 + + + EAL4+ +
AVA_MSU.3 +
AVA_VLA.4 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Governikus Teil der Virtuellen Poststelle des Bundes (Basis) Version 3.3.1.0   +
+ +
+ + + + + + +
+
+ Bremen online services GmbH and Co. KG + + +   + + 2009-03-202019-09-01 + + + EAL3+ +
ADV_IMP.1 +
ALC_TAT.1 +
ADO_DEL.2 +
ADV_LLD.1 +
AVA_MSU.3 +
AVA_VLA.4 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + STARCOS 3.2 QES Version 2.0B   + + + G+D Mobile Security GmbH + + +   + + 2009-03-042019-09-01 + + + EAL4+ +
AVA_MSU.3 +
AVA_VLA.4 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Starcos 3.2 QES, Version 2.0   +
+ +
+ + + + + + +
+
+ G+D Mobile Security GmbH + + +   + + 2009-01-272019-09-01 + + + EAL4+ +
AVA_MSU.3 +
AVA_VLA.4 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + EMV-TriCAP Reader (Artikel-Nr. HCPNCKS/A03, Firmware Version 69.18), SecOVID Reader III (Artikel-Nr. HCPNCKS/B05, Firmware Version 69.18) und KAAN TriB@nk (Artikel-Nr. HCPNCKS/C05, Firmware Version 68.17)   +
+ +
+ + + + + + +
+
+ KOBIL Systems GmbH + + +   + + 2009-01-122019-09-01 + + + EAL3+ +
ADV_IMP.1 +
ALC_TAT.1 +
ADO_DEL.2 +
ADV_LLD.1 +
AVA_MSU.3 +
AVA_VLA.4 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + FAST Signature application, version 1   +
+ +
+ + + + + + +
+
+ Dictao + + +   + + 2008-12-172019-09-01 + + + EAL2+ +
ADV_IMP.1 +
ALC_DVS.1 +
ALC_FLR.3 +
ALC_TAT.1 +
ADV_HLD.2 +
ADV_LLD.1 +
AVA_MSU.1 +
AVA_VLA.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Virtuelle Poststelle des Bundes, (OSCI) Version 2.2.3.2   +
+ +
+ + + + + + +
+
+ Bremen online services GmbH and Co. KG + + +   + + 2008-10-242019-09-01 + + + EAL3+ +
ADV_IMP.1 +
ALC_TAT.1 +
ADO_DEL.2 +
ADV_LLD.1 +
AVA_MSU.3 +
AVA_VLA.4 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Virtuelle Poststelle des Bundes, (Verifikationsmodul) Version 2.2.3.2   +
+ +
+ + + + + + +
+
+ Bremen online services GmbH and Co. KG + + +   + + 2008-10-242019-09-01 + + + EAL3+ +
ADV_IMP.1 +
ALC_TAT.1 +
ADO_DEL.2 +
ADV_LLD.1 +
AVA_MSU.3 +
AVA_VLA.4 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Sign Live! CC Version 3.2.3   +
+ +
+ + + + + + +
+
+ intarsys consulting GmbH + + +   + + 2008-08-292019-09-01 + + + EAL3+ +
ADV_IMP.1 +
ALC_TAT.1 +
ADO_DEL.2 +
ADV_LLD.1 +
AVA_MSU.3 +
AVA_VLA.4 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + S-TRUST Sign-it Basiskomponenten 2.1, v2.1.7.1   +
+ +
+ + + + + + +
+
+ OpenLimit Holding AG + + +   + + 2008-06-262019-09-01 + + + EAL4+ +
AVA_MSU.3 +
AVA_VLA.4 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + ASF Advanced Signature Framework v4.1   +
+ +
+ + + + + + +
+
+ TB-Solutions Advanced Technologies, S.L. + + +   + + 2008-04-092019-09-01 + + + EAL3+ +
ALC_FLR.1 +
+ + ES – Organismo de Certificación de la Seguridad de las Tecnologías de la Información
ES
+
+ + Touch&Sign2048 Version 1.00   +
+ +
+ + + + + + +
+
+ ST Incard S.R.L. + + +   + + 2008-04-092019-09-01 + + + EAL4+ +
AVA_MSU.3 +
AVA_VLA.4 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + STARCOS 3.2 QES Version 1.0   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2008-09-03 – Starcos 3.2 QES, Version 1.1
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ G+D Mobile Security GmbH + + +   + + 2008-04-022019-09-01 + + + EAL4+ +
AVA_MSU.3 +
AVA_VLA.4 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Openlimit SignCubes Basiskomponenten 2.1 Version 2.1.6.3   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2008-03-03 – OPENLiMiT SignCubes Basiskomponenten 2.1, Version 2.1.6.3 for Microsoft InfoPath Technology (BSI-DSZ-CC-0494-2008-MA-01)
    + Maintenance Report + + Maintenance ST + +
  2. + +
    +
  3. + 2008-03-31 – OPENLiMiT SignCubes Basiskomponenten 2.1, Version 2.1.8.1 for Microsoft InfoPath Technology (BSI-DSZ-CC-0494-2008-MA-02)
    + Maintenance Report + + Maintenance ST + +
  4. + +
+
+ + +
+
+ OpenLimit SignCubes AG + + +   + + 2008-02-292019-09-01 + + + EAL4+ +
AVA_MSU.3 +
AVA_VLA.4 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + OPENLiMiT SignCubes Basiskomponenten 2.1, Version 2.1.1.1 with OPENLiMiT PDF Plugin Version 2.0.1.1 for Adobe   +
+ +
+ + + + + + +
+
+ OpenLimit SignCubes AG + + +   + + 2007-12-182019-09-01 + + + EAL4+ +
AVA_MSU.3 +
AVA_VLA.4 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + BKK OPENLiMiT base components 2.1, V.2.1.2.1   +
+ +
+ + + + + + +
+
+ OpenLimit SignCubes AG + + +   + + 2007-12-112019-09-01 + + + EAL4+ +
AVA_MSU.3 +
AVA_VLA.4 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Virtuelle Poststelle des Bundes (OSCI), Version 2.2.2.6   +
+ +
+ + + + + + +
+
+ Bremen online services GmbH and Co. KG + + +   + + 2007-11-232019-09-01 + + + EAL3+ +
ADV_IMP.1 +
ALC_TAT.1 +
ADO_DEL.2 +
ADV_LLD.1 +
AVA_MSU.3 +
AVA_VLA.4 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Virtuelle Poststelle des Bundes (Verifikationsmodul), Version 2.2.2.6   +
+ +
+ + + + + + +
+
+ Bremen online services GmbH and Co. KG + + +   + + 2007-11-232019-09-01 + + + EAL3+ +
ADV_IMP.1 +
ALC_TAT.1 +
ADO_DEL.2 +
ADV_LLD.1 +
AVA_MSU.3 +
AVA_VLA.4 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Dictao Validation Server DVS v4.0.6   +
+ +
+ + + + + + +
+
+ Dictao + + +   + + 2007-10-242019-09-01 + + + EAL3+ +
ADV_IMP.1 +
ADV_LLD.1 +
ALC_FLR.3 +
ALC_TAT.1 +
AVA_VLA.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + S-TRUST Sign-it base components 2.1, Version 2.1.4.1   +
+ +
+ + + + + + +
+
+ OpenLimit SignCubes AG + + +   + + 2007-09-182019-09-01 + + + EAL4+ +
AVA_MSU.3 +
AVA_VLA.4 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + IAIK-JCE CC Core 3.15   +
+ +
+ + + + + + +
+
+ Stiftung Secure Information and Communication Technologies SIC + + +   + + 2007-06-272013-10-07 + + + EAL3 + + + JP – JISEC - Japan IT Security Evaluation and Certification Scheme
JP
+
+ + OPENLiMiT SignCubes base components 2.1, Version 2.1.6.1   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2007-07-20 – OPENLiMiT SignCubes base components 2.1,Version 2.1.6.2
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ OpenLimit SignCubes AG + + +   + + 2007-05-162019-09-01 + + + EAL4+ +
AVA_MSU.3 +
AVA_VLA.4 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + OPENLiMiT SignCubes base components 2.1, Version 2.1.1.1   +
+ +
+ + + + + + +
+
+ OpenLimit SignCubes AG + + +   + + 2007-02-282019-09-01 + + + EAL4+ +
AVA_MSU.3 +
AVA_VLA.4 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + S-TRUST Sign-it base components 2.1, Version 2.1.5.1   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2007-10-27 – S-TRUST Sign-it base components 2.1, Version 2.1.5.1, SP 1
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ OpenLimit SignCubes AG + + +   + + 2007-02-282019-09-01 + + + EAL4+ +
AVA_MSU.3 +
AVA_VLA.4 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Chipkartenleser-Tastatur KB SCR Pro, Sachnummer S26381-K329-V2xx HOS:01,Firmware Version 1.06   +
+ +
+ + + + + + +
+
+ Unknown + + +   + + 2007-01-162019-09-01 + + + EAL3+ +
ADO_DEL.2 +
ADV_IMP.1 +
ADV_LLD.1 +
ALC_TAT.1 +
AVA_MSU.3 +
AVA_VLA.4 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + BKK OPENLiMiT base components 2.0 Version 2.0.2.1   +
+ +
+ + + + + + +
+
+ OpenLimit SignCubes AG + + +   + + 2007-01-012019-09-01 + + + EAL4+ +
AVA_MSU.3 +
AVA_VLA.4 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + S-TRUST Sign-it base components 2.0, Version 2.0.0.1   +
+ +
+ + + + + + +
+
+ OpenLimit SignCubes AG + + +   + + 2007-01-012019-09-01 + + + EAL4+ +
AVA_MSU.3 +
AVA_VLA.4 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Smart card reader SPR532 Firmware version 5.09   +
+ +
+ + + + + + +
+
+ SCM Microsystems GmbH + + +   + + 2006-12-222019-09-01 + + + EAL3+ +
ADO_DEL.2 +
ADV_IMP.1 +
ADV_LLD.1 +
ALC_TAT.1 +
AVA_MSU.3 +
AVA_VLA.4 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Smart card reader SPR532 Firmware version 5.10   +
+ +
+ + + + + + +
+
+ SCM Microsystems GmbH + + +   + + 2006-12-222019-09-01 + + + EAL3+ +
ADO_DEL.2 +
ADV_IMP.1 +
ADV_LLD.1 +
ALC_TAT.1 +
AVA_MSU.3 +
AVA_VLA.4 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Chipkartenterminal KAAN Advanced Hardware Version K104R3, Firmware Version 1.02   +
+ +
+ + + + + + +
+
+ KOBIL Systems GmbH + + +   + + 2006-12-202019-09-01 + + + EAL3+ +
ADO_DEL.2 +
ADV_IMP.1 +
ADV_LLD.1 +
ALC_TAT.1 +
AVA_MSU.3 +
AVA_VLA.4 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + RSA Certificate Manager Version 6.7   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2008-02-11 – RSA Certificate Manager Version 6.7 Build 417 CC
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ RSA Security Inc. + + +   + + 2006-12-112012-09-07 + + + EAL4+ +
ALC_FLR.2 +
+ + US – National Information Assurance Partnership
US
+
+ + Cybertrust UniCERT v5.2.1   +
+ +
+ + + + + + +
+
+ Cybertrust + + +   + + 2006-10-252017-07-13 + + + EAL4+ +
ALC_FLR.2 +
+ + AU – Australasian Certification Authority (ACA)
AU
+
+ + ZKA SECCOS Sig v1.5.3   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2006-09-20 – ZKA SECCOS Sig v1.5.3
    + Maintenance Report + +
  2. + +
    +
  3. + 2006-09-20 – ZKA SECCOS Sig v1.5.3
    + Maintenance Report + +
  4. + +
    +
  5. + 2006-10-20 – ZKA SECCOS Sig v1.5.3
    + Maintenance Report + +
  6. + +
    +
  7. + 2006-11-30 – ZKA SECCOS Sig v1.5.3
    + Maintenance Report + +
  8. + +
+
+ + +
+
+ Sagem Orga GmbH + + +   + + 2006-09-082019-09-01 + + + EAL4+ +
AVA_MSU.3 +
AVA_VLA.4 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + S-TRUST Sign-it base components 2.0 Version 2.0.3.1   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2006-07-21 – S-TRUST Sign-it base components 2.0, Version 2.0.4.1
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ OpenLimit SignCubes AG + + +   + + 2006-06-222019-09-01 + + + EAL4+ +
AVA_MSU.3 +
AVA_VLA.4 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + ZKA SECCOS Sig v1.5.2   +
+ +
+ + + + + + +
+
+ Sagem Orga GmbH + + +   + + 2006-06-132019-09-01 + + + EAL4+ +
AVA_MSU.3 +
AVA_VLA.4 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + AdSignerWeb v3.1.800 / Signature Creation Application   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2009-08-13 – Rapport de maintenance DCSSI-2006/06-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ Dictao + + +   + + 2006-04-282019-09-01 + + + EAL3+ +
ADV_IMP.1 +
ADV_LLD.1 +
ALC_FLR.3 +
ALC_TAT.1 +
AVA_VLA.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Smart Terminal ST-2xxx Firmware Version 5.08   +
+ +
+ + + + + + +
+
+ Cherry GmbH + + +   + + 2006-02-092019-09-01 + + + EAL3+ +
ADO_DEL.2 +
ADV_IMP.1 +
ADV_LLD.1 +
ALC_TAT.1 +
AVA_MSU.3 +
AVA_VLA.4 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + OPENLiMiT SignCubes base components 2.0, Version 2.0.1.1   +
+ +
+ + + + + + +
+
+ OpenLimit SignCubes AG + + +   + + 2005-11-242019-09-01 + + + EAL4+ +
AVA_MSU.3 +
AVA_VLA.4 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + OPENLiMiT SignCubes base components 2.0, Version 2.0.1.1 with OPENLiMiT SignCubes PDF Plugin, Version 2.0.1.1 for Adobe   +
+ +
+ + + + + + +
+
+ OpenLimit SignCubes AG + + +   + + 2005-11-242019-09-01 + + + EAL4+ +
AVA_MSU.3 +
AVA_VLA.4 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Microsoft Certificate Server 2003   + + + Microsoft Corporation + + +   + + 2005-11-152012-09-07 + + + EAL4+ +
ALC_FLR.3 +
+ + US – National Information Assurance Partnership
US
+
+ + DBsign for Client/Server Applications Version 3.0   +
+ +
+ + + + + + +
+
+ Gradkell Systems, Inc. + + +   + + 2005-09-302012-09-06 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + DBsign for HTML Applications Version 3.0   +
+ +
+ + + + + + +
+
+ Gradkell Systems, Inc. + + +   + + 2005-09-302012-09-06 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + DBsign for Oracle Web Forms Applications Version 3.0   +
+ +
+ + + + + + +
+
+ Gradkell Systems, Inc. + + +   + + 2005-09-302012-09-06 + + + EAL2 + + + US – National Information Assurance Partnership
US
+
+ + Chipkartenterminal der Familie CardMan Trust CM3621 / CM3821   +
+ +
+ + + + + + +
+
+ Omnikey GMBH + + +   + + 2005-09-052019-09-01 + + + EAL3+ +
ADO_DEL.2 +
ADV_IMP.1 +
ADV_LLD.1 +
ALC_TAT.1 +
AVA_MSU.3 +
AVA_VLA.4 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Applatoo version 1.2.4   +
+ +
+ + + + + + +
+
+ France Telecom R&D, Ilex + + +   + + 2005-04-252019-09-01 + + + EAL2+ +
ADV_HLD.2 +
ADV_IMP.1 +
ADV_LLD.1 +
ALC_DVS.1 +
ALC_FLR.3 +
ALC_TAT.1 +
AVA_MSU.1 +
AVA_VLA.2 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + OPENLIMIT SignCubes 1.6, Version 1.6.0.5   +
+ +
+ + + + + + +
+
+ OpenLimit Holding AG + + +   + + 2004-11-192019-09-01 + + + EAL3+ +
ADV_IMP.1 +
ADV_LLD.1 +
ALC_TAT.1 +
AVA_MSU.3 +
AVA_VLA.4 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + iKey 2032   +
+ +
+ + + + + + +
+
+ SafeNet Inc. + + +   + + 2004-08-012017-07-12 + + + EAL2 + + + AU – Australasian Certification Authority (ACA)
AU
+
+ + BKK SignCubes, Version 1.5   +
+ +
+ + + + + + +
+
+ Bundesverband der Betriebskrankenkassen + + +   + + 2004-07-222019-09-01 + + + EAL3+ + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + E.siqia SignCubes, Version 1.5   +
+ +
+ + + + + + +
+
+ e.Siqia Informationstechnologien GMBH + + +   + + 2004-07-222019-09-01 + + + EAL3 + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + OPENLIMIT SignCubes, Version 1.5   +
+ +
+ + + + + + +
+
+ OpenLimit SignCubes AG + + +   + + 2004-07-222019-09-01 + + + EAL3+ +
ADV_IMP.1 +
ADV_LLD.1 +
ALC_TAT.1 +
AVA_MSU.3 +
AVA_VLA.4 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + SignCubes Professional, Version 1.5   +
+ +
+ + + + + + +
+
+ SignCubes GMBH + + +   + + 2004-07-222019-09-01 + + + EAL3+ +
ADV_IMP.1 +
ADV_LLD.1 +
ALC_TAT.1 +
AVA_MSU.3 +
AVA_VLA.4 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + T-TeleSec Signet, Version 1.5   +
+ +
+ + + + + + +
+
+ T-Systems International GMBH + + +   + + 2004-07-222019-09-01 + + + EAL3+ +
ADV_IMP.1 +
ADV_LLD.1 +
ALC_TAT.1 +
AVA_MSU.3 +
AVA_VLA.4 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + T-TeleSec Signet, Version 1.6.0.4   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2006-05-22 – T-TeleSec Signet, Version 1.6.0.4 mit Patch 1.6.0.6
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ T-Systems International GMBH + + +   + + 2004-07-222019-09-01 + + + EAL3+ +
ADV_IMP.1 +
ADV_LLD.1 +
ALC_TAT.1 +
AVA_MSU.3 +
AVA_VLA.4 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ProductVendorProduct
Certificate
Date Certificate
Issued
Certificate
Validity
Expiration
Date
(Archived)
ComplianceScheme
+ This list was generated on Friday, April 16, 2021, at 10:31 AM +
+ Trusted Computing – 16 Certified Products +
+ + ST33TPHF20 TPM Firmware versions 74.08 (0x4A 0x08) et 74.09 (0x4A 0x09)   + + + STMicroelectronics + + +   + + 2018-09-242018-09-24 + + + EAL4+ +
ALC_FLR.1 +
AVA_VAN.4 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ST33TPHF20I2C +TPM Firmware version 74.05   + + + STMicroelectronics + + +   + + 2017-07-192017-07-19 + + + EAL4+ +
ALC_FLR.1 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ST33TPHF2EI2C mode TPM 2.0 +TPM Firmware version 73.05   +
+ +
+ + + + + + +
+
+ STMicroelectronics + + +   + + 2017-07-192017-07-19 + + + EAL4+ +
ALC_FLR.1 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ST33TPHF20SPI TPM Firmware version 74.00   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2017-06-28 – Rapport de maintenance ANSSI-CC-2016/79-M01
    + Maintenance Report + +
  2. + +
    +
  3. + 2017-06-28 – ST33TPHF20SPI TPM Firmware version 74.04 (0x4A.0x04)
    + Maintenance Report + +
  4. + +
+
+ + +
+
+ STMicroelectronics + + +   + + 2016-12-132016-12-13 + + + EAL4+ +
ALC_FLR.1 +
AVA_VAN.4 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ST33TPHF2ESPI mode TPM 2.0 TPM Firmware version 73.00   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2017-06-28 – Rapport de maintenance ANSSI-CC-2016/78-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ STMicroelectronics + + +   + + 2016-12-132016-12-13 + + + EAL4+ +
ALC_FLR.1 +
AVA_VAN.4 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ST33TPHF2ESPI mode TPM 2.0 TPM Firmware versions 47.00 et 47.04   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2017-02-16 – ANSSI-CC-2016/43-M01
    + Maintenance Report + +
  2. + +
+
+ + +
+
+ STMicroelectronics + + +   + + 2016-07-042016-07-04 + + + EAL4+ +
ALC_FLR.1 +
AVA_VAN.4 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ST33TPHF20SPI   + + + STMicroelectronics + + +   + + 2016-05-302016-05-30 + + + EAL4+ +
ALC_FLR.1 +
AVA_VAN.4 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ST33TPMF2ESPI Hardware ST33HTPM révision interne C,Firmware versions 1.2.46.00 et 1.2.46.08   + + + STMicroelectronics + + +   + + 2016-01-292021-01-29 + + + EAL4+ +
ALC_FLR.1 +
AVA_VAN.4 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + Infineon Technologies AG Trusted Platform Module SLB9670_2.0 v7.40.2098.00   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2016-05-31 – Infineon Technologies AG Trusted Platform Module SLB9670_2.0 v7.40.2098.00 and v7.41.2375.00
    + Maintenance Report + + Maintenance ST + +
  2. + +
+
+ + +
+
+ Infineon Technologies AG + + +   + + 2016-01-282021-02-28 + + + EAL4+ +
ALC_FLR.1 +
AVA_VAN.4 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + Trusted Platform Module SLB9665_2.0 v5.51.2098.00   +
+ +
+ + + + + + +
+
+ Infineon Technologies AG + + +   + + 2015-09-172020-09-17 + + + EAL4+ +
ALC_FLR.1 +
AVA_VAN.4 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + TPM 1.2 +Hardware version FB5C85D, Firmware version 5.81.0.0   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2016-02-09 – ANSSI-CC-2015/14-M01
    + Maintenance Report + +
  2. + +
    +
  3. + 2016-02-09 – ANSSI-CC-2015/14-M02
    + Maintenance Report + +
  4. + +
    +
  5. + 2016-03-30 – ANSSI-CC-2015/14-M03
    + Maintenance Report + +
  6. + +
    +
  7. + 2017-02-13 – ANSSI-CC-2015/14-M04
    + Maintenance Report + +
  8. + +
+
+ + +
+
+ Nuvoton Technology + + +   + + 2015-05-132020-05-13 + + + EAL4+ +
ALC_DVS.2 +
ALC_FLR.1 +
AVA_VAN.4 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + SLB9670_1.2 v6.40.0190.00   +
+ +
+ + + + + +
+
Maintenance Report(s)
+
    + +
    +
  1. + 2016-05-03 – Infineon Technologies AG Trusted Platform Module SLB9670_1.2, v6.40.0190.00 and v6.41.0197.00 and v6.41.0198.00
    + Maintenance Report + + Maintenance ST + +
  2. + +
    +
  3. + 2017-02-23 – Infineon Technologies AG Trusted Platform Module SLB9670_1.2, v6.40.0190.00, v6.41.0197.00, v6.41.0198.00, v6.42.0204.00 and v6.42.0205.00
    + Maintenance Report + + Maintenance ST + +
  4. + +
+
+ + +
+
+ Infineon Technologies AG + + +   + + 2015-04-162020-04-16 + + + EAL4+ +
ALC_FLR.1 +
AVA_VAN.4 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + SLB96xx   + + + Infineon Technologies AG + + +   + + 2014-02-282019-09-01 + + + EAL4+ +
ALC_FLR.1 +
AVA_VAN.4 +
+ + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + ST33TPM12LPC   + + + STMicroelectronics + + +   + + 2012-12-212019-09-01 + + + EAL4+ +
ALC_FLR.1 +
AVA_VAN.4 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + ST33TPM12LPC   + + + STMicroelectronics + + +   + + 2012-07-162019-09-01 + + + EAL4+ +
ALC_FLR.1 +
AVA_VAN.4 +
+ + FR – Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)
FR
+
+ + SLB9635TT1.2 / m1566a13 HW a13 / FW 03.17.0008.00   + + + Infineon Technologies AG + + +   + + 2009-11-202019-09-01 + + + EAL4+ + + + DE – Bundesamt für Sicherheit in der Informationstechnik
DE
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + diff --git a/examples/readme.md b/examples/readme.md new file mode 100644 index 00000000..e4ebc2cd --- /dev/null +++ b/examples/readme.md @@ -0,0 +1,44 @@ +## New CommonCriteria API + +New object oriented API. The old one should not be used, unless you explicitly want that. Demo of the tool's capabilities with CommonCriteria dataset can be found in [cc_oop_demo.py](https://github.com/crocs-muni/sec-certs/blob/master/examples/cc_oop_demo.py). Also, comments are provided on separate actions that may serve as a temprorary API documentation :). + +To download and build whole dataset can take up to several hours. + + +## Manual CPE matching + +The tool contains a fuzzy procedure that attempts to map [CPE names](https://nvd.nist.gov/products/cpe) to CC certificates. Result is a list of potentially promising matchings that should be manually evaluated by an analyst to obtain ground truth labeling. The analyst should run the file [cc_cpe_labeling.py](https://github.com/crocs-muni/sec-certs/blob/master/examples/cc_cpe_labeling.py) + +```python +dset = CCDataset({}, Path('./my_debug_datset'), 'cc_full_dataset', 'Full CC dataset') +dset.get_certs_from_web(to_download=True, update_json=True) +dset.compute_heuristics() +dset.manually_verify_cpe_matches() +``` + +For each of the certificates, the user is then prompted for an expert knowledge, see example below: + +``` +[0/1512] Vendor: NetIQ Corporation, Name: NetIQ Identity Manager 4.7 + - [0]: CPE(uri='cpe:2.3:a:netiq:sentinel:-:*:*:*:*:*:*:*', title='NetIQ Sentinel', version='-', vendor='netiq', item_name='sentinel') + - [1]: CPE(uri='cpe:2.3:a:netiq:sentinel_agent_manager:-:*:*:*:*:*:*:*', title='NetIQ Sentinel Agent Manager', version='-', vendor='netiq', item_name='sentinel agent manager') + - [A]: All are fitting + - [X]: No fitting match +Select fitting CPE matches (split with comma if choosing more): +``` + +Here, one should type `X` and press enter, since all guesses are false positives. In different case + +``` +[1/1512] Vendor: NetIQ, Incorporated, Name: NetIQ Access Manager 4.5 + - [0]: CPE(uri='cpe:2.3:a:netiq:access_manager:4.5:hotfix1:*:*:*:*:*:*', title='NetIQ Access Manager 4.5 Hotfix 1', version='4.5', vendor='netiq', item_name='access manager') + - [1]: CPE(uri='cpe:2.3:a:netiq:access_manager:4.5:sp1:*:*:*:*:*:*', title='NetIQ Access Manager 4.5 Service Pack 1', version='4.5', vendor='netiq', item_name='access manager') + - [2]: CPE(uri='cpe:2.3:a:netiq:access_manager:4.5:-:*:*:*:*:*:*', title='NetIQ Access Manager 4.5', version='4.5', vendor='netiq', item_name='access manager') + - [A]: All are fitting + - [X]: No fitting match +Select fitting CPE matches (split with comma if choosing more): +``` + +one may answer with `0,1,2` as all CPEs may be releated to the certificate. + +The progress of the expert is periodically saved. Currently, there's no way to gracefully exit the process, just do keyboard interrupt if you want to stop. The json will be updated and next time you will get prompted only for the unlabeled certificates. diff --git a/fips_oop_demo.py b/fips_oop_demo.py deleted file mode 100644 index 7015574e..00000000 --- a/fips_oop_demo.py +++ /dev/null @@ -1,75 +0,0 @@ -from pathlib import Path -from datetime import datetime -import logging -import click -from sec_certs.dataset import FIPSDataset, FIPSAlgorithmDataset -from sec_certs.configuration import config -from sec_certs.helpers import analyze_matched_algs - -@click.command() -@click.option('--config-file', help='Path to config file') -@click.option('--json-file', help='Path to dataset json file') -@click.option('--no-download-algs', help='don\'t download algs', is_flag=True) -def main(config_file, json_file, no_download_algs): - logging.basicConfig(level=logging.INFO) - start = datetime.now() - - # Load config - config.load(config_file if config_file else 'sec_certs/settings.yaml') - - # Create empty dataset - dset = FIPSDataset({}, Path('./fips_dataset'), 'sample_dataset', 'sample dataset description') - - # this is for creating test dataset, usually with small number of pdfs - # dset = FIPSDataset({}, Path('./fips_test_dataset'), 'small dataset', 'small dataset for keyword testing') - - # Load metadata for certificates from CSV and HTML sources - dset.get_certs_from_web(json_file=json_file, redo=True) - - logging.info(f'Finished parsing. Have dataset with {len(dset)} certificates.') - # Dump dataset into JSON - dset.to_json(dset.root_dir / 'fips_full_dataset.json') - logging.info(f'Dataset saved to {dset.root_dir}/fips_full_dataset.json') - - logging.info("Converting pdfs") - dset.convert_all_pdfs() - dset.to_json(dset.root_dir / 'fips_full_dataset.json') - - logging.info("Extracting keywords now.") - dset.extract_keywords(redo=True) - - logging.info(f'Finished extracting certificates for {len(dset.certs)} items.') - logging.info("Dumping dataset again...") - dset.to_json(dset.root_dir / 'fips_full_dataset.json') - - logging.info("Searching for tables in pdfs") - - not_decoded_files = dset.extract_certs_from_tables() - - logging.info(f"Done. Files not decoded: {not_decoded_files}") - dset.to_json(dset.root_dir / 'fips_mentioned.json') - logging.info("Parsing algorithms") - if not no_download_algs: - aset = FIPSAlgorithmDataset({}, Path('fips_dataset/web/algorithms'), 'algorithms', 'sample algs') - aset.get_certs_from_web() - - dset.algorithms = aset - - logging.info("finalizing results.") - - dset.finalize_results() - - logging.info('dump again') - dset.to_json(dset.root_dir / 'fips_full_dataset.json') - - dset.get_dot_graph('different_new') - - data = dset.match_algs() - analyze_matched_algs(data) - - end = datetime.now() - logging.info(f'The computation took {(end - start)} seconds.') - - -if __name__ == '__main__': - main() -- cgit v1.3.1