SafeNet MSSQL EKM Provider User Guide

Size: px
Start display at page:

Download "SafeNet MSSQL EKM Provider User Guide"

Transcription

1 SafeNet MSSQL EKM Provider User Guide Version Documentation Version:

2 Copyright Information 2009 SafeNet, Inc. All rights reserved All intellectual property is protected by copyright. All trademarks and product names used or referred to are the copyright of their respective owners. No part of this document may be reproduced, stored in a retrieval system or transmitted in any form or by any means, electronic, mechanical, chemical, photocopy, recording or otherwise without the prior written permission of SafeNet. SafeNet makes no representations or warranties with respect to the contents of this document and specifically disclaims any implied warranties of merchantability or fitness for any particular purpose. Furthermore, SafeNet reserves the right to revise this publication and to make changes from time to time in the content hereof without the obligation upon SafeNet to notify any person of organization of any such revisions or changes. SafeNet invites constructive comments on the contents of this document. These comments, together with your personal and/ or company details, should be sent to the address below Millennium Drive Belcamp, Maryland USA Disclaimers The foregoing integration was performed and tested only with specific versions of equipment and software and only in the configuration indicated. If your setup matches exactly, you should expect no trouble, and Customer Support can assist with any missteps. If your setup differs, then the foregoing is merely a template and you will need to adjust the instructions to fit your situation. Customer Support will attempt to assist, but cannot guarantee success in setups that we have not tested. This product contains software that is subject to various public licenses. The source code form of such software and all derivative forms thereof can be copied from the following website: We have attempted to make these documents complete, accurate, and useful, but we cannot guarantee them to be perfect. When we discover errors or omissions, or they are brought to our attention, we endeavor to correct them in succeeding releases of the product. Technical Support If you encounter a problem while installing, registering or operating this product, please make sure that you have read the documentation. If you cannot resolve the issue, please contact your supplier or SafeNet support. SafeNet support operates 24 hours a day, 7 days a week. Your level of access to this service is governed by the support plan arrangements made between SafeNet and your organization. Please consult this support plan for further information about your entitlements, including the hours when telephone support is available to you. Technical Support Contact Information: Phone: , support@safenet-inc.com

3 Table of Contents CHAPTER 1 OVERVIEW Supported Platforms Supported Algorithms and Key Size CHAPTER 2 INSTALLING THE SAFENET MSSQL EKM PROVIDER CHAPTER 3 Installing the MSSQL EKM Provider Uninstalling the MSSQL EKM Provider CONFIGURING THE SAFENET MSSQL EKM PROVIDER IN THE SQL SERVER DATABASE Enabling EKM in Your SQL Server Database Loading the DLL Creating Credentials with SQL Server CHAPTER 4 USING THE SAFENET MSSQL EKM PROVIDER CHAPTER 5 Viewing the Provider Properties Viewing the Supported Algorithms Creating a Key on the DataSecure Open an Existing Key in the Database Viewing All Keys in the Database Viewing All of a User s Keys on the DataSecure Dropping a Key From the Database Dropping a Key From the DataSecure Encrypting and Decrypting Data Encrypting Data Decrypting Data USING THE SAFENET MSSQL EKM PROVIDER WITH TRANSPARENT DATABASE ENCRYPTION Enabling TDE Using SafeNet s MSSQL EKM Provider Creating an Asymmetric Key Protected by the MSSQL EKM Provider Creating a Credential Protected by the Asymmetric Key Creating a Symmetric Database Encryption Key

4 TABLE OF CONTENTS 2 Setting Encryption for the Database Verifying Which Tables are Encrypted Using TDE CHAPTER 6 TROUBLESHOOTING Cannot Create RSA-512, DES, or RC4 Keys on the DataSecure How to Use a Hyphen in a Domian Name How to Remove a Key from the DataSecure CHAPTER 7 ERROR CODES AND MESSAGES Initialization/Configuration General Authentication Crypto Server Communications

5 CHAPTER 1 Overview This chapter covers the following topics: Supported Platforms 3 Supported Algorithms and Key Size 3 Supported Platforms The SafeNet MSSQL EKM Provider supports MSSQL Server 2008 on the following platforms: Windows Server bit Windows Server bit Supported Algorithms and Key Size The SafeNet MSSQL EKM Provider supports the following algorithm/key size combinations: Algorithm Bit Length IV Length RC RC DES Triple DES Triple DES 3 key AES AES AES AES RSA 512 n/a RSA 1024 n/a RSA 2048 n/a

6 CHAPTER 2 Installing the SafeNet MSSQL EKM Provider This chapter contains the following information: Installing the MSSQL EKM Provider 4 Uninstalling the MSSQL EKM Provider 7 Installing the MSSQL EKM Provider The InstallShield Wizard installs the following files in the installation directory: IngrianNAE.properties - This file contains the parameters that your client will use when communicating with the DataSecure appliance. This includes DataSecure IP, port, and communication protocol, as well as connection timeout values. The file also contains parameters that govern client-side features such as connection pooling, local encryption and logging. ingsqlekm.dll - This is the provider library that will be loaded into your MS SQL Server database. The wizard also creates the following registry entries in My Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Ingrian\SQLEKM\: ConfigFileName - Holds the location of the IngrianNAE.properties file. InstallDir - Holds the name of the installation directory.

7 INSTALLING THE SAFENET MSSQL EKM PROVIDER 5 To install the provider: 1 Download and unzip the SafeNet software. 2 Double-click setup.exe to launch the InstallShield Wizard. The Welcome screen appears. Click Next. 3 Click Change to select a different location. Otherwise, click Next to accept the directory shown.

8 INSTALLING THE SAFENET MSSQL EKM PROVIDER 6 4 The installer now has all of the necessary information. Click install to begin the installation. 5 The installer displays the progress of the installation.

9 INSTALLING THE SAFENET MSSQL EKM PROVIDER 7 6 After the files are installed, click Finish to complete the installation. Uninstalling the MSSQL EKM Provider The InstallShield Wizard also allows you to uninstall the provider. If the wizard detects that the provider has already been installed, it enables you to remove the current installation. During an uninstall, the wizard deletes the following files: IngrianNAE.properties ingsqlekm.dll and it removes the following registry entries: My Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Ingrian\SQLEKM\ConfigFileName My Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Ingrian\SQLEKM\InstallDir WARNING! Do not uninstall the provider is you still have encrypted data in your database. Decrypt the data before uninstalling the provider.

10 INSTALLING THE SAFENET MSSQL EKM PROVIDER 8 To uninstall the provider: 1 Double-click setup.exe to launch the InstallShield Wizard. The wizard detects the current installation. Click Next to access the Program Maintenance screen. 2 Select Remove and click Next.

11 INSTALLING THE SAFENET MSSQL EKM PROVIDER 9 3 Click Remove to unistall the provider. 4 The installer displays the progress of the installation.

12 INSTALLING THE SAFENET MSSQL EKM PROVIDER 10 5 After the files are uninstalled, click Finish to complete the process.

13 CHAPTER 3 Configuring the SafeNet MSSQL EKM Provider in the SQL Server Database To configure the provider in the SQL Server Database, you must enabled EKM, load the dll, and create credentials for a database user. All of these procedures are described below. This chapter contains the following information: Enabling EKM in Your SQL Server Database 11 Loading the DLL 11 Creating Credentials with SQL Server 12 Enabling EKM in Your SQL Server Database Execute the following commands on the SQL Server to enable EKM. sp_configure 'show advanced options', 1; RECONFIGURE; sp_configure 'EKM provider enabled', 1; RECONFIGURE; Loading the DLL Note: Before loading the dll, you must configure the IngrianNAE.properties file. At a minimum, you must set the NAE_IP and Log_File parameters. To load the dll, execute the following command: CREATE CRYPTOGRAPHIC PROVIDER safenetsqlekm FROM FILE = 'C:\Program Files\Ingrian\SQLEKM\ingsqlekm.dll' Note: Alter the file location if you did not accept the default installation directory.

