Gemini Community Support Site

This Gemini community support site can be used to find solutions to product issues. You can log in using Open Id, Google Profile and even Facebook. Feel free to ask a question or browse FAQs and documentation. Product tour videos are also available along with how-to videos demonstrating key Gemini capabilities.




Single Sign On

web-app

Hi,

I am trying to get Gemini to work with our company website via a single sign on. I can get this work perfectly using the PLAIN setting in Gemini for the password encryption but cannot work out what steps I must take to encrypt the passwrod before sending.

Can someone explain how I would go about this?

I would like to use the HASHED setting and would be calling the SSO.aspx from C# .Net so will need to how what encryption I must use and what the Key should be in the SSOKey setting in Gemini.

Any help would be really great as I don't have long to get this up and running.

Thanks in advance

Oliver

Oliver Cox
· 1
Oliver Cox
Replies (1)
helpful
0
not helpful

Use GeminiHelper:

string pwd = "your clear text password here";

string encryptKey = "countersoft"; // This is your key as is in the web.config file.

pwd = new CounterSoft.Gemini.Commons.GeminiHelper().Encrypt(pwd, encryptKey);

Response.Redirect("http://localhost/gemini/security/sso.aspx?u=manager&p=" + pwd);


Saar Cohen
· 5000
Saar Cohen