Biometric Sensor SDK. Integration Guide 4.17

Size: px
Start display at page:

Download "Biometric Sensor SDK. Integration Guide 4.17"

Transcription

1 Biometric Sensor SDK Integration Guide 4.17

2 Disclaimer Disclaimer of Warranties and Limitations of Liabilities Legal Notices Copyright VASCO Data Security, Inc., VASCO Data Security International GmbH. All rights reserved. Trademarks VASCO, VACMAN, IDENTIKEY, axsguard, DIGIPASS, CertiID, CRONTO, MYDIGIPASS.COM, the MYDIGIPASS.COM MD Lock logo, the DP+ logo, the VASCO V logo and the CRONTO logo are registered or unregistered trademarks of VASCO Data Security, Inc. and/or VASCO Data Security International GmbH in the U.S. and other countries. VASCO reserves all rights to the trademarks, service marks and logos of VASCO and its subsidiaries. Intellectual Property VASCO Software, documents and related materials ( Materials ) made available on the Site contain proprietary and confidential information. All title, rights and interest in VASCO Software and Materials, updates and upgrades thereof, including software rights, copyrights, patent rights, trade secret rights, sui generis database rights, and all other intellectual and industrial property rights, vest exclusively in VASCO or its licensors. No VASCO Software or Materials published in this Site may be downloaded, copied, transferred, disclosed, reproduced, redistributed, or transmitted in any form or by any means, electronic, mechanical or otherwise, for any commercial or production purpose, except as otherwise marked or when expressly permitted by VASCO in writing. Disclaimer VASCO accepts no liability for the accuracy, completeness, or timeliness of Site content, or for the reliability of links to and content of external or third party websites. VASCO shall have no liability under any circumstances for any loss, damage, or expense incurred by you, your company, or any third party arising from the use or inability to use VASCO Software or Materials, or any third party material available or downloadable from the Site. VASCO will not be liable in relation to any loss/damage caused by modification of these Legal Notices or Site content. Reservation VASCO reserves the right to modify these Notices and the content at any time. VASCO likewise reserves the right to withdraw or revoke consent or otherwise prohibit use of the VASCO Software or Materials if such use does not conform to the terms of any written agreement between VASCO and you, or other applicable terms that VASCO publishes from time to time. Date:

3 Table of Contents Table of Contents 1 Introduction Introducing the Biometric Sensor SDK Overview Available methods Check biometric authentication support by the platform Check biometric authentication applicability Start biometric authentication of user Stop biometric authentication of user Integrating the Biometric Sensor SDK Integrating the Biometric Sensor SDK with ios Integrating the Biometric Sensor SDK with Android Known Issues Technical Support

4 Table of Contents Index of Tables Table 1: Method Signature (Checking Biometric Authentication Support by the Platform)... 8 Table 2: Method Signature (Checking Biometric Authentication Applicability)... 8 Table 3: Methods Signature (Verifying the User s Fingerprint on Android with built-in Dialog)... 9 Table 4: Methods Signature (Verifying the User s Fingerprint on Android without built-in Dialog)... 9 Table 5: Methods Signature (Callbacks for User s Fingerprint Verification) Table 6: Dialog Popup Customization Attributes Table 7: Method Signature (Start Biometric Authentication on ios) Table 8: Method Signature (Stop Biometric Authentication)

5 Introduction 1 Introduction Welcome to the Biometric Sensor SDK Integration Guide! This document provides information about: Functions of the Biometric Sensor SDK, with parameter and method descriptions Integration steps This document does not provide: An overview of DIGIPASS for APPS 1 and its components (refer to the DIGIPASS for APPS Product Guide) Instructions to integrate the Client Device Data Collector (CDDC) SDK (refer to the CDDC SDK Integration Guide) Instructions to integrate the Client Score SDK (refer to the Client Score SDK Integration Guide) Instructions to integrate the Device Binding SDK (refer to the Device Binding SDK Integration Guide) Instructions to integrate the DIGIPASS Bluetooth Token SDK (refer to the DIGIPASS Bluetooth Token SDK Integration Guide) Instructions to integrate the DIGIPASS SDK (refer to the DIGIPASS SDK Integration Guide) Instructions to integrate the DIGIPASS Software Advanced Provisioning Protocol (DSAPP) SDK (refer to the DSAPP SDK Integration Guide) Instructions to integrate the Face Recognition SDK (refer to the Face Recognition SDK Integration Guide) Instructions to integrate the Geolocation SDK (refer to the Geolocation SDK Integration Guide) Instructions to integrate the Image Generator SDK (refer to the Image Generator SDK Integration Guide) Instructions to integrate the Image Scanner SDK (refer to the Image Scanner SDK Integration Guide) Instructions to integrate the Notification SDK (refer to the Notification SDK Integration Guide) Instructions to integrate the Root Detection SDK (refer to the Root Detection SDK Integration Guide) Instructions to integrate the Runtime Application Security Protection (RASP) SDK (refer to the RASP SDK Integration Guide) Instructions to integrate the Secure Messaging SDK Client (refer to the Secure Messaging SDK Client Integration Guide) Instructions to integrate the Secure Messaging SDK Server (refer to the Secure Messaging SDK Server Integration Guide) Instructions to integrate the Secure Storage SDK (refer to the Secure Storage SDK Integration Guide) Instructions to integrate the White-Box Cryptography (WBC) SDK (refer to the White-Box Cryptography SDK Integration Guide) 1 As of version 4.3.2, the package name of the DIGIPASS SDK has been changed to DIGIPASS for APPS. 5

6 Introducing the Biometric Sensor SDK 2 Introducing the Biometric Sensor SDK This chapter contains an overview of the Biometric Sensor SDK and information about the SDK s functions. This chapter covers the following topics: Overview Available methodsoverview 6