14 CONFIGURING THE SAFENET MSSQL EKM PROVIDER IN THE SQL SERVER DATABASE 12 This will create a new cryptographic provider named safenetsqlekm. Provider name is visible under Security\Cryptographic Providers in SQL Server Management Studio. Creating Credentials with SQL Server To create a SQL credential, execute the following commands: CREATE CREDENTIAL TestEKMCred WITH IDENTITY='<DataSecureUser>', SECRET='<DataSecureUserPassword>' FOR CRYPTOGRAPHIC PROVIDER safenetsqlekm Note: You must use a user/password combination that exists on the DataSecure. This will create a new credential named TestEKMCred. The credential is visible under Security\Credentials in SQL Server Management Studio. To map this new credential to an existing login on the SQL Server, execute the following commands: ALTER LOGIN sa ADD CREDENTIAL TestEKMCred

15 CHAPTER 4 Using the SafeNet MSSQL EKM Provider Once the SafeNet SQL EKM Provider is installed and EKM is enabled, the database user accesses the provider using SQL commands. This chapter contains the following topics: Viewing the Provider Properties 13 Viewing the Supported Algorithms 14 Creating a Key on the DataSecure 14 Open an Existing Key in the Database 15 Viewing All Keys in the Database 15 Viewing All of a User s Keys on the DataSecure 15 Dropping a Key From the Database 15 Dropping a Key From the DataSecure 16 Encrypting and Decrypting Data 16 Viewing the Provider Properties To view the provider properties, execute the following command: SELECT [provider_id], [guid], [provider_version], [sqlcrypt_version], [friendly_name], [authentication_type], [symmetric_key_support], [symmetric_key_persistance], [symmetric_key_export], [symmetric_key_import], [asymmetric_key_support], [asymmetric_key_persistance], [asymmetric_key_export], [asymmetric_key_import] FROM [master].[sys].[dm_cryptographic_provider_properties] Note: You'll need the provider_id to query the database for supported algorithms.

16 USING THE SAFENET MSSQL EKM PROVIDER 14 Viewing the Supported Algorithms To view the supported algorithms, execute the following command: SELECT * FROM sys.dm_cryptographic_provider_algorithms(<your_provider_id>) For example, SELECT * FROM sys.dm_cryptographic_provider_algorithms(65593) Creating a Key on the DataSecure Note: To create keys from the provider, you must select Allow Key and Policy Configuration Operations in the NAE Server Settings section of the DataSecure's Management Console. Otherwise all attempts to create a key will fail. The provider commands used to create a key on the DataSecure also open that key in the database. Once the key is opened in the database, you can use it for cryptographic operations. To create a new key on the DataSecure, execute the following command: CREATE ASYMMETRIC KEY <key name in database> FROM Provider <provider name> WITH ALGORITHM = <algorithm>, PROVIDER_KEY_NAME = '<key name on DataSecure>', CREATION_DISPOSITION=CREATE_NEW For example, CREATE ASYMMETRIC KEY SQL_EKM_RSA_1024_Key FROM Provider safenetsqlekm WITH ALGORITHM = RSA_1024, PROVIDER_KEY_NAME = 'EKM_RSA_1024_Key', CREATION_DISPOSITION=CREATE_NEW This will create a new asymmetric key on the DataSecure with the name "EKM_RSA_1024_Key"; algorithm type for the key is "RSA_1024". This will also open the key in the database. The corresponding key name on the SQL server is "SQL_EKM_RSA_1024_Key". Note: You'll need to modify this statement to match your key name and preferred algorithm. To create a symmetric key, the statement must start with CREATE SYMMETRIC KEY.

17 USING THE SAFENET MSSQL EKM PROVIDER 15 Open an Existing Key in the Database When you want to access a key that already exists on the DataSecure, you'll need to open that key in the database. To open a key in the database, execute the following command: CREATE ASYMMETRIC KEY <key name in database> FROM Provider <provider name> WITH PROVIDER_KEY_NAME = '<key name on DataSecure>', CREATION_DISPOSITION=OPEN_EXISTING This will create a new asymmetric key on the SQL server with the name "SQL_EKM_RSA_1024_Key" using the existing key "EKM_RSA_1024_Key" on DataSecure. Note: You'll need to modify this statement to match your key name. To open a symmetric key, the statement must start with CREATE SYMMETRIC KEY. Viewing All Keys in the Database To view all keys currently in the database, execute the following statements: Select * from [master].[sys].[asymmetric_keys] Select * from [master].[sys].[symmetric_keys] Viewing All of a User s Keys on the DataSecure To view all of the user's keys on the DataSecure, execute the following statement: SELECT * FROM sys.dm_cryptographic_provider_keys(providerid) Dropping a Key From the Database To drop an asymmetric key from the database, execute the following statement: DROP ASYMMETRIC KEY <key name> This will remove the key only from the database. The key will remain on the DataSecure. For example, DROP ASYMMETRIC KEY SQL_EKM_RSA_1024_Key To drop a symmetric key, use the DROP SYMMETRIC KEY statement.

18 USING THE SAFENET MSSQL EKM PROVIDER 16 Dropping a Key From the DataSecure To drop a key from the database and remove it from the DataSecure, execute the following statement: DROP ASYMMETRIC KEY <key name> REMOVE PROVIDER KEY To drop a symmetric key, use the DROP SYMMETRIC KEY statement. Encrypting and Decrypting Data The following examples rely on this table: Create table dbo.test1 (Id int not null, FName varchar(max) not null, LName varchar(max) not null) Encrypting Data To encrypt data, you call the following procedures: EncryptByAsymKey - for encryption by asymmetric keys. EncryptByKey - for encryption by symmetric keys. For example, to encrypt with an asymmetric key, execute the following statement: INSERT INTO dbo.test1 values(2,'ankit2', EncryptByAsymKey(AsymKey_Id('SQL_EKM_RSA_1024_Key'), 'mehra2')) To encrypt with a symmetric key, execute the following statement: INSERT INTO dbo.test1 values( 6,'ankit6',EncryptByKey(Key_GUID('SQL_EKM_AES_256_Key'), 'mehra6')) Decrypting Data To decrypt data, you call the following procedures: DecryptByAsymKey - for decryption by asymmetric keys. DecryptByKey - for decryption by symmetric keys. For example, to decrypt with an asymmetric key, execute the following statement: SELECT Id,FName, CONVERT(varchar(max),DecryptByAsymKey(AsymKey_Id('SQL_EKM_RSA_1024_Key'), LName)) LName FROM dbo.test1 where id =2

19 USING THE SAFENET MSSQL EKM PROVIDER 17 To decrypt with a symmetric key, execute the following statement: SELECT Id,FName,CONVERT(varchar(MAX),DecryptByKey(LName)) LName FROM dbo.test1 where id =6

