Decrypt Siteminder password data blob with DMS APi
search cancel

Decrypt Siteminder password data blob with DMS APi

book

Article ID: 273337

calendar_today

Updated On:

Products

SITEMINDER

Issue/Introduction

Is there any sample on how to decrypt the Password data blob with DMS API ? 

Environment

Release : 12.8.x

Resolution

The only sample from our end can be found In SiteMinder SDK, there is DMSAPISample.java file. In that file, you can find the user password status related sample code.

            //Get Password State
            Log(CRLF + bundle.getString("DMSAPI_GET_PWDSTATE"));
            SmDmsUserPWState pwstate = new SmDmsUserPWState();
            result = user.getUserPWState(pwstate);
            printObject(user, result, false);

 

Here is the DMS API Password Status reference URL
https://techdocs.broadcom.com/us/en/symantec-security-software/identity-security/siteminder/12-8/programming/sdks/programming-in-java/delegated-management-services-api/user-password-state.html
 
SiteMinder Java SDK doc download location 
https://techdocs.broadcom.com/content/dam/broadcom/techdocs/us/en/dita/symantec-security-software/identity-security--siteminder/siteminder/casso-consolidated/content/javadoc-sdk.zip

 

image.png

 

The document link below has the steps that you need to follow to make the DMS API call.

https://techdocs.broadcom.com/us/en/symantec-security-software/identity-security/siteminder/12-8/programming/sdks/programming-in-java/delegated-management-services-api/write-a-directory-management-application.html

You can look up the JavaTestClient.java in your downloaded SDK , It will show how to connect the policy server with 4.x agent type or 6.X agent type.