7 Introducing the Biometric Sensor SDK 2.1 Overview The Biometric Sensor SDK provides facilities to use biometric authentication to increase user convenience during the identification process while retaining a secure solution. It also provides methods to test whether biometric authentication is supported by the platform and has been enabled by the user before actually performing biometric authentication. The following biometric authentication methods are supported: Fingerprint recognition, Android and ios (with Touch ID) Face recognition, ios only (with Face ID) The Biometric Sensor SDK can be used on devices with a biometric sensor for the following platforms: Android devices: 6.0 and later Samsung Android devices: 4.2 and later ios devices: 7.0 and later The Biometric Sensor SDK includes the following: A framework named BiometricSensorSDK.framework for ios A JAR file named BiometricSensorSDK.jar for Android 7

8 Introducing the Biometric Sensor SDK 2.2 Available methods Check biometric authentication support by the platform This function checks whether the biometric authentication feature is supported by the platform. Both hardware and software need to support them. Table 1: Method Signature (Checking Biometric Authentication Support by the Platform) Platform ios Android Method Signature +(BOOL) isbiometricauthenticationsupportedbyplatform: (BiometricAuthenticationMethod) biometricauthenticationmethod; public static boolean isuserfingerprintsupportedbyplatform; Check biometric authentication applicability This function checks whether the biometric authentication feature is currently usable on the device, i.e. supported by the platform and enabled by the user with at least one user biometric data registered (e.g. fingerprint). Table 2: Method Signature (Checking Biometric Authentication Applicability) Platform ios Android Method Signature +(BOOL) isbiometricauthenticationmethodusable: (BiometricAuthenticationMethod) biometricauthenticationmethod; public static boolean isuserfingerprintusable(); 8

9 Introducing the Biometric Sensor SDK Start biometric authentication of user Android This function uses the biometric authentication features of the device to validate the user s biometric data (e.g. fingerprint). On Android, a dialog must be implemented and displayed by the application during the identification process. The Biometric Sensor SDK provides two methods to verify the user s fingerprint: A method which displays a dialog handled by the Biometric Sensor SDK. The look of the dialog is customizable, e.g. text, color, icon, etc. (see (b) Dialog customization). Table 3: Methods Signature (Verifying the User s Fingerprint on Android with built-in Dialog) Method Signature public static void verifyuserfingerprint(biometricsensorsdklistener listener, Activity activity, BiometricSensorSDKDialogParams params); A method which doesn t display any dialog. It s up to the application integrating the Biometric Sensor SDK to build and display a respective dialog. Table 4: Methods Signature (Verifying the User s Fingerprint on Android without built-in Dialog) Method Signature public static void verifyuserfingerprint(biometricsensorsdklistener listener, Activity activity); 9

10 Introducing the Biometric Sensor SDK (a) Verification callback functions A listener must be implemented and provided as an input parameter of the verification method in order to receive the callbacks related to the user s fingerprint verification: Table 5: Methods Signature (Callbacks for User s Fingerprint Verification) Method Signature Description void onfingerprintscansucceeded() Called if verification was successful void onfingerprintscanfailed(int Called if verification failed (e.g. wrong user s fingerprint failcode, String failstring) or quality issue) void onfingerprintscancancelled() Called if the user cancels the verification void onfingerprintscanerror(int Called if an error occurred during user s fingerprint errorcode, String errorstring) verification (e.g. locked or time-out) The string returned by the callback methods are generated by the OS and are localized according to the device language, they can be displayed as it to the user. 10

11 Introducing the Biometric Sensor SDK (b) Dialog customization The dialog built by Biometric Sensor SDK contains texts describing the purpose of the operation and is cancelable. It can contain an icon and a fallback button. The color of the text and background can be customized (ARGB). Table 6: Dialog Popup Customization Attributes Attribute Description Default value Text color Color of the description text and dialog buttons 0xFF (black) Background color Background color of the dialog 0xFFFFFFFF (white) Fail text color Color of the text in case of authentication failure 0xFFFF0000 (red) Description Description message displayed in the dialog to explain the purpose of the dialog Please, use your fingerprint scanner to authenticate. Default authentication failed text Message displayed in case of authentication failure Authenticatio n failed. Cancel text Text of the cancel button Cancel Fallback mechanism used Indicates whether a fallback mechanism false button must be displayed Fallback mechanism text Text of the fallback mechanism button Use fallback Icon used Indicates whether an icon must be displayed false Icon name Name of the icon from the resource folder null ios Table 7: Method Signature (Start Biometric Authentication on ios) Method Signature +(void) startuserauthenticationwithparams: (BiometricSensorSDKParams*) biometricsensorsdkparams; A BiometricSensorSDKParams object must be provided to set the following parameters: biometricauthenticationmethod to set the authentication method which must be used to authenticate the user (Touch ID, Face ID or any). This parameter is optional, the default value is BiometricAuthenticationMethodAny. usefallbackmechanism to display a fallback mechanism button after an authentication failure. This parameter is optional, the default value is No. If this button is pressed, the onbiometricauthenticationfallbackcalled callback will be called. It is up to the integrator to implement this fallback mechanism. 11

12 Introducing the Biometric Sensor SDK fallbackmechanismtext the text displayed on the fallback button. This parameter is mandatory if usefallbackmechanism is Yes. operationdescription the text displayed in the biometric view giving the reason for the biometric authentication. This parameter is optional, not text is displayed by default. onbiometricauthenticationsucceeded the block that will be called in case of success during biometric authentication. This parameter is mandatory. onbiometricauthenticationfailed the block that will be called in case of failure during biometric authentication. This parameter is mandatory. onbiometricauthenticationcancelled the block that will be called if the biometric authentication is cancelled by the user. This parameter is mandatory. onbiometricauthenticationfallbackcalled the block that will be called if the fallback mechanism button is pressed by the user. This parameter is mandatory if usefallbackmechanism is Yes. onbiometricauthenticationerror the block that will be called in case of exception catched during biometric authentication. This parameter is mandatory Stop biometric authentication of user This function stops a biometric authentication process. If no authentication is in progress, nothing happens. Table 8: Method Signature (Stop Biometric Authentication) Platform Method Signature ios +(void) stopuserauthentication; Android public static void stopuserfingerprintverification; 12

