FAQ Tag: HMAC

How to set up HMAC authentication on a Muse Proxy application?

The overall steps would be: 1) Create the new application as copy of the MuseProxyFoundation template, the ID of the new application to be MuseProxyFoundationHMAC for example. 2) Edit the file $MUSE_HOME\proxy\webcontexts\Applications\MuseProxyFoundationHMAC\ profiles\AuthenticationGroups.xml and do the following: – Locate the /ICE-CONFIG/AUTHENTICATION_GROUPS/AUTHENTICATION_GROUP/AUTHENTICATIONS node and remove its content, thus obtaining an empty node: <AUTHENTICATIONS> </AUTHENTICATIONS> – Edit…

How can I generate HMAC Muse Proxy proxified links in php?

The instructions and code provided below are based on the following assumptions: – MuseProxyFoundationHMAC is the Muse Proxy application configured with HMAC authentication; – quiet is the value of the secret; – userName and timestamp are the signature parameters; – SHA256 is the algorithm; – the separator between the signature parameters is . . Add…

How can I generate HMAC Muse Proxy proxified links in java?

The instructions and code provided below are based on the following assumptions: – MuseProxyFoundationHMAC is the Muse Proxy application configured with HMAC authentication; – quiet is the value of the secret; – userName and timestamp are the signature parameters; – SHA256 is the algorithm; – the separator between the signature parameters is . . Integrate…

How can I generate HMAC Muse Proxy proxified links in .Net?

The instructions and code provided below are based on the following assumptions: MuseProxyFoundationHMAC is the Muse Proxy application configured with HMAC authentication; quiet is the value of the secret; userName and timestamp are the signature parameters; SHA256 is the algorithm; the separator between the signature parameters is . . Integrate the following code into your…