20 CHAPTER 5 Using the SafeNet MSSQL EKM Provider with Transparent Database Encryption When Transparent Database Encryption (TDE) is enabled on your MS SQL Server, a Database Encryption Key (DEK) is created on the database server. The DEK encrypts database pages as they are written to disk, and decrypts pages as they are read. You can provide an extra level of security by using a DataSecure key to encrypt the DEK itself. This chapter contains the following topics: Enabling TDE Using SafeNet s MSSQL EKM Provider 18 Creating an Asymmetric Key Protected by the MSSQL EKM Provider 19 Creating a Credential Protected by the Asymmetric Key 19 Creating a Symmetric Database Encryption Key 20 Setting Encryption for the Database 20 Verifying Which Tables are Encrypted Using TDE 21 Enabling TDE Using SafeNet s MSSQL EKM Provider The procedure for using the SQLEKM Provider with TDE varies slightly from the regular SQLEKM configuration. Most notably, you must create a credential that is protected by the asymmetric key used to encrypt the DEK. To enable TDE using SafeNet's SQLEKM Provider: 1 Install the EKM provider as described in Chapter 2, Installing the SafeNet MSSQL EKM Provider. 2 Enable EKM in your SQL Server Database, load the DLL, and create credentials in SQL Server, as described in Chapter 3, Configuring the SafeNet MSSQL EKM Provider in the SQL Server Database. 3 Create an asymmetric key protected by the MSSQL EKM Provider.

21 USING THE SAFENET MSSQL EKM PROVIDER WITH TRANSPARENT DATABASE ENCRYPTION 19 4 Create a credential protected by the asymmetric key for use by the Database Engine. 5 Create a symmetric database encryption key. 6 Enable TDE using the database encryption key. Steps 3 through 6 are described below. Creating an Asymmetric Key Protected by the MSSQL EKM Provider You must create an asymmetric key that will secure the DEK. To create a new key on the DataSecure, execute the following command: CREATE ASYMMETRIC KEY <key name in database> FROM Provider <provider name> WITH ALGORITHM = <algorithm>, PROVIDER_KEY_NAME = '<key name on DataSecure>', CREATION_DISPOSITION=CREATE_NEW For example, CREATE ASYMMETRIC KEY SQL_EKM_RSA_1024_Key FROM Provider safenetsqlekm WITH ALGORITHM = RSA_1024, PROVIDER_KEY_NAME = 'EKM_RSA_1024_Key', CREATION_DISPOSITION=CREATE_NEW Note: Be sure to select an asymmetric algorithm: RSA_512, RSA_1024, or RSA_2048. Important! Be sure to back up this key! If you lose the key use to encrypt the DEK, you will not be able to access your database! Creating a Credential Protected by the Asymmetric Key 1 Execute the following statement to create a credential that will be used by the Database Engine: CREATE CREDENTIAL <ekm_tde_cred> WITH IDENTITY = '<DataSecure_user>', SECRET = '<DataSecure_user_password>' FOR CRYPTOGRAPHIC PROVIDER <provider_name> ; 2 Execute the following statement to add a login used by TDE, and add the new credential to the login:

22 USING THE SAFENET MSSQL EKM PROVIDER WITH TRANSPARENT DATABASE ENCRYPTION 20 CREATE LOGIN <EKM_Login> FROM ASYMMETRIC KEY <asymmetric_key_name> ; GO ALTER LOGIN <EKM_Login> ADD CREDENTIAL <ekm_tde_cred> ; GO Creating a Symmetric Database Encryption Key The DEK will encrypt your database. Create the DEK in the master database. To create the DEK: 1 Change to the database that will be encrypted: USE AdventureWorks ; GO 2 Execute the following code to create the database encryption key that will be used for TDE: CREATE DATABASE ENCRYPTION KEY WITH ALGORITHM = <algorithm> ENCRYPTION BY SERVER ASYMMETRIC KEY <key name on DataSecure> ; GO 3 Execute the following code to alter the database to enable transparent data encryption: ALTER DATABASE AdventureWorks SET ENCRYPTION ON ; GO The database is now stored in an encrypted format. Setting Encryption for the Database After DEK is created, you must alter the database to set the encryption on. To set encryption on, execute the following command: ALTER DATABASE <database_name> SET ENCRYPTION ON; To disable encryption, execute the following command: ALTER DATABASE <database_name> SET ENCRYPTION OFF;

23 USING THE SAFENET MSSQL EKM PROVIDER WITH TRANSPARENT DATABASE ENCRYPTION 21 Verifying Which Tables are Encrypted Using TDE To verify which tables are encrypted with the DEK, execute the following command: SELECT DB_NAME(e.database_id) AS DatabaseName, e.database_id, e.encryption_state, CASE e.encryption_state WHEN 0 THEN 'No database encryption key present, no encryption' WHEN 1 THEN 'Unencrypted' WHEN 2 THEN 'Encryption in progress' WHEN 3 THEN 'Encrypted' WHEN 4 THEN 'Key change in progress' WHEN 5 THEN 'Decryption in progress' END AS encryption_state_desc, c.name, e.percent_complete FROM sys.dm_database_encryption_keys AS e LEFT JOIN master.sys.asymmetric_keys AS c ON e.encryptor_thumbprint = c.thumbprint All databases on the server are included in the results of this command. Those databases with encryption on are listed as 'Encrypted'. Those databases with encryption off are listed as 'Unencrypted'.

24 CHAPTER 6 Troubleshooting This chapter contains the following topics: Cannot Create RSA-512, DES, or RC4 Keys on the DataSecure 22 How to Use a Hyphen in a Domian Name 23 How to Remove a Key from the DataSecure 23 Cannot Create RSA-512, DES, or RC4 Keys on the DataSecure If your DataSecure utilizes our high security features, some algorithms supported by the EKM Provider are disallowed by the DataSecure. Requests to create the following keys will result in error code 103: DES RC4 RC4_128 RSA_512 To resolve this problem, you can either disable the high security feature on the DataSecure or use one of algorithms supported by both the provider and the high security feature: AES_128 AES_192 AES_256 RSA_1024 RSA_2048 TRIPLE_DES TRIPLE_DES_3KEY

25 TROUBLESHOOTING 23 How to Use a Hyphen in a Domian Name If your domain name includes a hyphen, you must enclose the name in brackets. CREATE LOGIN [<domain-name>\<loginname>] FROM WINDOWS; For example, the follow statement creates a user in the SFNT-ABBA domain: Create login [sfnt-abba\bandersson] FROM WINDOWS; To add a credential to a login, execute the following SQL statement: Alter login [<domain-name\<loginname>] Add credential <credentialname> How to Remove a Key from the DataSecure After using the SQLEKM Provider to create a key on SQL Server and DataSecure, the following statement will remove the key from SQL Server only: DROP ASYMMETRIC KEY <key name in database> Once you execute that statement, you cannot use the provider to remove the key from the DataSecure. You must log into the DataSecure and remove the key there or you can create the SQL key using CREATE_DISPOSITION=OPEN_NEW and then drop the key using DROP ASYMMETRIC KEY REMOVE PROVIDER KEY. To drop the key from the DataSecure using the provider, execute the following statements: DROP ASYMMETRIC KEY <key name in database> REMOVE PROVIDER KEY

26 CHAPTER 7 Error Codes and Messages This section describes the error messages that can be produced by the SafeNet provider. It is divided into the following categories: Initialization/Configuration General Authentication Crypto Server Communications Note: Error Code 0 is reserved for I_E_OK, which means that no error was produced. Initialization/Configuration Error I_E_ALREADY_INITIALIZED I_E_INVALID_INITIALIZE_PATH I_E_INVALID_INITIALIZE_SOURCE I_E_LIBRARY_UNINITIALIZED I_E_PROTOCOL_VERSION_MISMATCH I_E_PROPERTIES_SOURCE_NOT_FOUND I_E_PROPERTIES_FILE_NOT_FOUND I_E_NO_NAE_SERVERS I_E_CONF_FILE_VERSION_MISMATCH I_E_INVALID_PROPERTY I_E_CANNOT_WRITE_TO_LOG_FILE I_E_NAE_IP_PROPERTY_FORMAT_INVALID Error Message Library already initialized. Properties environment variable is empty. Invalid I_T_InitializationSource. Library is not initialized. Server does not support any of the protocols this client supports. Can t find a source for properties. Specified properties file not found. No NAE servers were specified in the NAE_IP property. Unsupported properties file version. Invalid properties file property. Cannot write to the file specified in the Logfile property. Illegal address in the NAE_IP property.

