AN1962 SEC1110/SEC1210 Linux Setup

Total Page:16

File Type:pdf, Size:1020Kb

AN1962 SEC1110/SEC1210 Linux Setup AN1962 SEC1110/SEC1210 Linux Setup Author: VishnuPriya Padmanabhan Microchip Technology Inc. INTRODUCTION This document explains the installation of SEC1110/SEC1210 CCID reader in Linux on different platforms. Smartcard reader installation under Linux x86 The below described setup was done using Fedora 14 with kernel version 2.6.35.6-45 REQUIRED LIBRARIES The following libraries are prerequisite to install a USB smartcard reader under Linux x86. 1. libusb 1.0.8 2. pcsc-tools 3. libpcsc-lite 4. libccid Following are the dependencies for the installation of above libraries: 1. gnu gcc,make 2. libudev 3. libtool 4. perl-Gtk2 LIBUSB-1.0.8 Obtain the libusb package from sourceforge.net/projects/libusb/ % tar xvjf libusb-1.0.8.tar.bz2 % cd libusb-1.0.8 %su #As ROOT perform % ./configure % make % make install Note 1: There is a limitation in using Microchip’s Dual Slot Reader with libusb where the slot with card always pres- ent is not accessible or simply stated, the second interface of the reader is not accessible. The limitation is not noticed when tested with pcsclite-1.7.4 compiled using libudev enabled and libusb disabled. 2: The author has added support for libudev since pcsclite -1.6.8, while removing libhal. http://ludovicrous- seau.blogspot.com/2011/02/pcscd-now-uses-libudev-instead-of.html LIBUDEV-DEV In case of a Fedora system Install libudev development files as: %yum install libudev-devel Or in case of Ubuntu, use: %sudo apt-get install libudev-dev 2015 Microchip Technology Inc. DS00001962A-page 1 AN1962 PCSC-LITE Obtain tar file for the pcsc-lite version 1.7.4 from https://alioth.debian.org/frs/?group_id=30105 % tar xvjf pcsc-lite-1.7.4.tar.bz2 % cd pcsc-lite-1.7.4 %su #As ROOT perform % ./configure –enable-libusb –disable-libudev --enable-debugatr % make % make install In case of following with section 2.1.3 use below configuration: % ./configure –enable-libudev –disable-libusb --enable-debugatr % make % make install PCSC-TOOLS Obtain tar file for pcsc-tools from http://ludovic.rousseau.free.fr/softwares/pcsc-tools/ % tar xvf pcsc-tools-1.4.17.tar.gz % cd pcsc-tools-1.4.17 %su #As ROOT perform % ./configure % make % make install CCID FREE SOFTWARE DRIVER Obtain a copy of the free driver ccid-1.4.4.tar.bz2 from http://pcsclite.alioth.debian.org/ccid.html % tar xvjf ccid-1.4.4.tar.bz2 % cd ccid-1.4.4 % cd readers Here is present a file “supported_readers.txt” containing the list of supported readers. Microchip's smart card reader SEC1110/SEC1210 needs to be added to this list along with its VID and PID. Add the following at the end of the “sup- ported_readers.txt” for Microchip device to be detected as smartcard reader. For Single Slot device # SMSC 0x0424:0x1011:SEC1x10 SmartCard Reader For Dual Slot device # SMSC 0x0424:0x1200:SEC1x10 Dual Slot SmartCard Reader Where 0x0424 Stands for Microchip’s VID and following value corresponds to the PID of the Device. Now as ROOT do: % ./configure % make % make install PERL-GTK2 This dependency will be required to run the tools obtained using pcsc-tools. In Fedora use: %su %yum install perl-Gtk2 OTHER DEPENDENCIES For other dependency library installation follow the general steps % tar xvf library.tar.gz Or: % tar xvjf library.tar.bz2 % cd library DS00001962A-page 2 2015 Microchip Technology Inc. AN1962 As ROOT perform: % ./configure % make % make install OPENSC OpenSC is a tool that can be used to list the smartcard readers installed in a system. This tool can be installed manually as: % tar xvf opensc-0.12.0.tar.gz % cd opensc-0.12.0 %su #As ROOT perform % ./configure % make % make install Note: A possible issue while running OpenSC after manual installation would be with accessing libpcsclite.so.In that case, follow the solution mentioned in OpenSC website http://www.opensc-project.org/opensc/wiki/ FrequentlyAskedQuestions SMART CARD READER INSTALLATION UNDER ARM PLATFORM To Setup the SmartCard Reader on an embedded ARM platform we will be using a HOST Linux PC to Cross Compile the required libraries and then copy the compiled libraries and resources to the ARM device. In this Setup: HOST DEVICE:Ubuntu Linux 11.04 TARGET DEVICE: OpenRD Tasman System Required Libraries and Tools Create a directory to copy the libraries required for the cross compilation Toolchain. % cd /home/smsc/Desktop/ % mkdir toolchain Obtain the source tar bals for the libraries from their online repositories 1. libusb-1.0.8.tar.bz2 2. pcsc-lite 1.7.4.tar.bz2 3. ccid-1.4.4.tar.bz2 Copy these source files to our toolchain directory (/home/smsc/Desktop/toolchain/) from the place of Download. Copy OpenRD’s gcc compiler for their ARM platform from the given media to the toolchain directory % cp /home/openrd/openrd-tasman-devkit-v1.0/openrd-tasman_host_swsupportpackage/linux/gcc.tar.bz2 /home/smsc/Desktop/toolchain/ % cd /home/smsc/Desktop/toolchain/ % tar -xjvf /home/smsc/Desktop/toolchain/gcc.tar.bz2 Add this gcc location to the PATH environment variable % export PATH=/home/smsc/Desktop/toolchain/gcc/bin:$PATH Now Set the compiler variables to utilize the OpenRD compiler. % export CC=arm-none-linux-gnueabi-gcc AR= arm-none-linux-gnueabi -ar LD= arm-none-linux-gnueabi - ld STRIP= arm-none-linux-gnueabi-strip The above variables CC, AR, LD, STRIP and the corresponding names will be present as executables in the declared PATH variable. Extract Libraries Libusb,Pcsclite,Ccid Create a Separate Directory to install the cross-compiled toolchain. % mkdir –p /home/smsc/Desktop/Target % cd /home/smsc/Desktop/Target 2015 Microchip Technology Inc. DS00001962A-page 3 AN1962 LIBUSB-1.0.8 Obtain the libusb package from sourceforge.net/projects/libusb/ % tar xvjf libusb-1.0.8.tar.bz2 % cd libusb-1.0.8 %./configure --host=arm-none-linux-gnueabi --prefix=/usr % make %su #As ROOT perform % make install prefix=/home/smsc/Desktop/Target/ Now just make sure that the compiled library files support the ARM platform and not the host architecture i.e X86 Cd =/home/smsc/Desktop/Target/lib/ File lib* The command output should show that the file is supported for ARM. PCSC-LITE % tar xvjf pcsc-lite-1.7.4.tar.bz2 % cd pcsc-lite-1.7.4 % ./configure --host=arm-none-linux-gnueabi --prefix=/usr –enable-libusb –disable-libudev -- enable-debugatr PKG_CONFIG_PATH==/home/smsc/Desktop/toolchain/OpenRD/lib/pkg-config LIBUSB_CFLAGS=-I/home/smsc/Desktop/Target/include/libusb-1.0/ LIBUSB_LIBS=/home/smsc/Desktop/ Target/lib/libusb-1.0.so % make % make install prefix=/home/smsc/Desktop/Target/ Check the compatibility for ARM as done before. CCID FREE SOFTWARE DRIVER Obtain a copy of the free driver ccid-1.4.4.tar.bz2 from http://pcsclite.alioth.debian.org/ccid.html % tar xvjf ccid-1.4.4.tar.bz2 % cd ccid-1.4.4 % cd readers Here is present a file “supported_readers.txt” containing the list of supported readers. Microchip's smart card reader SEC1x10 needs to be added to this list along with its VID and PID. Add the following at the end of the “supported_read- ers.txt” for Microchip device to be detected as smartcard reader. # SMSC 0x0424:0x1011:SEC1x10 SmartCard Reader 0x0424:0x1200:SEC1x10 Dual Slot SmartCard Reader Where 0x0424 Stands for Microchip’s VID and following value corresponds to the PID of the Device. %cd /home/smsc/Desktop/toolchain/ccid-1.4.4 % ./configure --host=arm-none-linux-gnueabi –prefix=/usr PCSC_CFLAGS=-I/home/smsc/Desktop/ Target/include/PCSC/ LIBUSB_CFLAGS=-I/home/smsc/Desktop/Target/include/libusb-1.0/ LIBUSB_LIBS=/ home/smsc/Desktop/Target/lib/libusb-1.0.so --enable-usbdropdir=/home/smsc/Desktop/Target/lib/ drivers PCSC_LIBS=/home/smsc/Desktop/Target/lib/libpcsclite.so.1.0.0 //(Kindly check NOTE: in section2.3 method1) % make % make install prefix=/home/smsc/Desktop/Target/ Check the compatibility for ARM as done before. Also check for the driver file at /home/smsc/Desktop/Target//lib/driv- ers/ifd-ccid.bundle/Contents/Linux/libccid.so Copying the Installed Libraries to the ARM Device: The Directory used as prefix in the library configuration will now hold the following cross-compiled Resources: /home/smsc/Desktop/Target/lib /home/smsc/Desktop/Target/include /home/smsc/Desktop/Target/sbin /home/smsc/Desktop/Target/share The contents of these directories now need to be copied to their corresponding directories in the ARM device as follows: DS00001962A-page 4 2015 Microchip Technology Inc. AN1962 /usr/include /usr/lib /usr/share /usr/sbin To copy the compiled libraries from the host to OpenRD, two methods can be followed: Method 1: Tar the folder containing the libraries in the host and copy to the OpenRD using a USB storage device and untar the file To create a tar file of the location /home/smsc/Desktop/Target type: %tar cvjf tools.bzip2 /home/smsc/Desktop/Target %cp –f /home/smsc/Desktop/Target/tools.bzip2 /media/pendrive Move the pendrive to the OpenRD system and mount it. %cp –f /media/pendrive/tools.bzip2 /home/openrd/Desktop %cd /home/openrd/Desktop %tar xvjf tools.bzip2 %cd Target %cp –fr include/ /usr/ %cp –fr /lib/usr/ %cp –fr /sbin /usr/ The current method of setup requires a copy of the driver “libccid.so” to be copied in the same directory structure as in the host. So Create the below directory: %mkdir -p /home/smsc/Desktop/Target/lib/pcsc/drivers/ifd-ccid.bundle/Contents/Linux/ Now make a copy of the libccid.so file created in section3.2.3 to the new directory Note: This can be overcome while cross-compiling ccid-1.4.4, by changing the flag --enable-usbdropdir=/usr/lib/pcsc/drivers/ifd-ccid.bundle/Contents/Linux/ and copy the libccid.so to the OpenRD Method 2: If tar is not possible, simply copy the directory: /home/smsc/Desktop/Target While doing so an error like “the filesystem does not support copying symbolic links”, may be posted if the pendrive is in FAT filesystem.
Recommended publications
  • Release Notes
    EgoSecure Full Disk Ecnryption Release Notes Version 14.4.941.3 29/01/2020 Release Notes EgoSecure Full Disk Encryption 14.4.941.3 Contents Introduction .................................................................................................. 3 System Requirements ................................................................................. 3 Hardware Requirements ........................................................................................................... 3 Software Requirements ............................................................................................................ 3 Installation & Usage .................................................................................... 4 Setup .......................................................................................................................................... 4 Administration ........................................................................................................................... 4 Support ......................................................................................................... 4 Hotline ........................................................................................................................................ 4 Online Resources ...................................................................................................................... 4 Release Notes .............................................................................................. 5 14.4.941.3 ..................................................................................................................................
    [Show full text]
  • Smart Card Fundamentals
    Module 1: Smart Card Fundamentals Smart Card Alliance Certified Smart Card Industry Professional Accreditation Program Smart Card Alliance © 2010 CSCIP Module 1- Fundamentals Final - Version 3 - October 8, 2010 1 For CSCIP Applicant Use Only About the Smart Card Alliance The Smart Card Alliance is a not-for-profit, multi-industry association working to stimulate the understanding, adoption, use and widespread application of smart card technology. Through specific projects such as education programs, market research, advocacy, industry relations and open forums, the Alliance keeps its members connected to industry leaders and innovative thought. The Alliance is the single industry voice for smart cards, leading industry discussion on the impact and value of smart cards in the U.S. and Latin America. For more information please visit http://www.smartcardalliance.org . Important note: The CSCIP training modules are only available to LEAP members who have applied and paid for CSCIP certification. The modules are for CSCIP applicants ONLY for use in preparing for the CSCIP exam. These documents may be downloaded and printed by the CSCIP applicant. Further reproduction or distribution of these modules in any form is forbidden. Copyright © 2010 Smart Card Alliance, Inc. All rights reserved. Reproduction or distribution of this publication in any form is forbidden without prior permission from the Smart Card Alliance. The Smart Card Alliance has used best efforts to ensure, but cannot guarantee, that the information described in this report is accurate as of the publication date. The Smart Card Alliance disclaims all warranties as to the accuracy, completeness or adequacy of information in this report.
    [Show full text]
  • Leo Secure Smart Card Reader Providing PKI Authentication with Secure PIN Management
    Leo secure smart card reader providing PKI authentication with secure PIN management Ingenico Healthcare/e-ID – « River Seine » - 25, quai Gallieni – 92158 Suresnes cedex - France Tél. 33(0)1 46 25 80 80 - Fax 33 (0)1 46 25 80 30 – http://healthcare-eid.ingenico.com/ Table of contents 1. Glossary ______________________________________________________ 3 2. Introduction __________________________________________________ 4 2.1. A secure professional reader ____________________________________________ 4 2.2. Compatibility with middlewares __________________________________________ 5 3. Product description ____________________________________________ 6 3.1. Product features ______________________________________________________ 6 3.2. USB interface _________________________________________________________ 9 3.3. Smart card interface ___________________________________________________ 9 3.4. Display Interface ______________________________________________________ 9 3.5. Keypad interface _____________________________________________________ 10 3.6. Secure PIN Entry feature _______________________________________________ 10 4. Operating systems supported ___________________________________ 11 4.1. Windows® __________________________________________________________ 11 4.2. Linux _______________________________________________________________ 11 4.3. MacOS® ____________________________________________________________ 11 5. Windows platform: installation __________________________________ 12 6. Packaging ____________________________________________________
    [Show full text]
  • Smart Card Pocket Reader (USB Portable Reader)
    USB CCID SIM & SMART CARD READER UP TO 512MB MEMORY INSIDE SIM CARD EDITOR TOOL SIMPocket Combo is the innovative Smart Card reader, in a USB form factor, which offers the following functions: Smart Card Reader + SIM Card Reader + flash memory Thanks to its small size, SIMPocket Combo is a pocket device that combines the functions both of a SIM and Smart Card reader to a mass storage device - up to 512MB capacity. The flash memory on board can be handled as a removable drive, optionally to be partitioned into up to 8 areas among the five different following types: • Mass Storage, where data can be saved • CD-ROM, with Autorun function • Write Protected Mass Storage, that is read-only • Read and Write Protected Mass Storage • Encrypted Mass Storage, based on AES 256 bit Versatility and mobility are the key concepts of this innovative device. The two slots, in which the smart card and the SIM card shall be inserted, allows you to read both formats of card simultaneously; at the same time, the large memory made available meets the growing need for data and application transferability. The device is supplied with a license of SIMEdit! free of charge; SIMEdit! is the well known software by Compelson Labs that permits all GSM users to modify, copy or save all information stored in a SIM card by means of a PC. Functions supported: Features: • Flash memory for data Protocols: ISO7816 T=0 and T=1, USB CCID and application transfer • Partitioning of the Driver: Driver PC/SC for Windows 98, Windows ME, memory Windows 2000, Windows XP and Windows 2003.
    [Show full text]
  • ACR101I Technical Specifications V1.07
    ACR101I SIMicro (CCID) Smart Card and Micro SD Reader Technical Specifications V1.07 Subject to change without prior notice [email protected] www.acs.com.hk Table of Contents 1.0. Introduction ............................................................................................................. 3 1.1. SIM-sized Smart Card Reader............................................................................................... 3 1.2. Memory Storage Device ........................................................................................................ 3 1.3. Contactless Feature ............................................................................................................... 3 1.4. Ease of Integration ................................................................................................................. 3 2.0. Features ................................................................................................................... 4 3.0. Typical Applications ................................................................................................ 5 4.0. Technical Specifications ......................................................................................... 6 5.0. Opening the card cover........................................................................................... 8 Page 2 of 9 www.acs.com ACR101I – Technical Specifications [email protected] Version 1.07 www.acs.com.hk 1.0. Introduction The ACR101I SIMicro (CCID) is more than just your ordinary SIM-sized smart card reader. With
    [Show full text]
  • Common Access Card for Xerox® Versalink® Printers System Configuration Guide
    Version 1.5 September 2019 Common Access Card for Xerox® VersaLink® Printers System Configuration Guide © 2017 Xerox Corporation. All rights reserved. Unpublished rights reserved under the copyright laws of the United States. Contents of this publication may not be reproduced in any form without permission of Xerox Corporation. Copyright protection claimed includes all forms of matters of copyrightable materials and information now allowed by statutory or judicial law or hereinafter granted, including without limitation, material generated from the software programs which are displayed on the screen such as styles, templates, icons, screen displays, looks, and so on. Xerox® and Xerox and Design®, Global Print Driver®, VersaLink®, and Mobile Express Driver® are trademarks of Xerox Corporation in the United States and/or other countries. PostScript® is a trademark of Adobe Systems Incorporated in the United States and/or other countries. Windows® is a trademark of Microsoft Corporation in the United States and other countries. Document Version 1.3 November 2017 BR22729 Contents 1 Introduction .......................................................................................................................................................................................... 1-1 Purpose....................................................................................................................................................................................................1 -1 Target Audience ..................................................................................................................................................................................1
    [Show full text]
  • ACR101 CCID Technical Specifications V1.01
    ACR10 1 SIMicro (CCID) Smart Card and Micro-SD Reader Technical Specifications [email protected] Subject to change without prior notice www.acs.com.hk Table of Contents 1.0. Introduction ............................................................................................................. 3 1.1. SIM-Sized Smart Card Reader .............................................................................................. 3 1.2. Memory Storage Device ........................................................................................................ 3 1.3. Contactless Feature ............................................................................................................... 3 1.4. Plug and Play Feature ........................................................................................................... 3 2.0. Features ................................................................................................................... 4 3.0. Typical Applications ................................................................................................ 5 4.0. Technical Specifications ......................................................................................... 6 Page 2 of 8 www.acs.com ACR101 Technical Specifications [email protected] Document Title Here Document Title Here .hk DocumentVersion 1.Title01 Here www.acs.com.hk 1.0. Introduction The ACR101 SIMicro (CCID) is more than just your ordinary SIM-Sized smart card reader. With the combination of a smart card reader and a Micro-SD card slot in a compact
    [Show full text]
  • Liteo PC/SC, USB and CCID Compliant Smart Card Reader
    Readers Liteo PC/SC, USB and CCID compliant smart card reader A reader compliant with industry standards and easy to use • Liteo is a PC/SC and CCID compliant smart card reader (class 1 reader) that meets USB 2.0 standard. • Liteo is an interface between a smart card and corresponding PC-applications. The reader reads all microprocessor cards (ISO 7816 1-4 compliant smart cards). • Compliant with the CCID standard, Liteo is a “Plug&Play” reader: plug it to the computer via USB port and it is automatically installed. Therefore Liteo is a very easy- to-use reader. • Liteo has all necessary certifications for a transparent smart card reader: Microsoft WHQL certified, compliant with Linux et MacOS X environments; EMV 2000 Level 1; CE; FCC Part 15 Class B. Smartcard USB Readers Liteo A reader dedicated to mass deployment • The design and packaging of the Liteo reader have been specially created to optimize the costs of large-scale deployment. • Its design is environment-friendly and highly recyclable : there is no screw, plastic materials have been limited to be recycled easily, and there is no need for a CD-ROM. A reader compliant NAME Liteo with all smart card applications USB 2.0 (& USB 1.1) full speed (12 Mbps) Designed for individuals, Liteo can be used with all smart card based PC interface applications: IT Security (logical access, access logon), e-ID (e- Compliant PC/SC and CCID government), Transport (digital tachograph cards, mass transit cards), ISO 7816 Healthcare (health insurance cards)... Smart card interface T=0 and T=1 protocols Communication speed: up to 420Kbps Supported ISO 7816-1 to -4 (microprocessor smart cards) smart cards USB 2.0 full speed (and USB 1.1) EMV Level 1 Certifications Microsoft WHQL dified without prior consent.
    [Show full text]
  • 73S12xxf USB-CCID Linux DFU Host Application Users Guide
    Simplifying System IntegrationTM 73S12xxF USB-CCID Linux DFU Host Application Users Guide April 27, 2009 Rev. 1.00 UG_12xxF_038 73S12xxF USB-CCID Linux DFU Host Application Users Guide UG_12xxF_038 © 2009 Teridian Semiconductor Corporation. All rights reserved. Teridian Semiconductor Corporation is a registered trademark of Teridian Semiconductor Corporation. Simplifying System Integration is a trademark of Teridian Semiconductor Corporation. Microsoft is a registered trademark of Microsoft Corporation. Windows XP is a registered trademark of Microsoft Corporation. Visual Studio is a registered trademark of Microsoft Corporation. Linux is a registered trademark of Linus Torvalds. All other trademarks are the property of their respective owners. Teridian Semiconductor Corporation makes no warranty for the use of its products, other than expressly contained in the Company’s warranty detailed in the Teridian Semiconductor Corporation standard Terms and Conditions. The company assumes no responsibility for any errors which may appear in this document, reserves the right to change devices or specifications detailed herein at any time without notice and does not make any commitment to update the information contained herein. Accordingly, the reader is cautioned to verify that this document is current by comparing it to the latest version on http://www.teridian.com or by checking with your sales representative. Teridian Semiconductor Corp., 6440 Oak Canyon, Suite 100, Irvine, CA 92618 TEL (714) 508-8800, FAX (714) 508-8877, http://www.teridian.com 2 Rev. 1.0 UG_12xxF_038 73S12xxF USB-CCID Linux DFU Host Application Users Guide Table of Contents 1. Introduction ......................................................................................................................................... 4 2. Building the dfu-util Program ....................................................................................................... 4 3. Running the dfu-util Program ......................................................................................................
    [Show full text]
  • Technical Specification of ACR100F Simflash (CCID)
    ACR100F SIMFlash (CCID) Technical Specifications V4.02 Subject to change without prior notice [email protected] www.acs.com.hk Table of Contents 1.0. Introduction ............................................................................................................... 3 1.1. Plug-in (SIM-sized) Card Reader .......................................................................................... 3 1.2. Mass Storage Device ............................................................................................................. 3 1.3. Plug and Play Feature ........................................................................................................... 3 2.0. Features ..................................................................................................................... 4 3.0. Typical Applications ................................................................................................. 5 4.0. Technical Specifications .......................................................................................... 6 Page 2 of 7 ACR100F – Technical Specifications [email protected] Version 4.02 www.acs.com.hk 1.0. Introduction The ACR100F SIMFlash, being more than just a smart card reader, has a maximum of built-in 8 GB flash memory. Designed both to access plug-in (SIM-sized) smart cards and data or application storage, the ACR100F is ideal for GSM solutions such as GSM management software and VoIP applications. In addition to this, the ACR100F can also be used in different applications, such as electronic payment
    [Show full text]
  • SAC 9.0 (Beta)
    Gemalto’s SafeNet Authentication Client MAC CUSTOMER RELEASE NOTES Version: 9.0 – Mac (Maintenance Release) Build 51 Issue Date: 31 May 2015 Document Part Number: 007-012829-002, Revision A Contents Product Description .................................................................................................................................................................... 2 Release Description .................................................................................................................................................................... 2 Licensing..................................................................................................................................................................................... 2 Default Password ........................................................................................................................................................................ 2 Advisory Notes ............................................................................................................................................................................ 2 AKS Bundle Support Script .................................................................................................................................................. 2 Compatibility Information ............................................................................................................................................................ 3 Browsers .............................................................................................................................................................................
    [Show full text]
  • CAC Broch:Layout 1 10/5/09 10:55 AM Page 1
    CAC Broch:Layout 1 10/5/09 10:55 AM Page 1 Introducing a bizhub Solution for: Common Access Card (CAC) and Personal Identification Verification (PIV) Card Authentication CAC Broch:Layout 1 10/5/09 10:55 AM Page 2 WHO’S USING YOUR MFPS? WHICH DOCUMENTS ARE THEY SCANNING – AND WHERE ARE THEY SENDING YOUR MOST SENSITIVE INFORMATION? TO ANSWER THESE CRITICALLY IMPORTANT QUESTIONS, KONICA MINOLTA HAS TEAMED WITH ACTIVIDENTITY™ CORPORATION IN CREATING THE BIZHUB CAC (COMMON ACCESS CARD) & PIV (PERSONAL IDENTIFICATION VERIFICATION) CARD SOLUTION: A COMPREHENSIVE AUTHENTICATION SYSTEM FOR THE DEPARTMENT OF DEFENSE (DOD) AND OTHER GOVERNMENT FACILITIES UTILIZING EITHER CAC OR PIV CARD AUTHENTICATION. Who? Which? Where? With bizhub, you’ll know the answer. A smart solution for digital ID. Increase security, speed workflow. ActivIdentity and Konica Minolta. CAC and PIV cards represent the latest advance The Konica Minolta bizhub CAC & PIV Solution is This partnership solution fulfills the technically in “smart card” identification. Used by the United a comprehensive application layer developed to aggressive security requirements of the States Department of Defense as a standard ID for reside within one or more bizhub MFP devices. government – and ensures compliance with military, government and civilian employees, CAC It meets the federal government’s requirement the latest security standards and mandates, and PIV cards are used for general identification for “two factor” authentication and facilitates including FIPS 140, FIPS 201, and ISO 15408 purposes – and can also be used to control access the use of public key information (PKI) (Common Criteria) Security Certification at to computers, networks, and facilities.
    [Show full text]