13 Integrating the Biometric Sensor SDK 3 Integrating the Biometric Sensor SDK This chapter provides descriptions of how to integrate the Biometric Sensor SDK. This chapter covers the following topic: Integrating the Biometric Sensor SDK with ios Integrating the Biometric Sensor SDK with Android 13

14 Integrating the Biometric Sensor SDK 3.1 Integrating the Biometric Sensor SDK with ios Using the Biometric Sensor SDK in your ios project 1. Link BiometricSensorSDK.framework from the DIGIPASS for APPS package to your Xcode project. 2. In the Build Settings > Other Linker flags section of your Xcode project, add the line -weak_framework LocalAuthentication NOTE If the integration is done with a version of Xcode lower than 9, the following framework must be added as dependencies and the related lines must be added in the Build Settings > Other Linker flags section of your Xcode project: -weak_framework IOSurface -weak_framework FileProvider CAUTION The NSFaceIDUsageDescription key must be defined in the Info.plist file when using Xcode 9 or later. You are now ready to use the Biometric Sensor SDK. For more information about integrating the functions, see 2 Introducing the Biometric Sensor SDK. 14

15 Integrating the Biometric Sensor SDK 3.2 Integrating the Biometric Sensor SDK with Android Using the Biometric Sensor SDK in your Android project 1. Link BiometricSensorSDK.jar from the DIGIPASS for APPS in your project. 2. Link UtilitiesSDK.jar from the DIGIPASS for APPS in your project. 3. Link the android-support-v4 library from Google in version and later. 4. The Biometric Sensor SDK also manages fingerprints authentication on Samsung Android devices since Android 4.2. To manage fingerprint on those devices you must link the Pass SDK in your project. If you don t link the Pass SDK library the Biometric Sensor SDK will only be able to manages fingerprint for Android devices running Android 6.0 and later. The Pass SDK can be downloaded from Samsung s developer website: Once these libraries are linked in your project you will be able to verify fingerprints on: Samsung devices with fingerprint scanner running Android from version 4.2 (Jelly Bean API 17). All other devices with fingerprint scanner running Android from 6.0 (Marshmallow API 23). CAUTION To be able to access the fingerprint service, you need to set appropriate permissions in your application configuration. For Android 6.0 devices and later, you need to add the USE_FINGERPRINT permission to the AndroidManifest.xml file. For Android Samsung devices, you need to add the com.samsung.android.providers.context.permission.write_use_app_feature_survey permission to the AndroidManifest.xml file. You are now ready to use the Biometric Sensor SDK. For more information about integrating the functions, see 2 Introducing the Biometric Sensor SDK. 15

16 Known Issues 4 Known Issues This chapter lists issues that have not yet been resolved for the current Biometric Sensor SDK version. In addition, this chapter provides information about possible workarounds, if available. Incorrect error code in case of cancel on some Samsung devices When cancelling the fingerprint authentication on some Samsung devices, a timeout error code can be randomly returned instead of a cancel error code. The impacted devices are: Samsung Galaxy Alpha (4.4.4) Samsung Galaxy Note 4 Edge (6.0.1) 16

17 Technical Support 5 Technical Support If you encounter problems with a VASCO product please do the following: 1. Check whether your problem has already been solved and reported in the Knowledge Base at the following URL: 2. If there is no solution in the Knowledge Base, please contact the company which supplied you with the VASCO product. If your supplier is unable to solve your problem, they will automatically contact the appropriate VASCO expert. 17

Root Detection SDK. Integration Guide 4.17

Root Detection SDK. Integration Guide 4.17 Root Detection SDK Integration Guide 4.17 Disclaimer Disclaimer of Warranties and Limitations of Liabilities Legal Notices Copyright 2013 2017 VASCO Data Security, Inc., VASCO Data Security International

More information

INTEGRATION GUIDE. DIGIPASS Authentication for VMware View

INTEGRATION GUIDE. DIGIPASS Authentication for VMware View INTEGRATION GUIDE DIGIPASS Authentication for VMware View Disclaimer Disclaimer of Warranties and Limitation of Liabilities All information contained in this document is provided 'as is'; VASCO Data Security

More information

Notification SDK. Integration Guide 4.17

Notification SDK. Integration Guide 4.17 Notification SDK Integration Guide 4.17 Disclaimer Disclaimer of Warranties and Limitations of Liabilities Legal Notices Copyright 2013 2017 VASCO Data Security, Inc., VASCO Data Security International

More information

GETTING STARTED GUIDE. Mobile Admin. Version 8.2

GETTING STARTED GUIDE. Mobile Admin. Version 8.2 GETTING STARTED GUIDE Mobile Admin Version 8.2 Last Updated: April 24, 2018 GETTING STARTED GUIDE: MOBILE ADMIN 2018 SolarWinds Worldwide, LLC. All rights reserved. This document may not be reproduced

More information

SafeNet MobilePASS+ for Android. User Guide

SafeNet MobilePASS+ for Android. User Guide SafeNet MobilePASS+ for Android User Guide All information herein is either public information or is the property of and owned solely by Gemalto NV. and/or its subsidiaries who shall have and keep the

More information

DIGIPASS CertiID. Installation Guide 3.1.0

DIGIPASS CertiID. Installation Guide 3.1.0 DIGIPASS CertiID Installation Guide 3.1.0 Disclaimer Disclaimer of Warranties and Limitations of Liabilities The Product is provided on an 'as is' basis, without any other warranties, or conditions, express

More information

Trending: Mobile Payments. Dan McLoughlin, VASCO Data Security Julian Sawyer, Starling Bank

Trending: Mobile Payments. Dan McLoughlin, VASCO Data Security Julian Sawyer, Starling Bank Trending: Mobile Payments Dan McLoughlin, VASCO Data Security Julian Sawyer, Starling Bank Trending: Mobile Payments Dan McLoughlin, VASCO Data Security Can banks provide a frictionless consumer experience

More information

DIGIPASS. Authentication for Epic Hyperspace Administrator Guide 3.6

DIGIPASS. Authentication for Epic Hyperspace Administrator Guide 3.6 DIGIPASS Authentication for Epic Hyperspace Administrator Guide 3.6 Disclaimer Disclaimer of Warranties and Limitations of Liabilities Legal Notices Copyright 2015 VASCO Data Security, Inc., VASCO Data