27 ERROR CODES AND MESSAGES 25 General Error I_E_NO_MEM I_E_INVALID_PARAM I_E_INVALID_SESSION I_E_INVALID_OBJECT Error Message Out of Memory. Invalid function parameter. Invalid session handle. Invalid object handle. Authentication Error I_E_INVALID_AUTH_TYPE I_E_UNSUPPORTED_AUTH_TYPE I_E_LOGGED_OUT I_E_MISSING_AUTH_INFO Error Message Session authentication type is invalid. Unsupported authentication type. Cannot log back in to a logged out session. Authentication argument missing. Crypto Error I_E_SHORT_RANDOM I_E_KEY_NOT_EXPORTABLE I_E_SERVER_DOES_NOT_SUPPORT_BULK I_E_TOO_FEW_OPERATIONS_FOR_BULK I_E_INITIALIZATION_FAILED I_E_CRYPTO_BUFFER_TOO_SMALL I_E_UNSUPPORTED_ALGORITHM I_E_INCORRECT_KEY_TYPE I_E_LOCAL_CRYPT_GENERIC_ERROR I_E_CANNOT_ENABLE_KEY_CACHE Error Message I_Random delivered fewer than requested bytes. Key is not exportable. Server does not support Bulk operation. Bulk array is too small. Initialization failed. Output buffer is too small. Algorithm is not supported. Incorrect key type for import. Generic local cryptography error. Cannot enable key cache. Server Communications Error I_E_CONNECTION_FAILED I_E_SERVER_UNAVAILABLE I_E_SERVER_DOES_NOT_BATCH Error Message Cannot obtain a connection to a server. Server unavailable. Server does not support batching.

28 ERROR CODES AND MESSAGES 26 Error Error Message I_E_CONNECTION_READ_ERROR Server unavailable: read error. I_E_CONNECTION_WRITE_ERROR Server unavailable: write error. I_E_CONNECTION_ERROR Generic server error. I_E_CONNECTION_FATAL_ERROR Connection error. I_E_CONNECTION_NONFATAL_ERROR Connection error. I_E_CONNECTION_INVALID_RESPONSE Connection error: invalid response. I_E_CONNECTION_INVALID_DATA_SIZE Connection error: invalid data size. I_E_CONNECTION_BUFFER_FULL Connection error: buffer full. I_E_CONNECTION_NO_MEM Connection error: out of memory. I_E_CONNECTION_INVALID_XML Connection error: protocol error. I_E_CONNECTION_INVALID Connection error: invalid command. I_E_UNKNOWN_SERVER_ERROR Unknown server error. I_E_SERVER_AUTHENTICATION_FAILED Authentication failed. I_E_SERVER_OPERATION_UNKNOWN Unknown operation. I_E_INVALID_NAE_USER Invalid NAE username or password. I_E_NAE_AUTHENTICATION_REQUIRED NAE user authentication required. I_E_NAE_DATA_TOO_LONG New data too long for operation. I_E_DATA_SIZE_IS_NOT_BLOCK_SIZE_MULTIPLE Data not a multiple of cipher block size. I_E_INVALID_PADDING Invalid ciphertext padding. I_E_OPERATION_NOT_SUPPORTED Cryptographic operation not supported. I_E_INVALID_ALGORITHM_FOR_KEY Invalid algorithm for key. I_E_INVALID_DATA_SIZE Invalid data size. I_E_INVALID_KEY_NAME Invalid key name. I_E_UNKNOWN_KEY Unknown key. I_E_COULD_NOT_INITIALIZE_KEY NAE server could not initialize key. I_E_KEY_DELETED_OR_MODIFIED Key was deleted of modified on NAE server. I_E_COULD_NOT_GENERATE_KEY NAE server could not generate key. I_E_KEY_ALREADY_EXISTS Key exists on NAE server. I_E_UNSUPPORTED_KEY_SIZE NAE server does not support this key size. I_E_INVALID_KEY_SIZE Key size is invalid for this algorithm. I_E_INVALID_PERMISSIONS Invalid key permissions. I_E_GLOBAL_KEY_CANNOT_HAVE_PERMISSIONS Global keys may not have permissions. I_E_KEY_IS_NOT_DELETABLE The key is not deletable.

29 ERROR CODES AND MESSAGES 27 Error I_E_INVALID_IV I_E_INVALID_ALGORITHM Error Message Invalid IV. Invalid algorithm.

Microsoft SQL Server Integration Guide

Microsoft SQL Server Integration Guide Microsoft SQL Server Integration Guide Document Information Document Part Number 007-011108-001 (Rev J) Release Date August 2013 Trademarks All intellectual property is protected by copyright. All trademarks

More information

Preface. Microsoft Office Sharepoint Server 2007 Integration Guide. 2009 SafeNet, Inc. All rights reserved. Part Number: 009804-001 (Rev A, 06/2009)

Preface. Microsoft Office Sharepoint Server 2007 Integration Guide. 2009 SafeNet, Inc. All rights reserved. Part Number: 009804-001 (Rev A, 06/2009) Microsoft Office Sharepoint Server 2007 Integration Guide Preface Preface 2009 SafeNet, Inc. All rights reserved. Part Number: 009804-001 (Rev A, 06/2009) All intellectual property is protected by copyright.

More information

SafeNet Authentication Manager Express. Upgrade Instructions All versions

SafeNet Authentication Manager Express. Upgrade Instructions All versions SafeNet Authentication Manager Express Upgrade Instructions All versions www.safenet-inc.com 4690 Millennium Drive, Belcamp, Maryland 21017 USA Telephone: +1 410 931 7500 or 1 800 533 3958 www.safenet-inc.com

More information

SafeNet KMIP and Amazon S3 Integration Guide

SafeNet KMIP and Amazon S3 Integration Guide SafeNet KMIP and Amazon S3 Integration Guide Documentation Version: 20130524 2013 SafeNet, Inc. All rights reserved Preface All intellectual property is protected by copyright. All trademarks and product

More information

Active Directory Rights Management Service Integration Guide

Active Directory Rights Management Service Integration Guide Active Directory Rights Management Service Integration Guide Preface Preface 2013 SafeNet, Inc. All rights reserved. Part Number: 007-011230-001 (Rev F, 07/2013) All intellectual property is protected

More information

Microsoft IIS Integration Guide

Microsoft IIS Integration Guide Microsoft IIS Integration Guide Preface Preface 2015 SafeNet, Inc. All rights reserved. Part Number: 007-011955-001 (Rev E, 12/2015) All intellectual property is protected by copyright. All trademarks

More information

Configuration Guide. SafeNet Authentication Service AD FS Agent

Configuration Guide. SafeNet Authentication Service AD FS Agent SafeNet Authentication Service AD FS Agent Configuration Guide Technical Manual Template Release 1.0, PN: 000-000000-000, Rev. A, March 2013, Copyright 2013 SafeNet, Inc. All rights reserved. 1 Document

More information

Installation Guide. SafeNet Authentication Service

Installation Guide. SafeNet Authentication Service SafeNet Authentication Service Installation Guide Technical Manual Template Release 1.0, PN: 000-000000-000, Rev. A, March 2013, Copyright 2013 SafeNet, Inc. All rights reserved. 1 Document Information

More information

Configuration Guide. SafeNet Authentication Service. Remote Logging Agent

Configuration Guide. SafeNet Authentication Service. Remote Logging Agent SafeNet Authentication Service Configuration Guide Technical Manual Template Release 1.0, PN: 000-000000-000, Rev. A, March 2013, Copyright 2013 SafeNet, Inc. All rights reserved. 1 Document Information

