Root Detection SDK. Integration Guide 4.17

Size: px
Start display at page:

Download "Root Detection SDK. Integration Guide 4.17"

Transcription

1 Root Detection 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 Root Detection SDK Functions Overview Exposed APIs Constants Starting the Analysis (s Method) Description Parameters Return Values Error Codes Examples Android ios Obtaining the Signature File Version (g Method) Description Parameters Return Values Error Codes Example Android ios Integrating the Root Detection SDK Integrating the Root Detection SDK with Android Integrating the Root Detection SDK with ios Technical Support

4 Table of Contents Index of Tables Table 1 Return Codes... 8 Table 2: Method Signature (Starting the Analysis)... 9 Table 3: Parameters (Starting the Analysis)... 9 Table 4: Error Codes (Starting the Analysis)... 9 Table 5: Method Signature (Obtaining the Signature File Version) Table 6: Parameters (Obtaining the Signature File Version) Table 7: Error Codes (Obtaining the Signature File Version)

5 Introduction 1 Introduction Welcome to the Root Detection SDK Integration Guide! The Root Detection SDK provides facilities to detect whether a device is rooted / jailbroken. This document provides information about: Functions of the Root Detection 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 Biometric Sensor SDK (refer to the Biometric Sensor SDK Integration 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 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) 1 As of version 4.3.2, the package name of the DIGIPASS SDK has been changed to DIGIPASS for APPS. 5

6 Introduction Instructions to integrate the White-Box Cryptography (WBC) SDK (refer to the White-Box Cryptography SDK Integration Guide) 6

7 Root Detection SDK Functions 2 Root Detection SDK Functions This chapter contains an overview of the Root Detection SDK and information about the SDK s functions. This chapter covers the following topics: Overview Starting the Analysis (s Method) Obtaining the Signature File Version (g Method) 7

8 Root Detection SDK Functions 2.1 Overview Exposed APIs Constants The Root Detection SDK is a JAR file named RootDetectionSDK.jar for Android, and a framework named RootDetectionSDK.framework for ios. It detects if an application is running on a rooted Android device or on a jailbroken ios device. To detect that a device is corrupted, the Root Detection SDK uses a signature file that is part of the DIGIPASS for Apps package. This signature file must be integrated into your project. Classes and methods which are exposed by the Root Detection SDK API have very simple names of a single letter to enhance security by complicating reverse-engineering. The Root Detection SDK supports the following platforms: ios 5.0 (and higher) Android 2.3 and higher The APIs comprise two main methods: s method: Start analysis process to detect if the phone is rooted / jailbroken. g method: Retrieve the file signature version. For Android, the APIs are exposed by the P class of the com.vasco package. For ios, the APIs are exposed by the P object. Table 1 Return Codes Name Value Error Message v Current version Version of the Root Detection SDK. t 14 Current version of the signature file. n 0 Return code indicating that the device is not rooted / jailbroken. z Return code indicating an unknown error. r Return code indicating that the device is rooted / jailbroken. e Return code indicating that the signature file is null. l Return code indicating that the signature file length is incorrect must be at least 256 characters. f Return code indicating that the signature file format is incorrect only hexadecimal characters allowed. i Return code indicating that the signature file is invalid: wrong signature or XML parsing error. a Return code indicating that the version of the signature file is too old to be used by the Root Detection SDK. The return codes can be retrieved from the O object. 8

9 Root Detection SDK Functions 2.2 Starting the Analysis (s Method) Description Parameters Table 2: Method Signature (Starting the Analysis) Platform Method Signature Android public static S s(string c, Context a) ios +(s) s: (NSData*) c This function starts the analysis process, which detects whether a device is rooted or jailbroken. With the Root Detection SDK 4.4, this method also checks the version of the signature file. The signature file version must be higher as or equal to the version defined in the Root Detection SDK (indicated by the constant t ). The aim is to prevent anyone from using signature files that may contain deprecated verification rules. NOTE For Android platforms, another signature for this method exists: public static S s(string c), which does not use the Android context. However, the Android context is necessary for improving the root detection process. As a result, the deprecated method must only be used for backward-compatibility to manage earlier client integrations (Root Detection SDK 4.3 or earlier versions) Return Values Error Codes Table 3: Parameters (Starting the Analysis) Type Name Use Description String/NSData* c I (mandatory) Signature file content. Context a I (mandatory) Android context (Android only). A response object named S is returned, which contains the following: a return code indicating the result of the analysis, and an exception if an unknown error occurs. Table 4: Error Codes (Starting the Analysis) Name Value Error Message n 0 Return code indicating that the device is not rooted / jailbroken. z Return code indicating an unknown error. 9

