Instructions for encrypting passwords – Guntermann & Drunck DVICenter DP16 Configuration and Operation User Manual

Page 129

Advertising
background image

Controlling the matrix switch via XML

G&D DVICenter · 121

Instructions for encrypting passwords

If the transcription type transport encryption is enabled, the entire outgoing data stream

is encrypted. When using Password encryption, however, only the passwords of user

accounts are encrypted in XML requests.

A subset of the W3C standard

XML encryption

is used to encrypt passwords. An

<EncryptedData>

container replaces the password with the XML namespace

"http://

www.w3.org/2001/04/xmlenc#"

. This container includes the

<CipherData>

container,

which inlcudes the

<CipherValue>

container:

NOTE:

In XML requests, passwords can either be encrypted (recommended) or in

plain text when sent to the device.

PASSWORD AS EMBEDDED ENCRYPTED TEXT

<?xml version=\"1.0\" encoding=\"utf-8\"?>

<root>

<logon>

<DviConsole>0x22222222</DviConsole>

<User>JohnDoe</User>

<Password>

<EncryptedData xmlns="http://www.w3.org/2001/04/xmlenc#">

<CipherData>

<CipherValue>B2Wmn52teOPvY31wq0l4nw==</CipherValue>

</CipherData>

</EncryptedData>

</Password>

</logon>

</root>

Advertising