More information

Integration Guide. SafeNet Authentication Service. Using SAS with Web Application Proxy. Technical Manual Template

Integration Guide. SafeNet Authentication Service. Using SAS with Web Application Proxy. Technical Manual Template SafeNet Authentication Service Integration Guide Technical Manual Template Release 1.0, PN: 000-000000-000, Rev. A, March 2013, Copyright 2013 SafeNet, Inc. All rights reserved. 1 Document Information

More information

Configuration Guide. SafeNet Authentication Service. Token Validator Proxy Agent

Configuration Guide. SafeNet Authentication Service. Token Validator Proxy Agent SafeNet Authentication Service Configuration Guide Technical Manual Template Release 1.0, PN: 000-000000-000, Rev. A, March 2013, Copyright 2013 SafeNet, Inc. All rights reserved. 1 Document Information

More information

Synchronization Agent Configuration Guide

Synchronization Agent Configuration Guide SafeNet Authentication Service Synchronization Agent Configuration Guide 1 Document Information Document Part Number 007-012476-001, Revision A Release Date July 2014 Trademarks All intellectual property

More information

Integration Guide. SafeNet Authentication Service. VMWare View 5.1

Integration Guide. SafeNet Authentication Service. VMWare View 5.1 SafeNet Authentication Service Integration Guide Technical Manual Template Release 1.0, PN: 000-000000-000, Rev. A, March 2013, Copyright 2013 SafeNet, Inc. All rights reserved. 1 Document Information

More information

SafeNet MobilePASS Version 8.2.0, Revision B

SafeNet MobilePASS Version 8.2.0, Revision B SafeNet MobilePASS Version 8.2.0, Revision B User Guide Software Version 8.2.0 Documentation Version: 20101118 2012 SafeNet, Inc. All rights reserved Preface All intellectual property is protected by copyright.

More information

PrivateServer HSM EKM Provider for Microsoft SQL Server

PrivateServer HSM EKM Provider for Microsoft SQL Server PrivateServer HSM EKM Provider for Microsoft SQL Server January 2014 Document Version 1.1 Notice The information provided in this document is the sole property of Algorithmic Research Ltd. No part of this

More information

Agent Configuration Guide

Agent Configuration Guide SafeNet Authentication Service Agent Configuration Guide SAS Agent for Microsoft Internet Information Services (IIS) Technical Manual Template Release 1.0, PN: 000-000000-000, Rev. A, March 2013, Copyright

More information

Integration Guide. SafeNet Authentication Service. SAS Using RADIUS Protocol with Microsoft DirectAccess

Integration Guide. SafeNet Authentication Service. SAS Using RADIUS Protocol with Microsoft DirectAccess SafeNet Authentication Service Integration Guide SAS Using RADIUS Protocol with Microsoft DirectAccess Technical Manual Template Release 1.0, PN: 000-000000-000, Rev. A, March 2013, Copyright 2013 SafeNet,

More information

Integration Guide. SafeNet Authentication Service. Using SAS as an Identity Provider for Tableau Server

Integration Guide. SafeNet Authentication Service. Using SAS as an Identity Provider for Tableau Server SafeNet Authentication Service Integration Guide Technical Manual Template Release 1.0, PN: 000-000000-000, Rev. A, March 2013, Copyright 2013 SafeNet, Inc. All rights reserved. 1 Document Information

More information

Thales Database Security Option Pack. for Microsoft SQL Server Integration Guide. www.thales-esecurity.com

Thales Database Security Option Pack. for Microsoft SQL Server Integration Guide. www.thales-esecurity.com Thales Database Security Option Pack for Microsoft SQL Server Integration Guide www.thales-esecurity.com Version: 2.0 Date: 4 May 2012 Copyright 2012 Thales e-security Limited. All rights reserved. Copyright

More information

Integration Guide. SafeNet Authentication Client. Using SAC with Putty-CAC

Integration Guide. SafeNet Authentication Client. Using SAC with Putty-CAC SafeNet Authentication Client Integration Guide Technical Manual Template Release 1.0, PN: 000-000000-000, Rev. A, March 2013, Copyright 2013 SafeNet, Inc. All rights reserved. 1 Document Information Document

More information

Configuration Guide. SafeNet Authentication Service. SAS Agent for Microsoft Outlook Web Access 1.06

Configuration Guide. SafeNet Authentication Service. SAS Agent for Microsoft Outlook Web Access 1.06 SafeNet Authentication Service Configuration Guide 1.06 Technical Manual Template Release 1.0, PN: 000-000000-000, Rev. A, March 2013, Copyright 2013 SafeNet, Inc. All rights reserved. 1 Document Information

More information

Configuration Guide. SafeNet Authentication Service. SAS Agent for Microsoft Internet Information Services (IIS)

Configuration Guide. SafeNet Authentication Service. SAS Agent for Microsoft Internet Information Services (IIS) SafeNet Authentication Service Configuration Guide Technical Manual Template Release 1.0, PN: 000-000000-000, Rev. A, March 2013, Copyright 2013 SafeNet, Inc. All rights reserved. 1 Document Information

More information

SQL Server Encryption Overview. September 2, 2015

SQL Server Encryption Overview. September 2, 2015 SQL Server Encryption Overview September 2, 2015 ABOUT ME Edmund Poillion Data Platform Systems Engineer Skyline Associate since 1999 Started in App Dev, changed focus to SQL Server in 2012 Email: epoillion@skylinetechnologies.com

More information

Integration Guide. SafeNet Authentication Service. Integrating Active Directory Lightweight Services

Integration Guide. SafeNet Authentication Service. Integrating Active Directory Lightweight Services SafeNet Authentication Service Integration Guide Technical Manual Template Release 1.0, PN: 000-000000-000, Rev. A, March 2013, Copyright 2013 SafeNet, Inc. All rights reserved. 1 Document Information

More information

Preface. Limitations. Disclaimers. Technical Support. Luna SA and IBM HTTP Server/IBM Web Sphere Application Server Integration Guide

Preface. Limitations. Disclaimers. Technical Support. Luna SA and IBM HTTP Server/IBM Web Sphere Application Server Integration Guide Luna SA and IBM HTTP Server/IBM Web Sphere Application Server Integration Guide Preface Preface 2012 SafeNet, Inc. All rights reserved. Part Number: 007-012077-001 (Rev B, 06/2012) All intellectual property

More information

Configuration Guide. SafeNet Authentication Service. SAS Agent for Microsoft Outlook Web App. Technical Manual Template

Configuration Guide. SafeNet Authentication Service. SAS Agent for Microsoft Outlook Web App. Technical Manual Template SafeNet Authentication Service Configuration Guide Technical Manual Template Release 1.0, PN: 000-000000-000, Rev. A, March 2013, Copyright 2013 SafeNet, Inc. All rights reserved. 1 Document Information

More information

Gemalto SafeNet Minidriver 9.0

Gemalto SafeNet Minidriver 9.0 SafeNet Authentication Client Gemalto SafeNet Minidriver 9.0 Technical Manual Template Release 1.0, PN: 000-000000-000, Rev. A, March 2013, Copyright 2013 SafeNet, Inc. All rights reserved. 1 Document

More information

Integration Guide. SafeNet Authentication Service. SAS Using RADIUS Protocol with Apache HTTP Server

Integration Guide. SafeNet Authentication Service. SAS Using RADIUS Protocol with Apache HTTP Server SafeNet Authentication Service Integration Guide Technical Manual Template Release 1.0, PN: 000-000000-000, Rev. A, March 2013, Copyright 2013 SafeNet, Inc. All rights reserved. 1 Document Information

More information

Integration Guide. SafeNet Authentication Service. Using SAS as an Identity Provider for Salesforce