10 Root Detection SDK Functions Examples Android Name Value Error Message r Return code indicating that the device is rooted / jailbroken. e Return code indicating that the signature file is null. l Return code indicating that the signature file length is incorrect it must be at least 256 characters. f Return code indicating that the signature file format is incorrect only hexadecimal characters are allowed. i Return code indicating that the signature file is invalid: wrong signature or XML parsing error. a Return code indicating that the version of the signature file is too old to be used by the Root Detection SDK. This section illustrates how to integrate and use the s method. For more information, refer to the Root Detection SDK sample project in the DIGIPASS for APPS package. // Retrieve the signature file InputStream ins = assetmanager.open(path); // Start analysis process S response = P.s(convertInsToString(ins), this.getapplicationcontext()); int returncode = response.getreturncode(); // Check the result from the analysis process if (returncode == O.n) { System.out.println("Device is not rooted."); } else if (returncode == O.r) { System.out.println("Device is rooted."); } else { System.out.println(getMsgFromReturnCode(returnCode)); System.out.println("Error code: " +returncode); } ios //Get file signature path NSString * filepath = [[NSBundlemainBundle] pathforresource:@"signature" oftype:nil]; 10

11 Root Detection SDK Functions //Load signature file NSData * d = [NSData datawithcontentsoffile:filepath]; // Call s method: check if phone is rooted s response = [P s:d]; NSString * resulttext //Parse result switch(response.r){ case P_r: resulttext Device is rooted **" ; break; case P_n: resulttext Device is not rooted **" ; break;

12 Root Detection SDK Functions 2.3 Obtaining the Signature File Version (g Method) Table 5: Method Signature (Obtaining the Signature File Version) Platform Method Signature Android public static G g(string c) ios +(g*) g: (NSData*) c Description Parameters This method returns the version of the signature file. Table 6: Parameters (Obtaining the Signature File Version) Type Name Use Description String/NSData* c I (mandatory) Signature file content Return Values A response object named G is returned, which contains the following: a return code indicating the result of the analysis, the version of the signature file in case of success, an exception if an unknown error occurs Error Codes Table 7: Error Codes (Obtaining the Signature File Version) Name Value Error Message n 0 Return code indicating that the version has been successfully retrieved. z Return code indicating an unknown error. e Return code indicating that the signature file is null. l Return code indicating that the signature file length is incorrect it must be at least 256 characters. f Return code indicating that the signature file format is incorrect only hexadecimal characters allowed. i Return code indicating that the signature file is invalid: wrong signature or XML parsing error. 12

13 Root Detection SDK Functions Example Android ios This section illustrates how to retrieve the signature file version. For more information, refer to the Root Detection SDK sample project in the DIGIPASS for APPS package. Once deployed, the application will be installed under the name Root Detection SDK Sample. // Retrieve the signature file InputStream ins = assetmanager.open(path); // Get signature file version G response = P.g(convertInsToString(ins)); int returncode = response.getreturncode(); // Check if the version has been successfully retrieved if (returncode == O.n) { System.out.println("Signature File version " + response.v()); } else { System.out.println(getMsgFromReturnCode(returnCode)); System.out.println("Error code: " +returncode); } //Load signature file NSString * filepath = [[NSBundlemainBundle] pathforresource:@"signature" oftype:nil]; //Get NSData from file NSData * d = [NSData datawithcontentsoffile:filepath]; // Call the g method: check the signature file version G response = [P g:d]; NSString * resulttext //Parse result switch(response.r){ casep_n: resulttext = [NSStringstringWithFormat:@"** Version ** \r ** %s ** ", response.v];... 13

14 Integrating the Root Detection SDK 3 Integrating the Root Detection SDK This chapter contains instructions how to integrate the Root Detection SDK with the supported platforms. This chapter covers the following topics: Integrating the Root Detection SDK with Android Integrating the Root Detection SDK with ios 14

15 Integrating the Root Detection SDK 3.1 Integrating the Root Detection SDK with Android Using the Root Detection SDK in your Android project 1. Copy RootDetectionSDK.jar from the DIGIPASS for APPS package to the libs folder. 2. Copy UtilitiesSDK.jar from the DIGIPASS for APPS package to the libs folder. 3. Copy the signature file from the DIGIPASS for APPS package to the assets/signature folder. You are now ready to use the Root Detection SDK. For more information about integrating the methods, refer to Chapter 2 Root Detection SDK Functions. 15