More information

axsguard Identifier Product Guide Product Guide axsguard AXSGuard ConfigurationTool

axsguard Identifier Product Guide Product Guide axsguard AXSGuard ConfigurationTool Product Guide axsguard AXSGuard ConfigurationTool 0 2009 Product Guide axsguard Identifier axsguard Identifier axsguard Identifier DIGIPASS ConfigurationTool v1.5 0.1 axsguard Identifier Product Guide

More information

Mobile Admin GETTING STARTED GUIDE. Version 8.2. Last Updated: Thursday, May 25, 2017

Mobile Admin GETTING STARTED GUIDE. Version 8.2. Last Updated: Thursday, May 25, 2017 GETTING STARTED GUIDE Mobile Admin Version 8.2 Last Updated: Thursday, May 25, 2017 Retrieve the latest version from: https://support.solarwinds.com/success_center/mobile_admin/mobile_admin_documentation

More information

PLAINSCAPITAL BANK SAMSUNG PAY TERMS AND CONDITIONS - PERSONAL

PLAINSCAPITAL BANK SAMSUNG PAY TERMS AND CONDITIONS - PERSONAL PLAINSCAPITAL BANK SAMSUNG PAY TERMS AND CONDITIONS - PERSONAL Last Modified: 3/12/2018 These terms and conditions ( Terms and Conditions ) are a legal agreement between you and PlainsCapital Bank that

More information

Terms of Use. Changes. General Use.

Terms of Use. Changes. General Use. Terms of Use THESE TERMS AND CONDITIONS (THE TERMS ) ARE A LEGAL CONTRACT BETWEEN YOU AND SPIN TRANSFER TECHNOLOGIES ( SPIN TRANSFER TECHNOLOGIES, STT, WE OR US ). THE TERMS EXPLAIN HOW YOU ARE PERMITTED

More information

Desktop App Release Notes

Desktop App Release Notes BlackBerry AtHoc Networked Crisis Communication Desktop App Release Notes Release 6.2.x.275, November 2017 (Windows) Release 1.6.0, April 2017 (Mac) Copyright 2014 2017 BlackBerry Limited. All Rights Reserved.

More information

VACMAN Controller. HSM Integration Guide - White Paper. Revision 4.0

VACMAN Controller. HSM Integration Guide - White Paper. Revision 4.0 VACMAN Controller HSM Integration Guide - White Paper Revision 4.0 Disclaimer Disclaimer of Warranties and Limitations of Liabilities The Product is provided on an 'as is' basis, without any other warranties,

More information

OCTOSHAPE SDK AND CLIENT LICENSE AGREEMENT (SCLA)

OCTOSHAPE SDK AND CLIENT LICENSE AGREEMENT (SCLA) OCTOSHAPE SDK AND CLIENT LICENSE AGREEMENT (SCLA) This is a License Agreement (the "Agreement") for certain code (the Software ) owned by Akamai Technologies, Inc. ( Akamai ) that is useful in connection

More information

Avaya Software Keycode Installation Guide

Avaya Software Keycode Installation Guide Avaya Software Keycode Installation Guide 2010 Avaya Inc. P0607323 04 2010 Avaya Inc. All Rights Reserved. Notices While reasonable efforts have been made to ensure that the information in this document

More information

Desktop App Release Notes

Desktop App Release Notes BlackBerry AtHoc Networked Crisis Communication Desktop App Release Notes Release 6.2.x.277, May 2018 (Windows) Release 1.7, May 2018 (Mac) Copyright 2014 2018 BlackBerry Limited. All Rights Reserved.

More information

Quick start guide 2018

Quick start guide 2018 Quick start guide 2018 Legal READ THIS INFORMATION BEFORE USING YOUR MOBILE DEVICE. Arbitration Agreement - This Product is subject to a binding arbitration agreement between you and SAMSUNG ELECTRONICS

More information

DIGIPASS Authentication to Citrix XenDesktop with endpoint protection

DIGIPASS Authentication to Citrix XenDesktop with endpoint protection DIGIPASS Authentication to Citrix XenDesktop with endpoint protection SmartAccess Configuration with Digipass INTEGRATION GUIDE Disclaimer Disclaimer of Warranties and Limitation of Liabilities All information

More information

SafeNet Authentication Client

SafeNet Authentication Client SafeNet Authentication Client Compatibility Guide All information herein is either public information or is the property of and owned solely by Gemalto. and/or its subsidiaries who shall have and keep

More information

SafeNet Authentication Client

SafeNet Authentication Client SafeNet Authentication Client Compatibility Guide All information herein is either public information or is the property of and owned solely by Gemalto. and/or its subsidiaries who shall have and keep

More information

CALSTRS ONLINE AGREEMENT TERMS AND CONDITIONS