Integration Guide. SafeNet Authentication Service. Using SAS as an Identity Provider for Salesforce SafeNet Authentication Service Integration Guide Technical Manual Template Release 1.0, PN: 000-000000-000, Rev. A, March 2013, Copyright 2013 SafeNet, Inc. All rights reserved. 1 Document Information

More information

ProtectDrive. User Manual Revision: B00

ProtectDrive. User Manual Revision: B00 ProtectDrive User Manual Revision: B00 THIS PAGE INTENTIONALLY LEFT BLANK ProtectDrive User Manual Preface Preface Copyright All intellectual property is copyright. All trademarks and product names used

More information

Integration Guide. SafeNet Authentication Service. Oracle Secure Desktop Using SAS RADIUS OTP Authentication

Integration Guide. SafeNet Authentication Service. Oracle Secure Desktop Using SAS RADIUS OTP Authentication SafeNet Authentication Service Integration Guide Oracle Secure Desktop Using SAS RADIUS OTP Authentication Technical Manual Template Release 1.0, PN: 000-000000-000, Rev. A, March 2013, Copyright 2013

More information

Integration Guide. SafeNet Authentication Service. Using SAS as an Identity Provider for Drupal

Integration Guide. SafeNet Authentication Service. Using SAS as an Identity Provider for Drupal SafeNet Authentication Service Integration Guide Technical Manual Template Release 1.0, PN: 000-000000-000, Rev. A, March 2013, Copyright 2013 SafeNet, Inc. All rights reserved. 1 Document Information

More information

Integration Guide. SafeNet Authentication Client. Using SAC CBA for Check Point Security Gateway

Integration Guide. SafeNet Authentication Client. Using SAC CBA for Check Point Security Gateway SafeNet Authentication Client Integration Guide Technical Manual Template Release 1.0, PN: 000-000000-000, Rev. A, March 2013, Copyright 2013 SafeNet, Inc. All rights reserved. 1 Document Information Document

More information

User Guide. SafeNet MobilePASS for Windows Phone

User Guide. SafeNet MobilePASS for Windows Phone SafeNet MobilePASS for Windows Phone User Guide Technical Manual Template Release 1.0, PN: 000-000000-000, Rev. A, March 2013, Copyright 2013 SafeNet, Inc. All rights reserved. 1 Document Information Product

More information

SafeNet Cisco AnyConnect Client. Configuration Guide

SafeNet Cisco AnyConnect Client. Configuration Guide SafeNet Cisco AnyConnect Client Configuration 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

More information

Installing RMFT on an MS Cluster

Installing RMFT on an MS Cluster Installing RMFT on an MS Cluster RMFT Software Version 2.4.3 Supported on: Windows Server 2003 Enterprise Edition Windows Server 2000 Advanced Windows Server 2003 Datacenter Edition Windows Server 2008

More information

SafeGuard Enterprise Web Helpdesk. Product version: 6 Document date: February 2012

SafeGuard Enterprise Web Helpdesk. Product version: 6 Document date: February 2012 SafeGuard Enterprise Web Helpdesk Product version: 6 Document date: February 2012 Contents 1 SafeGuard web-based Challenge/Response...3 2 Installation...5 3 Authentication...8 4 Select the Web Helpdesk

More information

Dell InTrust 11.0. Preparing for Auditing Microsoft SQL Server

Dell InTrust 11.0. Preparing for Auditing Microsoft SQL Server 2014 Dell Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this guide is furnished under a software license or nondisclosure agreement.

More information

Network FAX Driver. Operation Guide

Network FAX Driver. Operation Guide Network FAX Driver Operation Guide About this Operation Guide This Operation Guide explains the settings for the Network FAX driver as well as the procedures that are required in order to use the Network

More information

Remote Management System

Remote Management System RMS Copyright and Distribution Notice November 2009 Copyright 2009 ARTROMICK International, Inc. ALL RIGHTS RESERVED. Published 2009. Printed in the United States of America WARNING: ANY UNAUTHORIZED

More information

Archive Attender Version 3.5

Archive Attender Version 3.5 Archive Attender Version 3.5 Getting Started Guide Sherpa Software (800) 255-5155 www.sherpasoftware.com Page 1 Under the copyright laws, neither the documentation nor the software can be copied, photocopied,

More information

Apache HTTP Server Integration Guide

Apache HTTP Server Integration Guide Apache HTTP Server Integration Guide Document Information Document Part Number 007-011228-001 (Rev E) Release Date November 2014 Trademarks All intellectual property is protected by copyright. All trademarks

More information

