We are implementing a SSO between WebSphere Application Server and Tomcat Using LTPA2 Token. As our client will be sending us the LTPA 2 Token once the user is Authenticated. And on the other hand we need to decrypt the LTPA2 token sent form our client and "decrypt" it, And use it to Authenticate on our end.
To Decrypt the LTPA token I have found this Link ,
My approach is extract the user name and other required information from the token and authenticate against our own LDAP(which will be same as client LDAP). But the project mentioned in above link is still in beta. Is there any other way to decrypt the token(may be a standard library for decrypting LTPA2 tokens) or any alternative approach?
We do not have any other option as LTPA2 Token is the client Requirement.