CALSTRS ONLINE AGREEMENT TERMS AND CONDITIONS CALSTRS ONLINE AGREEMENT TERMS AND CONDITIONS INTRODUCTION: Before the California State Teachers Retirement System (hereinafter "CalSTRS," "We," or "Us") will provide services found at mycalstrs.com (the

More information

Android Documentation Level-0 Registered Device Service

Android Documentation Level-0 Registered Device Service Android Documentation Level-0 Registered Device Service Version: 1.0 2018-07-18 NEXT Biometrics Group AS Universitetsgata 10 0164 Oslo Norway http://www.nextbiometrics.com Level-0 Registered Device Service

More information

SafeNet Authentication Service

SafeNet Authentication Service SafeNet Authentication Service Push OTP Integration Guide All information herein is either public information or is the property of and owned solely by Gemalto NV. and/or its subsidiaries who shall have

More information

BlackBerry AtHoc Networked Crisis Communication. Self Service User Guide

BlackBerry AtHoc Networked Crisis Communication. Self Service User Guide BlackBerry AtHoc Networked Crisis Communication Self Service User Guide Release 7.6, September 2018 Copyright 2014 2018 BlackBerry Limited. All Rights Reserved. This document may not be copied, disclosed,

More information

One Identity Starling Two-Factor HTTP Module 2.1. Administration Guide

One Identity Starling Two-Factor HTTP Module 2.1. Administration Guide One Identity Starling Two-Factor HTTP Module 2.1 Administration Guide Copyright 2018 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software

More information

One Identity Starling Identity Analytics & Risk Intelligence. User Guide

One Identity Starling Identity Analytics & Risk Intelligence. User Guide One Identity Starling Identity Analytics & Risk Intelligence User Guide Copyright 2019 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software

More information

Release Notes. BlackBerry UEM Client for Android Version

Release Notes. BlackBerry UEM Client for Android Version Release Notes BlackBerry UEM Client for Android Version 12.27.0.153083 Published: 2017-01-13 SWD-20170113121937594 Contents What's new...4 Fixed issues...5 Known issues... 6 Legal notice...7 What's new

More information

One Identity Starling Two-Factor Desktop Login 1.0. Administration Guide

One Identity Starling Two-Factor Desktop Login 1.0. Administration Guide One Identity Starling Two-Factor Desktop Login 1.0 Administration Guide Copyright 2018 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software

More information

Release Notes Cordova Plugin for Samsung Developers

Release Notes Cordova Plugin for Samsung Developers reception.van@samsung.com Release Notes Cordova Plugin for Samsung Developers Version 1.5 May 2016 Copyright Notice Copyright 2016 Samsung Electronics Co. Ltd. All rights reserved. Samsung is a registered

More information

Network-MIDI Driver Installation Guide

Network-MIDI Driver Installation Guide Network-MIDI Driver Installation Guide ATTENTION SOFTWARE LICENSE AGREEMENT PLEASE READ THIS SOFTWARE LICENSE AGREEMENT ( AGREEMENT ) CAREFULLY BEFORE USING THIS SOFTWARE. YOU ARE ONLY PERMITTED TO USE

More information

Bar Code Discovery. Administrator's Guide

Bar Code Discovery. Administrator's Guide Bar Code Discovery Administrator's Guide November 2012 www.lexmark.com Contents 2 Contents Overview...3 Configuring the application...4 Configuring the application...4 Configuring Bar Code Discovery...4

More information

EAM Portal User's Guide

EAM Portal User's Guide EAM Portal 9.0.2 User's Guide Copyright 2017 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this guide is furnished

More information

How to secure your mobile application with RASP

How to secure your mobile application with RASP How to secure your mobile application with RASP Webinar - 13 December 2016 Agenda 1. Mobile Application Security Risk categories Protection layers including RASP Dirk Denayer Enterprise & Application Security

More information

SafeNet Authentication Service

SafeNet Authentication Service SafeNet Authentication Service Integration Guide All information herein is either public information or is the property of and owned solely by Gemalto NV. and/or its subsidiaries who shall have and keep

More information

One Identity Starling Two-Factor Authentication. Administration Guide

One Identity Starling Two-Factor Authentication. Administration Guide One Identity Starling Two-Factor Authentication Copyright 2018 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this

More information

IP Office. IP Office Mailbox Mode User Guide Issue 11b - (15 May 2010)

IP Office. IP Office Mailbox Mode User Guide Issue 11b - (15 May 2010) Mailbox Mode User Guide 15-601131 Issue 11b - (15 May 2010) 2010 AVAYA All Rights Reserved. Notices While reasonable efforts have been made to ensure that the information in this document is complete and

More information

SUPPORT MATRIX. HYCU OMi Management Pack for Citrix

SUPPORT MATRIX. HYCU OMi Management Pack for Citrix HYCU OMi Management Pack for Citrix : 2.0 Product release date: October 2017 Document release data: April 2018 Legal notices Copyright notice 2014-2018 HYCU. All rights reserved. This document contains

More information

FLUENDO GENERIC EULA

FLUENDO GENERIC EULA FLUENDO GENERIC EULA FLUENDO S.A. Avenida Diagonal 579, 8th floor 08014 Barcelona Spain 1 END USER LICENSE AGREEMENT (EULA) FLUENDO LICENSE AGREEMENT BY FLUENDO, S.A. ( FLUENDO ) IMPORTANT - READ CAREFULLY

More information

INCLUDING MEDICAL ADVICE DISCLAIMER

INCLUDING MEDICAL ADVICE DISCLAIMER Jordan s Guardian Angels Terms and Conditions of Use INCLUDING MEDICAL ADVICE DISCLAIMER Your use of this website and its content constitutes your agreement to be bound by these terms and conditions of

More information

Server Installation Guide

Server Installation Guide Server Installation Guide Server Installation Guide Legal notice Copyright 2018 LAVASTORM ANALYTICS, INC. ALL RIGHTS RESERVED. THIS DOCUMENT OR PARTS HEREOF MAY NOT BE REPRODUCED OR DISTRIBUTED IN ANY

More information

AT&T Advertising SDK Developer Guide for ios

AT&T Advertising SDK Developer Guide for ios AT&T Advertising SDK Developer Guide for ios Publication Date: September 24 th 2013 Legal Disclaimer This document and the information contained herein (collectively, the "Information") is provided to

More information

October J. Polycom Cloud Services Portal

October J. Polycom Cloud Services Portal October 2018 3725-42461-001J Polycom Cloud Services Portal Copyright 2018, Polycom, Inc. All rights reserved. No part of this document may be reproduced, translated into another language or format, or

More information

HYCU SCOM Management Pack for Nutanix

HYCU SCOM Management Pack for Nutanix HYCU SCOM Management Pack for Nutanix Product version: 2.5 Product release date: May 2018 Document edition: First Legal notices Copyright notice 2016-2018 HYCU. All rights reserved. This document contains

More information

SafeNet Authentication Service Agent for Cisco AnyConnect Client. Installation and Configuration Guide

SafeNet Authentication Service Agent for Cisco AnyConnect Client. Installation and Configuration Guide SafeNet Authentication Service Agent for Cisco AnyConnect Client Installation and Configuration Guide All information herein is either public information or is the property of and owned solely by Gemalto

More information

SafeNet Authentication Service

SafeNet Authentication Service SafeNet Authentication Service Integration Guide All information herein is either public information or is the property of and owned solely by Gemalto NV. and/or its subsidiaries who shall have and keep

More information

Beta Testing Licence Agreement

Beta Testing Licence Agreement Beta Testing Licence Agreement This Beta Testing Licence Agreement is a legal agreement (hereinafter Agreement ) between BullGuard UK Limited ( BullGuard ) and you, either an individual or a single entity,

More information

Getting Started with Tally.Developer 9 Alpha

Getting Started with Tally.Developer 9 Alpha Getting Started with Tally.Developer 9 Alpha The information contained in this document is current as of the date of publication and subject to change. Because Tally must respond to changing market conditions,

More information

SafeNet MobilePKI for BlackBerry V1.2. Administration Guide

SafeNet MobilePKI for BlackBerry V1.2. Administration Guide SafeNet MobilePKI for BlackBerry V1.2 Administration Guide All information herein is either public information or is the property of and owned solely by Gemalto NV and/or its subsidiaries who shall have

More information

Quick Start Guide. BlackBerry Workspaces app for Android. Version 5.0

Quick Start Guide. BlackBerry Workspaces app for Android. Version 5.0 Quick Start Guide BlackBerry Workspaces app for Android Version 5.0 Published: 2017-01-22 SWD-20170122060917401 Contents Overview... 4 Browse workspaces, folders, and files... 5 Create new workspaces,

More information

DME-N Network Driver Installation Guide for M7CL

DME-N Network Driver Installation Guide for M7CL DME-N Network Driver Installation Guide for M7CL ATTENTION SOFTWARE LICENSE AGREEMENT PLEASE READ THIS SOFTWARE LICENSE AGREEMENT ( AGREEMENT ) CAREFULLY BEFORE USING THIS SOFTWARE. YOU ARE ONLY PERMITTED

More information

CERTIFIED MAIL LABELS TERMS OF USE and PRIVACY POLICY Agreement

CERTIFIED MAIL LABELS TERMS OF USE and PRIVACY POLICY Agreement CERTIFIED MAIL LABELS TERMS OF USE and PRIVACY POLICY Agreement Welcome to Certified Mail Envelopes and Certified Mail Labels web sites (the Site ) a website, trademark and business name owned and operated

More information

SafeNet Authentication Service Authentication API for Microsoft.Net. Developer Guide

SafeNet Authentication Service Authentication API for Microsoft.Net. Developer Guide SafeNet Authentication Service Authentication API for Microsoft.Net Developer Guide All information herein is either public information or is the property of and owned solely by Gemalto and/or its subsidiaries

More information

One Identity Password Manager User Guide

One Identity Password Manager User Guide One Identity Password Manager 5.8.2 User Guide Copyright 2018 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this guide

More information

Notification Template Limitations. Bridge Limitations

Notification Template Limitations. Bridge Limitations Oracle Cloud Known Issues for Oracle Identity Cloud Service Release 18.1.2 E55915-17 February 2018 Notification Template Limitations Note the following limitations with Oracle Identity Cloud Service notification

More information

Compatibility Matrix. BlackBerry UEM. March 26, 2018

Compatibility Matrix. BlackBerry UEM. March 26, 2018 Compatibility Matrix BlackBerry UEM March 26, 2018 Published: 2018-03-26 SWD-20180326105755902 Contents Introduction... 4 Legend... 4 BlackBerry UEM server...5 Operating system...5 Database server...5

More information

axsguard Gatekeeper PPTP How To 1.7

axsguard Gatekeeper PPTP How To 1.7 axsguard Gatekeeper PPTP How To 1.7 Table of Contents 1. Introduction 1.1. Audience and Purpose of this Document 1.2. Available Guides 1.3. What is the axsguard Gatekeeper? 1.4. About VASCO 2. General

More information

BlackBerry Developer Summit. A02: Rapid Development Leveraging BEMS Services and the AppKinetics Framework

BlackBerry Developer Summit. A02: Rapid Development Leveraging BEMS Services and the AppKinetics Framework BlackBerry Developer Summit A02: Rapid Development Leveraging BEMS Services and the AppKinetics Framework Page 2 of 21 Table of Contents 1. Workbook Scope... 4 2. Compatibility... 4 3. Source code download

More information

Avaya Client Applications Configurator User Guide

Avaya Client Applications Configurator User Guide Avaya Client Applications Configurator User Guide Release 6.3 02-604198 Issue 02.01 February 2014 2014 Avaya Inc. All Rights Reserved. Notice While reasonable efforts have been made to ensure that the

More information

One Identity Active Roles 7.2

One Identity Active Roles 7.2 One Identity December 2017 This document provides information about the Active Roles Add_on Manager7.2. About Active Roles Add_on Manager New features Known issues System requirements Getting started with

More information

SafeNet Authentication Client

SafeNet Authentication Client SafeNet Authentication Client Integration Guide All information herein is either public information or is the property of and owned solely by Gemalto NV and/or its subsidiaries who shall have and keep

More information

End User License Agreement

End User License Agreement End User License Agreement Kyocera International, Inc. ( Kyocera ) End User License Agreement. CAREFULLY READ THE FOLLOWING TERMS AND CONDITIONS ( AGREEMENT ) BEFORE USING OR OTHERWISE ACCESSING THE SOFTWARE

More information

BCDC 2E, 2012 (On-line Bidding Document for Stipulated Price Bidding)

BCDC 2E, 2012 (On-line Bidding Document for Stipulated Price Bidding) BCDC 2E, 2012 (On-line Bidding Document for Stipulated Price Bidding) CLAUSE 13 ON-LINE BIDDING 13.1 ON-LINE BIDDING.1 Definitions: Owner means the party and/or their agent designated to receive on-line

More information

BCM50 Rls 6.0. Router IP Routing. Task Based Guide

BCM50 Rls 6.0. Router IP Routing. Task Based Guide BCM50 Rls 6.0 Router IP Routing Task Based Guide Copyright 2010 Avaya Inc. All Rights Reserved. Notices While reasonable efforts have been made to ensure that the information in this document is complete

More information

Oracle Cloud E

Oracle Cloud E Oracle Cloud Using the Evernote Adapter Release 16.3 E69234-05 September 2016 This guide describes how to configure and add the Evernote Adapter to an Oracle Integration Cloud Service integration. Oracle

More information

Model 3000 Series Bluetooth User s Manual. May 2017 Revision 2

Model 3000 Series Bluetooth User s Manual. May 2017 Revision 2 Model 3000 Series Bluetooth User s Manual May 2017 Revision 2 Model 3000 Series Bluetooth User s Manual Table of Contents Overview... 1 Model 3000 Series Guide... 1 Firmware... 1 Status LEDs... 2 User

More information

Intel Unite Solution Intel Unite Plugin for WebEx*

Intel Unite Solution Intel Unite Plugin for WebEx* Intel Unite Solution Intel Unite Plugin for WebEx* Version 1.0 Legal Notices and Disclaimers All information provided here is subject to change without notice. Contact your Intel representative to obtain

More information

ios 9 support in IBM MobileFirst Platform Foundation IBM

ios 9 support in IBM MobileFirst Platform Foundation IBM ios 9 support in IBM MobileFirst Platform Foundation IBM Note Before using this information and the product it supports, read the information in Notices on page 13. ios 9 support in IBM MobileFirst Platform

More information

One Identity Starling Two-Factor Authentication

One Identity Starling Two-Factor Authentication One Identity October 2018 These release notes provide information about the One Identity release. About this release One Identity is designed to support non-federated applications and applications that

More information

Legal notice and Privacy policy

Legal notice and Privacy policy Legal notice and Privacy policy We appreciate your interest in us. Below you will find information of legal relevance when visiting this website. In addition, you will find our Privacy Policy, which explains

More information

Desktop App User Guide

Desktop App User Guide BlackBerry AtHoc Networked Crisis Communication Desktop App User Guide Microsoft Windows and Apple macos Platforms Release 7.0.0.2, July 2017 Copyright 2017 BlackBerry Limited. All Rights Reserved. This

More information

One Identity Starling Two-Factor Authentication. Administrator Guide

One Identity Starling Two-Factor Authentication. Administrator Guide One Identity Authentication Administrator Guide Copyright 2017 Quest Software Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this

More information

SafeNet Authentication Service

SafeNet Authentication Service SafeNet Authentication Service Integration Guide Using RADIUS Protocol for Application Request Routing (ARR) All information herein is either public information or is the property of and owned solely by

More information

User Guide Advanced Authentication - Smartphone Applications. Version 5.6

User Guide Advanced Authentication - Smartphone Applications. Version 5.6 User Guide Advanced Authentication - Smartphone Applications Version 5.6 Legal Notices For information about legal notices, trademarks, disclaimers, warranties, export and other use restrictions, U.S.

More information

HUAWEI H30-U10. Quick Start Guide

HUAWEI H30-U10. Quick Start Guide HUAWEI H30-U10 Quick Start Guide Dual card dual standby single pass Your phone supports only dual card dual standby single pass, which means you cannot use both SIM cards for calls or data services simultaneously.

More information

Using Manage Alarm Tool

Using Manage Alarm Tool Using Manage Alarm Tool Release 1.0 Issue 1 April 2013 2013 Avaya Inc. All Rights Reserved. Notice While reasonable efforts have been made to ensure that the information in this document is complete and

More information

SafeNet Authentication Client

SafeNet Authentication Client SafeNet Authentication Client Integration Guide All information herein is either public information or is the property of and owned solely by Gemalto and/or its subsidiaries who shall have and keep the

More information

SafeNet Authentication Service

SafeNet Authentication Service SafeNet Authentication Service Integration Guide All information herein is either public information or is the property of and owned solely by Gemalto NV. and/or its subsidiaries who shall have and keep

More information

Avaya CallPilot Mini Message Networking User Guide

Avaya CallPilot Mini Message Networking User Guide Part No. P0989498 02.1 Avaya CallPilot Mini Message Networking User Guide 2010 Avaya Inc. All Rights Reserved. Notices While reasonable efforts have been made to ensure that the information in this document

More information

SafeNet Authentication Service

SafeNet Authentication Service SafeNet Authentication Service Integration Guide All information herein is either public information or is the property of and owned solely by Gemalto NV. and/or its subsidiaries who shall have and keep

More information

SafeNet Authentication Client

SafeNet Authentication Client SafeNet Authentication Client Integration Guide All information herein is either public information or is the property of and owned solely by Gemalto NV and/or its subsidiaries who shall have and keep

More information

BlackBerry Enterprise Server for Microsoft Office 365. Version: 1.0 Maintenance Release: 1. Release Notes

BlackBerry Enterprise Server for Microsoft Office 365. Version: 1.0 Maintenance Release: 1. Release Notes BlackBerry Enterprise Server for Microsoft Office 365 Version: 1.0 Maintenance Release: 1 Release Notes Published: 2013-07-18 SWD-20130718144837059 Contents 1 New in this release...4 2 Fixed issues...5

More information

QuarkXPress Server Manager 8.0 ReadMe

QuarkXPress Server Manager 8.0 ReadMe QuarkXPress Server Manager 8.0 ReadMe CONTENTS Contents QuarkXPress Server Manager 8.0 ReadMe...3 What's New in QuarkXPress Server Manager 8...4 Deprecated features, new stubs, and deploying SDK classes...4

More information

IP Office 6.1 Embedded Voic Mailbox User Guide

IP Office 6.1 Embedded Voic Mailbox User Guide Embedded Voicemail Mailbox User Guide 15-604067 Issue 08a - (18 August 2010) 2010 AVAYA All Rights Reserved. Notices While reasonable efforts have been made to ensure that the information in this document

More information

One Identity Starling Two-Factor AD FS Adapter 6.0. Administrator Guide

One Identity Starling Two-Factor AD FS Adapter 6.0. Administrator Guide One Identity Adapter 6.0 Administrator Guide Copyright 2017 Quest Software Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this guide

More information

Avaya 3100 Mobile Communicator - Web UI User Guide. Avaya 3100 Mobile Communicator Release 3.1

Avaya 3100 Mobile Communicator - Web UI User Guide. Avaya 3100 Mobile Communicator Release 3.1 Avaya 3100 Mobile Communicator - Web UI User Guide Avaya 3100 Mobile Communicator Release 3.1 Document Status: Standard Document Number: NN42030-110 Document Version: 04.04 Date: July 2010 2009 2010 Avaya

More information

Installation and Configuration Guide

Installation and Configuration Guide Installation and Configuration Guide BlackBerry Blend Version 1.2 Published: 2015-07-06 SWD-20150706173035792 Contents About BlackBerry Blend... 4 BlackBerry Blend architecture... 4 Security... 5 IT policy

More information

Dell EM+S Intune. Android Enrollment Guide. Version 1.5

Dell EM+S Intune. Android Enrollment Guide. Version 1.5 Dell EM+S Intune Android Enrollment Guide Version 1.5 Copyright 2017 Dell Inc. All rights reserved. This publication contains information that is confidential and proprietary to Dell and is subject to

More information

Avaya Converged Office 2007 User Guide Microsoft Office Communications Server 2007

Avaya Converged Office 2007 User Guide Microsoft Office Communications Server 2007 Avaya Converged Office 2007 User Guide Microsoft Office Communications Server 2007 Avaya Communication Server 1000 Release 7.5 Document Status: Standard Document Version: 04.01 Document Number: NN43001-123

More information

BlackBerry Enterprise Service 10. September 10, 2014 Version: 10 and 10.1.x. Compatibility Matrix

BlackBerry Enterprise Service 10. September 10, 2014 Version: 10 and 10.1.x. Compatibility Matrix BlackBerry Enterprise Service 10 September 10, 2014 Version: 10 and 10.1.x Compatibility Matrix Published: 2014-09-10 SWD-20140910144217710 Contents 1...4 Introduction...4 Legend... 4 Operating system...

More information

IP Office Release 7.0 IP Office Essential Edition - Quick Version Embedded Voic User Guide

IP Office Release 7.0 IP Office Essential Edition - Quick Version Embedded Voic User Guide IP Office Essential Edition - Quick Version Embedded Voicemail User Guide 15-604067 Issue 09a - (21 February 2011) 2011 AVAYA All Rights Reserved. Notices While reasonable efforts have been made to ensure

More information

SafeNet Authentication Client

SafeNet Authentication Client SafeNet Authentication Client Integration Guide All information herein is either public information or is the property of and owned solely by Gemalto and/or its subsidiaries who shall have and keep the

More information

SafeNet Authentication Service Token Validator Proxy Agent. Installation and Configuration Guide

SafeNet Authentication Service Token Validator Proxy Agent. Installation and Configuration Guide SafeNet Authentication Service Token Validator Proxy Agent Installation and Configuration Guide All information herein is either public information or is the property of and owned solely by Gemalto NV.

More information

TOOLS for n Version2 Update Guide

TOOLS for n Version2 Update Guide TOOLS for n Version2 Update Guide SOFTWARE LICENSE AGREEMENT PLEASE READ THIS SOFTWARE LICENSE AGREEMENT ( AGREEMENT ) CAREFULLY BEFORE USING THIS SOFTWARE. YOU ARE ONLY PERMITTED TO USE THIS SOFTWARE

More information

COMMERCIAL BANK OF DUBAI PSC GENERAL CONDITIONS OF ACCESS AND USE OF COMMERCIAL BANK OF DUBAI FACEBOOK BRANCH

COMMERCIAL BANK OF DUBAI PSC GENERAL CONDITIONS OF ACCESS AND USE OF COMMERCIAL BANK OF DUBAI FACEBOOK BRANCH COMMERCIAL BANK OF DUBAI PSC GENERAL CONDITIONS OF ACCESS AND USE OF COMMERCIAL BANK OF DUBAI FACEBOOK BRANCH 1. CBD Facebook Branch Commercial Bank of Dubai psc (hereinafter "CBD"), allows access and

More information

Release Notes. BlackBerry Workspaces for Windows. Version 5.5

Release Notes. BlackBerry Workspaces for Windows. Version 5.5 Release Notes BlackBerry Workspaces for Windows Version 5.5 Published: 2017-07-26 SWD-20170726101945714 Contents New in this release...4 Fixed issues in v5.5.0...5 Fixed issues in v5.5.1...7 Fixed issues

More information

Compatibility Matrix. BlackBerry UEM. December 22, 2016

Compatibility Matrix. BlackBerry UEM. December 22, 2016 Compatibility Matrix BlackBerry UEM December 22, 2016 Published: 2016-12-22 SWD-20161220124335071 Contents Introduction... 4 Legend... 4 BlackBerry UEM server...5 Operating system...5 Database server...5

More information

Veritas Desktop and Laptop Option Mobile Application Getting Started Guide

Veritas Desktop and Laptop Option Mobile Application Getting Started Guide Veritas Desktop and Laptop Option Mobile Application Getting Started Disclaimer Contents The software described in this document is furnished under a license agreement and may be used only in accordance

More information

TERMS OF USE. 1.3 This Site is intended for personal use only. Any commercial use without the prior written consent of Eretz Hemdah is prohibited.

TERMS OF USE. 1.3 This Site is intended for personal use only. Any commercial use without the prior written consent of Eretz Hemdah is prohibited. TERMS OF USE 1. General 1.1 The Eretz Hemdah organization and the Eretz Hemdah higher education institute for Jewish studies in Jerusalem and/or any of its representatives ( Eretz Hemdah or the Operator

More information

This Access Agreement (the "Agreement") for the use of Math-Whizz Teachers Resource for Schools is between:-

This Access Agreement (the Agreement) for the use of Math-Whizz Teachers Resource for Schools is between:- Access Agreement for the use of Math-Whizz Teachers Resource for Schools IMPORTANT: Please read carefully these terms and conditions regarding your use of the Math-Whizz Teachers Resource for Schools service

More information