How To Set Up Safetica Insight 9 (Safetica) For A Safetrica Management Service (Sms) For An Ipad Or Ipad (Smb) (Sbc) (For A Safetaica) (

How To Set Up Safetica Insight 9 (Safetica) For A Safetrica Management Service (Sms) For An Ipad Or Ipad (Smb) (Sbc) (For A Safetaica) ( SAFETICA INSIGHT INSTALLATION MANUAL SAFETICA INSIGHT INSTALLATION MANUAL for Safetica Insight version 6.1.2 Author: Safetica Technologies s.r.o. Safetica Insight was developed by Safetica Technologies

More information

WhatsUp Gold v16.2 Installation and Configuration Guide

WhatsUp Gold v16.2 Installation and Configuration Guide WhatsUp Gold v16.2 Installation and Configuration Guide Contents Installing and Configuring Ipswitch WhatsUp Gold v16.2 using WhatsUp Setup Installing WhatsUp Gold using WhatsUp Setup... 1 Security guidelines

More information

Sophos for Microsoft SharePoint startup guide

Sophos for Microsoft SharePoint startup guide Sophos for Microsoft SharePoint startup guide Product version: 2.0 Document date: March 2011 Contents 1 About this guide...3 2 About Sophos for Microsoft SharePoint...3 3 System requirements...3 4 Planning

More information

Dell Statistica 13.0. Statistica Enterprise Installation Instructions

Dell Statistica 13.0. Statistica Enterprise Installation Instructions Dell Statistica 13.0 2015 Dell Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this guide is furnished under a software license or

More information

Installation and Upgrade Guide

Installation and Upgrade Guide ControlPoint for Office 365 Publication Date: January 12, 2016 All Rights Reserved. This software is protected by copyright law and international treaties. Unauthorized reproduction or distribution of

More information

3 Setting up Databases on a Microsoft SQL 7.0 Server

3 Setting up Databases on a Microsoft SQL 7.0 Server 3 Setting up Databases on a Microsoft SQL 7.0 Server Overview of the Installation Process To set up GoldMine properly, you must follow a sequence of steps to install GoldMine s program files, and the other

More information

KeySecure CUSTOMER RELEASE NOTES. Contents. Version: 8.1.0 Issue Date: 2 February 2015 Document Part Number: 007-012896-001, Rev A.

KeySecure CUSTOMER RELEASE NOTES. Contents. Version: 8.1.0 Issue Date: 2 February 2015 Document Part Number: 007-012896-001, Rev A. KeySecure CUSTOMER RELEASE NOTES Version: 8.1.0 Issue Date: 2 February 2015 Document Part Number: 007-012896-001, Rev A Contents Product Description... 3 Key Management... 3 High Performance... 3 Broad

More information

Upgrade Guide BES12. Version 12.1

Upgrade Guide BES12. Version 12.1 Upgrade Guide BES12 Version 12.1 Published: 2015-02-25 SWD-20150413111718083 Contents Supported upgrade environments...4 Upgrading from BES12 version 12.0 to BES12 version 12.1...5 Preupgrade tasks...5

More information

DIGIPASS CertiID. Getting Started 3.1.0

DIGIPASS CertiID. Getting Started 3.1.0 DIGIPASS CertiID Getting Started 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

MadCap Software. Upgrading Guide. Pulse

MadCap Software. Upgrading Guide. Pulse MadCap Software Upgrading Guide Pulse Copyright 2014 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this document is furnished

More information

How To Manage Storage With Novell Storage Manager 3.X For Active Directory

How To Manage Storage With Novell Storage Manager 3.X For Active Directory www.novell.com/documentation Installation Guide Novell Storage Manager 4.1 for Active Directory September 10, 2015 Legal Notices Condrey Corporation makes no representations or warranties with respect

More information

Microsoft SQL Server Integration Guide

Microsoft SQL Server Integration Guide Microsoft SQL Server Integration Guide Document Information Document Part Number 007-011108-001 (Rev T) Release Date December 2015 Trademarks All intellectual property is protected by copyright. All trademarks

More information

SafeGuard Enterprise Web Helpdesk

SafeGuard Enterprise Web Helpdesk SafeGuard Enterprise Web Helpdesk Product version: 5.60 Document date: April 2011 Contents 1 SafeGuard web-based Challenge/Response...3 2 Installation...5 3 Authentication...8 4 Select the Web Help Desk

More information

ImageNow Cluster Resource Monitor

ImageNow Cluster Resource Monitor ImageNow Cluster Resource Monitor Installation and Setup Guide ImageNow Version: 6.7. x Written by: Product Documentation, R&D Date: June 2012 2012 Perceptive Software. All rights reserved CaptureNow,

More information

DESLock+ Basic Setup Guide Version 1.20, rev: June 9th 2014

DESLock+ Basic Setup Guide Version 1.20, rev: June 9th 2014 DESLock+ Basic Setup Guide Version 1.20, rev: June 9th 2014 Contents Overview... 2 System requirements:... 2 Before installing... 3 Download and installation... 3 Configure DESLock+ Enterprise Server...

More information

KMIP installation Guide. DataSecure and KeySecure Version 6.1.2. 2012 SafeNet, Inc. 007-012120-001

KMIP installation Guide. DataSecure and KeySecure Version 6.1.2. 2012 SafeNet, Inc. 007-012120-001 KMIP installation Guide DataSecure and KeySecure Version 6.1.2 2012 SafeNet, Inc. 007-012120-001 Introduction This guide provides you with the information necessary to configure the KMIP server on the

More information

SafeGuard Enterprise Web Helpdesk. Product version: 6.1

SafeGuard Enterprise Web Helpdesk. Product version: 6.1 SafeGuard Enterprise Web Helpdesk Product version: 6.1 Document date: February 2014 Contents 1 SafeGuard web-based Challenge/Response...3 2 Scope of Web Helpdesk...4 3 Installation...5 4 Allow Web Helpdesk

More information

NovaBACKUP xsp Version 15.0 Upgrade Guide

NovaBACKUP xsp Version 15.0 Upgrade Guide NovaBACKUP xsp Version 15.0 Upgrade Guide NovaStor / November 2013 2013 NovaStor, all rights reserved. All trademarks are the property of their respective owners. Features and specifications are subject

More information

EVault Endpoint Protection 7.0 Single Sign-On Configuration

EVault Endpoint Protection 7.0 Single Sign-On Configuration Revision: This manual has been provided for Version 7.0 (July 2014). Software Version: 7.0 2014 EVault Inc. EVault, A Seagate Company, makes no representations or warranties with respect to the contents

More information

Reconfiguring VMware vsphere Update Manager

Reconfiguring VMware vsphere Update Manager Reconfiguring VMware vsphere Update Manager vsphere Update Manager 6.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a

More information

QUANTIFY INSTALLATION GUIDE

QUANTIFY INSTALLATION GUIDE QUANTIFY INSTALLATION GUIDE Thank you for putting your trust in Avontus! This guide reviews the process of installing Quantify software. For Quantify system requirement information, please refer to the

More information

Lepide Software Asset Management

Lepide Software Asset Management Installation Guide Lepide Software Asset Management , All Rights Reserved This User Guide and documentation is copyright of Lepide Software Private Limited, with all rights reserved under the copyright

More information

Oracle Enterprise Manager. Description. Versions Supported

Oracle Enterprise Manager. Description. Versions Supported Oracle Enterprise Manager System Monitoring Plug-in Installation Guide for Microsoft SQL Server Release 10 (4.0.3.1.0) E14811-03 June 2009 This document provides a brief description about the Oracle System

More information

Server Installation Guide ZENworks Patch Management 6.4 SP2

Server Installation Guide ZENworks Patch Management 6.4 SP2 Server Installation Guide ZENworks Patch Management 6.4 SP2 02_016N 6.4SP2 Server Installation Guide - 2 - Notices Version Information ZENworks Patch Management Server Installation Guide - ZENworks Patch

More information

Symantec Backup Exec TM 11d for Windows Servers. Quick Installation Guide

Symantec Backup Exec TM 11d for Windows Servers. Quick Installation Guide Symantec Backup Exec TM 11d for Windows Servers Quick Installation Guide September 2006 Symantec Legal Notice Copyright 2006 Symantec Corporation. All rights reserved. Symantec, Backup Exec, and the Symantec

More information

Sentinel Cloud V.3.5 Installation Guide

Sentinel Cloud V.3.5 Installation Guide Sentinel Cloud V.3.5 Installation Guide ii Sentinel Cloud Installation Guide Document Revision History Part number 007-012284-001, Revision C. September 2014 Disclaimer and Copyrights Copyright 2014, SafeNet,

More information

WhatsUp Gold v16.3 Installation and Configuration Guide

WhatsUp Gold v16.3 Installation and Configuration Guide WhatsUp Gold v16.3 Installation and Configuration Guide Contents Installing and Configuring WhatsUp Gold using WhatsUp Setup Installation Overview... 1 Overview... 1 Security considerations... 2 Standard

More information

Digipass Plug-In for IAS. IAS Plug-In IAS. Microsoft's Internet Authentication Service. Installation Guide

Digipass Plug-In for IAS. IAS Plug-In IAS. Microsoft's Internet Authentication Service. Installation Guide Digipass Plug-In for IAS IAS Plug-In IAS Microsoft's Internet Authentication Service Installation Guide Disclaimer of Warranties and Limitations of Liabilities Disclaimer of Warranties and Limitations

More information

Legal Notes. Regarding Trademarks. Models supported by the KX printer driver. 2011 KYOCERA MITA Corporation

Legal Notes. Regarding Trademarks. Models supported by the KX printer driver. 2011 KYOCERA MITA Corporation Legal Notes Unauthorized reproduction of all or part of this guide is prohibited. The information in this guide is subject to change without notice. We cannot be held liable for any problems arising from

More information

DESlock+ Basic Setup Guide ENTERPRISE SERVER ESSENTIAL/STANDARD/PRO

DESlock+ Basic Setup Guide ENTERPRISE SERVER ESSENTIAL/STANDARD/PRO DESlock+ Basic Setup Guide ENTERPRISE SERVER ESSENTIAL/STANDARD/PRO Contents Overview...1 System requirements...1 Enterprise Server:...1 Client PCs:...1 Section 1: Before installing...1 Section 2: Download

More information

Configuring Security Features of Session Recording

Configuring Security Features of Session Recording Configuring Security Features of Session Recording Summary This article provides information about the security features of Citrix Session Recording and outlines the process of configuring Session Recording

More information

SplendidCRM Deployment Guide

SplendidCRM Deployment Guide SplendidCRM Deployment Guide Version 5.x Last Updated: December 14, 2010 Category: Deployment This guide is for informational purposes only. SPLENDIDCRM SOFTWARE MAKES NO WARRANTIES, EXPRESS OR IMPLIED,

More information

Administrator s Guide for the Polycom Video Control Application (VCA)

Administrator s Guide for the Polycom Video Control Application (VCA) Administrator s Guide for the Polycom Video Control Application (VCA) Version 1.1 November 2007 Edition 3725-26448-004/A Trademark Information Polycom and the Polycom logo design are registered trademarks

More information

Omniquad Exchange Archiving

Omniquad Exchange Archiving Omniquad Exchange Archiving Deployment and Administrator Guide Manual version 3.1.2 Revision Date: 20 May 2013 Copyright 2012 Omniquad Ltd. All rights reserved. Omniquad Ltd Crown House 72 Hammersmith

More information

HELP DOCUMENTATION E-SSOM INSTALLATION GUIDE

HELP DOCUMENTATION E-SSOM INSTALLATION GUIDE HELP DOCUMENTATION E-SSOM INSTALLATION GUIDE Copyright 1998-2013 Tools4ever B.V. All rights reserved. No part of the contents of this user guide may be reproduced or transmitted in any form or by any means

More information

Quick Start Guide For Ipswitch Failover v9.0

Quick Start Guide For Ipswitch Failover v9.0 For Ipswitch Failover v9.0 Copyright 1991-2015 All rights reserved. This document, as well as the software described in it, is furnished under license and may be used or copied only in accordance with

More information

Dell One Identity Cloud Access Manager 7.0.2. Installation Guide

Dell One Identity Cloud Access Manager 7.0.2. Installation Guide Dell One Identity Cloud Access Manager 7.0.2 2014 Dell Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this guide is furnished under

More information

RSA Authentication Manager 7.1 Basic Exercises

RSA Authentication Manager 7.1 Basic Exercises RSA Authentication Manager 7.1 Basic Exercises Contact Information Go to the RSA corporate web site for regional Customer Support telephone and fax numbers: www.rsa.com Trademarks RSA and the RSA logo

More information

SafeGuard Enterprise upgrade guide. Product version: 6.1

SafeGuard Enterprise upgrade guide. Product version: 6.1 SafeGuard Enterprise upgrade guide Product version: 6.1 Document date: February 2014 Contents 1 About this guide...3 2 Check the system requirements...4 3 Download installers...5 4 About upgrading...6

More information

EMC ViPR Controller Add-in for Microsoft System Center Virtual Machine Manager

EMC ViPR Controller Add-in for Microsoft System Center Virtual Machine Manager EMC ViPR Controller Add-in for Microsoft System Center Virtual Machine Manager Version 2.3 Installation and Configuration Guide 302-002-080 01 Copyright 2013-2015 EMC Corporation. All rights reserved.

More information

White Paper. Software version: 5.0 www.wmsoftware.com

White Paper. Software version: 5.0 www.wmsoftware.com Safe AutoLogon Password Server Using Safe AutoLogon Password Server to manage Safe AutoLogon clients for seamless and centrally managed automatic logons White Paper Software version: 5.0 www.wmsoftware.com

More information

Polar Help Desk Installation Guide

Polar Help Desk Installation Guide Polar Help Desk Installation Guide Copyright (legal information) Copyright Polar 1995-2005. All rights reserved. The information contained in this document is proprietary to Polar and may not be used or

More information

Check Point FDE integration with Digipass Key devices

Check Point FDE integration with Digipass Key devices INTEGRATION GUIDE Check Point FDE integration with Digipass Key devices 1 VASCO Data Security Disclaimer Disclaimer of Warranties and Limitation of Liabilities All information contained in this document

More information

Metalogix SharePoint Backup. Advanced Installation Guide. Publication Date: August 24, 2015

Metalogix SharePoint Backup. Advanced Installation Guide. Publication Date: August 24, 2015 Metalogix SharePoint Backup Publication Date: August 24, 2015 All Rights Reserved. This software is protected by copyright law and international treaties. Unauthorized reproduction or distribution of this

More information

RSA Authentication Agent 7.2 for Microsoft Windows Installation and Administration Guide

RSA Authentication Agent 7.2 for Microsoft Windows Installation and Administration Guide RSA Authentication Agent 7.2 for Microsoft Windows Installation and Administration Guide Contact Information Go to the RSA corporate web site for regional Customer Support telephone and fax numbers: www.rsa.com

More information

formerly Help Desk Authority 9.1.3 Upgrade Guide

formerly Help Desk Authority 9.1.3 Upgrade Guide formerly Help Desk Authority 9.1.3 Upgrade Guide 2 Contacting Quest Software Email: Mail: Web site: info@quest.com Quest Software, Inc. World Headquarters 5 Polaris Way Aliso Viejo, CA 92656 USA www.quest.com

More information

QAD Enterprise Applications. Training Guide Demand Management 6.1 Technical Training

QAD Enterprise Applications. Training Guide Demand Management 6.1 Technical Training QAD Enterprise Applications Training Guide Demand Management 6.1 Technical Training 70-3248-6.1 QAD Enterprise Applications February 2012 This document contains proprietary information that is protected

More information

Installation Guide for Pulse on Windows Server 2012

Installation Guide for Pulse on Windows Server 2012 MadCap Software Installation Guide for Pulse on Windows Server 2012 Pulse Copyright 2014 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software

More information

Reconfiguring VMware vsphere Update Manager

Reconfiguring VMware vsphere Update Manager Reconfiguring VMware vsphere Update Manager vsphere Update Manager 5.5 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a

More information

Microsoft IAS and NPS Agent Configuration Guide

Microsoft IAS and NPS Agent Configuration Guide Microsoft IAS and NPS Agent Configuration Guide Powerful Authentication Management for Service Providers and Enterprises Authentication Service Delivery Made EASY Agent IAS and NPS (Microsoft) Configuration

More information

Manual POLICY PATROL SECURE FILE TRANSFER

Manual POLICY PATROL SECURE FILE TRANSFER Manual POLICY PATROL SECURE FILE TRANSFER MANUAL Policy Patrol Secure File Transfer This manual, and the software described in this manual, are copyrighted. No part of this manual or the described software

More information

Installation Guide for the WebPortal

Installation Guide for the WebPortal Installation Guide for the WebPortal 100713 2013 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any form or by any means, electronic, or mechanical, including

More information

SolarWinds Migrating SolarWinds NPM Technical Reference

SolarWinds Migrating SolarWinds NPM Technical Reference SolarWinds Migrating SolarWinds NPM Technical Reference Copyright 1995-2015 SolarWinds Worldwide, LLC. All rights reserved worldwide. No part of this document may be reproduced by any means nor modified,

More information

Scheduling in SAS 9.4 Second Edition

Scheduling in SAS 9.4 Second Edition Scheduling in SAS 9.4 Second Edition SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2015. Scheduling in SAS 9.4, Second Edition. Cary, NC: SAS Institute

More information

Symantec AntiVirus Corporate Edition Patch Update

Symantec AntiVirus Corporate Edition Patch Update Symantec AntiVirus Corporate Edition Patch Update Symantec AntiVirus Corporate Edition Update Documentation version 10.0.1.1007 Copyright 2005 Symantec Corporation. All rights reserved. Symantec, the Symantec

More information

RSA Authentication Agent 7.1 for Microsoft Windows Installation and Administration Guide

RSA Authentication Agent 7.1 for Microsoft Windows Installation and Administration Guide RSA Authentication Agent 7.1 for Microsoft Windows Installation and Administration Guide Contact Information Go to the RSA corporate web site for regional Customer Support telephone and fax numbers: www.rsa.com

More information

About Recovery Manager for Active

About Recovery Manager for Active Dell Recovery Manager for Active Directory 8.6.1 May 30, 2014 These release notes provide information about the Dell Recovery Manager for Active Directory release. About Resolved issues Known issues System

More information