16 Integrating the Root Detection SDK 3.2 Integrating the Root Detection SDK with ios Using the Root Detection SDK in your ios project 1. Link the RootDetectionSDK.framework file from the DIGIPASS for APPS package to your Xcode project. 2. Link the libc++ library from the ios SDK to your Xcode project using the Link Binary With Libraries build phase (only required if the project is compiled in Objective-C and not in Objective-C++). 3. Link the libutilitiessdk.a library from the DIGIPASS for APPS package to your Xcode project. 4. Copy the signature file from the DIGIPASS for APPS package to the res folder. CAUTION Your project must be compiled using the libc++ standard library. You are now ready to use the Root Detection SDK. For more information about integrating the methods, refer to Chapter 2 Root Detection SDK Functions. 16

17 Technical Support 4 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

Biometric Sensor SDK. Integration Guide 4.17

Biometric Sensor SDK. Integration Guide 4.17 Biometric Sensor 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

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

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

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

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

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

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

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

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

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 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 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

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

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

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

General. Analytics. MCS Instance Has Predefined Storage Limit. Purge Analytics Data Before Reaching Storage Limit

General. Analytics. MCS Instance Has Predefined Storage Limit. Purge Analytics Data Before Reaching Storage Limit Oracle Cloud Mobile Cloud Service Known Issues 18.1.3 E93163-01 February 2018 General MCS Instance Has Predefined Storage Limit Each MCS instance has a set storage space that can t be changed manually.

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

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

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

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

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

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

Clear CMOS after Hardware Configuration Changes

Clear CMOS after Hardware Configuration Changes Clear CMOS after Hardware Configuration Changes Technical White Paper August 2018 Revision 001 Document Number: 337986-001 You may not use or facilitate the use of this document in connection with any

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

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

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

Terms of Use for companies accessing MyStay Product Database via MyStay API

Terms of Use for companies accessing MyStay Product Database via MyStay API MyStay Product Database and My Stay Application Programming Interface (API) MyStay Product Database is a part of Visit Finland s website www.visitfinland.com. The purpose of the database is to enable the

More information

KofaxExport Connector8.1.0

KofaxExport Connector8.1.0 KofaxExport Connector8.1.0 forfilenetcontent Manager Release Notes 2011-12-09 2007-2011 Kofax, Inc., 15211 Laguna Canyon Road, Irvine, California 92618, U.S.A. All rights reserved. Use is subject to license

More information

AhnLab Software License Agreement

AhnLab Software License Agreement AhnLab Software License Agreement IMPORTANT - READ CAREFULLY BEFORE USING THE SOFTWARE. This AhnLab Software License Agreement (this "Agreement") is a legal agreement by and between you and AhnLab, Inc.

More information

DIGIPASS Authentication for Microsoft ISA 2006 Single Sign-On for Sharepoint 2007

DIGIPASS Authentication for Microsoft ISA 2006 Single Sign-On for Sharepoint 2007 DIGIPASS Authentication for Microsoft ISA 2006 Single Sign-On for Sharepoint 2007 With IDENTIKEY Server / Axsguard IDENTIFIER Integration Guidelines Disclaimer Disclaimer of Warranties and Limitations

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

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

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 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

Terms Of Use AGREEMENT BETWEEN USER AND DRAKE MODIFICATION OF THESE TERMS OF USE LINKS TO THIRD PARTY WEB SITES USE OF COOKIES

Terms Of Use AGREEMENT BETWEEN USER AND DRAKE MODIFICATION OF THESE TERMS OF USE LINKS TO THIRD PARTY WEB SITES USE OF COOKIES Terms Of Use AGREEMENT BETWEEN USER AND DRAKE This website and other related websites and mobile applications (collectively referred to as "Sites") comprise various web pages and services operated by Drake

More information

Sentinel EMS 4.1. Release Notes

Sentinel EMS 4.1. Release Notes Sentinel EMS 4.1 Release Notes Document Revision History Document Number: 007-013357-001 (Revision B), August 2016 Disclaimer and Copyrights All information herein is either public information or is the

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

If the firmware version indicated is earlier than the "Version 1.06", please update the unit s firmware.

If the firmware version indicated is earlier than the Version 1.06, please update the unit s firmware. STEP 1. Check the current firmware version Panasonic recommends that you update the firmware in your SC-C70 if the firmware version indicated is older than the version being offered. Please check the current

