Discuss this help topic in SecureBlackbox Forum

Store user credentials in memory

TElSAMLIDPPasswordMemoryAuthSource class can be used to create, store and verify user credentials and can be shared between TElSAMLIdentityProvider instances. The instance of TElSAMLIDPPasswordMemoryAuthSource should be assigned to TElSAMLIdentityProvider.AuthSource property.

Example:

C#:


TElSAMLIDPPasswordMemoryAuthSource src = new TElSAMLIDPPasswordMemoryAuthSource();
src.Add("username", "password1");
src.Add("anothername", "password2");

Discuss this help topic in SecureBlackbox Forum