Discuss this help topic in SecureBlackbox Forum
Store user credentials in memory
TElSAMLIDPPasswordMemoryAuthSource class can be used to create, store and verify user credentials. A single TElSAMLIDPPasswordMemoryAuthSource object can be shared between multiple instances of TElSAMLIdentityProvider. A TElSAMLIDPPasswordMemoryAuthSource object should be assigned to the TElSAMLIdentityProvider.AuthSource property.
Example:
C#:
TElSAMLIDPPasswordMemoryAuthSource src = new TElSAMLIDPPasswordMemoryAuthSource();
src.Add("username", "password1");
src.Add("anothername", "password2");