More information

Online Localization Service

Online Localization Service DEVELOPER EXPRESS INC DEVEXPRESS Copyright (C) 2011-2017 Developer Express Inc. IMPORTANT- READ CAREFULLY: This DEVELOPER EXPRESS INC ("DEVEXPRESS") End-User License Agreement ("EULA") is a legal agreement

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

Oracle Adaptive Access Manager. 1 Oracle Adaptive Access Manager Documentation. 2 Resolved Issues. Release Notes Release 10g (

Oracle Adaptive Access Manager. 1 Oracle Adaptive Access Manager Documentation. 2 Resolved Issues. Release Notes Release 10g ( Oracle Adaptive Access Manager Release Notes Release 10g (10.1.4.5) E13648-03 May 2009 These release notes contain important last minute information not included in the Oracle Adaptive Access Manager Release

More information

What s New in Oracle Cloud Infrastructure Object Storage Classic. Topics: On Oracle Cloud. Oracle Cloud

What s New in Oracle Cloud Infrastructure Object Storage Classic. Topics: On Oracle Cloud. Oracle Cloud Oracle Cloud What's New in Classic E71883-15 February 2018 What s New in Oracle Cloud Infrastructure Object Storage Classic This document describes what's new in Classic on all the infrastructure platforms

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

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

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

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

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

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

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

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

SafeNet Authentication Manager

SafeNet Authentication Manager SafeNet Authentication Manager 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

CA File Master Plus. Release Notes. Version

CA File Master Plus. Release Notes. Version CA File Master Plus Release Notes Version 9.0.00 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is for

More information

Oracle. Field Service Cloud Using Android and ios Mobile Applications 18B

Oracle. Field Service Cloud Using Android and ios Mobile Applications 18B Oracle Field Service Cloud Using Android and ios Mobile Applications 18B Part Number: E94755-02 Copyright 2018, Oracle and/or its affiliates. All rights reserved Authors: The Field Service Cloud Information

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

Steel-Belted RADIUS. Digipass Plug-In for SBR. SBR Plug-In SBR. G etting Started

Steel-Belted RADIUS. Digipass Plug-In for SBR. SBR Plug-In SBR. G etting Started Steel-Belted RADIUS Digipass Plug-In for SBR SBR Plug-In SBR Steel-Belted RADIUS G etting Started Disclaimer of Warranties and Limitations of Liabilities Disclaimer of Warranties and Limitations of Liabilities

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

Avaya Meridian Integrated RAN Release 2.0 Telephone Set-Based Administration User Guide. Avaya Communication Server 1000 Release 7.

Avaya Meridian Integrated RAN Release 2.0 Telephone Set-Based Administration User Guide. Avaya Communication Server 1000 Release 7. Avaya Meridian Integrated RAN Release 2.0 Telephone Set-Based Administration User Guide Avaya Communication Server 1000 Release 7.5 Document Status: Standard Document Number: P0888275 Document Version:

More information

Oracle Retail Furniture Retail System (FRS) Product Spec Sheet Guide Release October 2015

Oracle Retail Furniture Retail System (FRS) Product Spec Sheet Guide Release October 2015 Oracle Retail Furniture Retail System (FRS) Product Spec Sheet Guide Release 1101 October 2015 Oracle Retail Furniture Retail System (FRS) Product Spec Sheet Guide, Release 1101 Copyright 2015, Oracle

More information

Designing with Oracle Java CAPS Communication Adapters

Designing with Oracle Java CAPS Communication Adapters Designing with Oracle Java CAPS Communication Adapters Part No: 821 2579 March 2011 Copyright 2008, 2011, Oracle and/or its affiliates. All rights reserved. License Restrictions Warranty/Consequential

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

Terms and conditions of use for the Online and Mobile Banking Service

Terms and conditions of use for the Online and Mobile Banking Service Terms and conditions of use for the Online and Mobile Banking Service Effective from July 2016 Please read these terms and conditions carefully. They re also available on our website and our Mobile Banking

More information

ASSESSMENT CENTER TERMS AND CONDITIONS. Last Updated 1/21/2011

ASSESSMENT CENTER TERMS AND CONDITIONS. Last Updated 1/21/2011 ASSESSMENT CENTER TERMS AND CONDITIONS Last Updated 1/21/2011 You understand and agree that the services that Northwestern University Department of Medical Social Sciences (NU-MSS) provides to you through

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

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

AVEVA Global. Release 12.0.SP6 WCF. User Bulletin

AVEVA Global. Release 12.0.SP6 WCF. User Bulletin AVEVA Global Release 12.0.SP6 WCF User Bulletin Disclaimer Information of a technical nature, and particulars of the product and its use, is given by AVEVA Solutions Limited and its subsidiaries without

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

NOOTRY TERMS OF SERVICE

NOOTRY TERMS OF SERVICE NOOTRY TERMS OF SERVICE Nootry LLC ( Nootry ), a Delaware limited liabilities company, provides access to and use of the services, including our website, APIs, email notifications, and application (the

More information

User Manual Arabic Name Romanizer Name Geolocation System

User Manual Arabic Name Romanizer Name Geolocation System User Manual Arabic Name Romanizer Name Geolocation System MAPS Ono Lite (Romanizer) Version 2.50 Coverage of this document This document is the full text user manual for MAPSOno Lite (Romanizer) version

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

Dropbox Connector. Version 2.0. User Guide

Dropbox Connector. Version 2.0. User Guide Dropbox Connector Version 2.0 User Guide 2016 Ping Identity Corporation. All rights reserved. PingFederate Dropbox Connector User Guide Version 2.0 February, 2016 Ping Identity Corporation 1001 17th Street,

More information

Oracle Cloud E

Oracle Cloud E Oracle Cloud Known Issues for Oracle Cloud Identity and Access Management 16.3 E68445-07 August 2016 This document describes issues you might encounter when using shared identity management for Oracle

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

ANZ Mobile Pay Terms and Conditions and Licence Agreement for Android Devices

ANZ Mobile Pay Terms and Conditions and Licence Agreement for Android Devices ANZ Mobile Pay Terms and Conditions and Licence Agreement for Android Devices Version: 1.0 Dated: 1 January 2016 1. Introduction ANZ Mobile Pay is an app suitable for use on an Android powered device that

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

Symantec Validation and ID Protection. VIP Credential Development Kit Release Notes. Version January 2017

Symantec Validation and ID Protection. VIP Credential Development Kit Release Notes. Version January 2017 VIP Credential Development Kit Release Notes Version 2.0.7 January 2017 VIP Credential Development Kit Release Notes Page 1 of 6 Introduction This document includes important and late-breaking information

More information

Intel Unite Plugin Guide for VDO360 Clearwater

Intel Unite Plugin Guide for VDO360 Clearwater Intel Unite Plugin Guide for VDO360 Clearwater INSTALLATION AND USER GUIDE Version 1.2 December 2017 Legal Disclaimers & Copyrights All information provided here is subject to change without notice. Contact

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

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

Quest Unified Communications Diagnostics Data Recorder User Guide

Quest Unified Communications Diagnostics Data Recorder User Guide Quest Unified Communications Diagnostics 8.4.1 Data Recorder User Guide 2017 Quest Software Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described

More information

Oracle Technology Network Developer License Terms for Java Card Classic Edition and Java Card Connected Edition Software Development Kits

Oracle Technology Network Developer License Terms for Java Card Classic Edition and Java Card Connected Edition Software Development Kits Oracle Technology Network Developer License Terms for Java Card Classic Edition and Java Card Connected Edition Software Development Kits Export Controls Export laws and regulations of the United States

More information

IBM Datacap Mobile SDK Developer s Guide

IBM Datacap Mobile SDK Developer s Guide IBM Datacap Mobile SDK Developer s Guide Contents Versions... 2 Overview... 2 ios... 3 Package overview... 3 SDK details... 3 Prerequisites... 3 Getting started with the SDK... 4 FAQ... 5 Android... 6

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

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

TERMS & CONDITIONS PLEASE READ THESE TERMS AND CONDITIONS CAREFULLY BEFORE USING THE SITE

TERMS & CONDITIONS PLEASE READ THESE TERMS AND CONDITIONS CAREFULLY BEFORE USING THE SITE TERMS & CONDITIONS PLEASE READ THESE TERMS AND CONDITIONS CAREFULLY BEFORE USING THE SITE 1. General The term PPS refers to: Professional Provident Society Holdings Trust, (The Holding Trust); Professional

More information

Uploading Files Using File Drag and Drop

Uploading Files Using File Drag and Drop September 27, 2017 2017.2 Copyright 2005, 2017, Oracle and/or its affiliates. All rights reserved. This software and related documentation are provided under a license agreement containing restrictions

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

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

Ecma International Policy on Submission, Inclusion and Licensing of Software

Ecma International Policy on Submission, Inclusion and Licensing of Software Ecma International Policy on Submission, Inclusion and Licensing of Software Experimental TC39 Policy This Ecma International Policy on Submission, Inclusion and Licensing of Software ( Policy ) is being

More information

DIGIPASS Authentication for NETASQ

DIGIPASS Authentication for NETASQ DIGIPASS Authentication for NETASQ With IDENTIKEY Server 2010 Integration VASCO Data Security. Guideline All rights reserved. Page 1 of 19 Disclaimer Disclaimer of Warranties and Limitations of Liabilities

More information

SAMSUNG ELECTRONICS RESERVES THE RIGHT TO CHANGE PRODUCTS, INFORMATION AND SPECIFICATIONS WITHOUT NOTICE. Products and specifications discussed

SAMSUNG ELECTRONICS RESERVES THE RIGHT TO CHANGE PRODUCTS, INFORMATION AND SPECIFICATIONS WITHOUT NOTICE. Products and specifications discussed SAMSUNG ELECTRONICS RESERVES THE RIGHT TO CHANGE PRODUCTS, INFORMATION AND SPECIFICATIONS WITHOUT NOTICE. Products and specifications discussed herein are for reference purposes only. All information discussed

More information

PAX A920 FAQ. Frequently Asked Questions. Date: Version: 1.01 PAX A920 FAQ. 1 PAX Customer Support (877)

PAX A920 FAQ. Frequently Asked Questions. Date: Version: 1.01 PAX A920 FAQ. 1 PAX Customer Support (877) PAX A920 FAQ Frequently Asked Questions Date: 2017-11-06 Version: 101 20171106 v101 1 PAX Customer Support support@paxus wwwpaxus PREFACE PAX A920 FAQ Frequently Asked Questions Version: 20171106 v101

More information

Avaya Call Management System Documentation Roadmap

Avaya Call Management System Documentation Roadmap Documentation Roadmap Release 18 Issue 1 October 2015 2015, 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

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

Installing Enterprise Switch Manager

Installing Enterprise Switch Manager Installing Enterprise Switch Manager ATTENTION Clicking on a PDF hyperlink takes you to the appropriate page If necessary, scroll up or down the page to see the beginning of the referenced section NN47300-300

More information

Installing Enterprise Switch Manager

Installing Enterprise Switch Manager Installing Enterprise Switch Manager NN47300-300 Document status: Standard Document version: 0401 Document date: 26 March 2008 All Rights Reserved The information in this document is subject to change

More information

Release Notes for Avaya Aura Appliance Virtualization Platform Release

Release Notes for Avaya Aura Appliance Virtualization Platform Release Release Notes for Avaya Aura Appliance Virtualization Platform Release 7.0.0.0 Release Notes Issue 1.0, August 24, 2015 2015 Avaya Inc. All rights reserved. Notice While reasonable efforts have been made

More information

Oracle Cloud Using the Microsoft Adapter. Release 17.3

Oracle Cloud Using the Microsoft  Adapter. Release 17.3 Oracle Cloud Using the Microsoft Email Adapter Release 17.3 E70297-10 December 2017 Oracle Cloud Using the Microsoft Email Adapter, Release 17.3 E70297-10 Copyright 2016, 2017, Oracle and/or its affiliates.

More information

Oracle Banking Digital Experience

Oracle Banking Digital Experience Oracle Banking Digital Experience Origination Social Media Integration User Manual Release 17.2.0.0.0 Part No. E88573-01 July 2017 Origination Social Media Integration User Manual July 2017 Oracle Financial

More information

Oracle Binary Code License Agreement for Java Secure Sockets Extension for Connected Device Configuration 1.0.2

Oracle Binary Code License Agreement for Java Secure Sockets Extension for Connected Device Configuration 1.0.2 Oracle Binary Code License Agreement for Java Secure Sockets Extension 1.0.3 for Connected Device Configuration 1.0.2 ORACLE AMERICA, INC. ("ORACLE"), FOR AND ON BEHALF OF ITSELF AND ITS SUBSIDIARIES AND

More information

Ecma International Policy on Submission, Inclusion and Licensing of Software

Ecma International Policy on Submission, Inclusion and Licensing of Software Ecma International Policy on Submission, Inclusion and Licensing of Software Experimental TC39 Policy This Ecma International Policy on Submission, Inclusion and Licensing of Software ( Policy ) is being

More information