« November 2009
SunMonTueWedThuFriSat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
     
       
Today
XML

Blog::Navigation

A Twisted World

Blog::Entries

Blog::Old Entries


my Infocard Blog
It takes 2 to Tango
Higgins on RollerWebLogger
Browse HAPPY**
Infocard for Wordpress (Kims PHP Code Release)**
Using infocard to authenticate yourselves to Web Apps**
Blogrolled By Kim
Referer Spam or A Sequel to Full Monty ;-)
InfoCard or JavaCard
Microsoft Infocard & my realtime discoveries**
Kim's Infocard Demo**
Next Generation Web (definitely not 2.0)
Replace Microsoft Exchange as well as Microsoft Windows Server
Identity Information Theft vs Identity Theft
Web 2.0 - The Race Is On !!
Microsoft Hailstorm
Enterprise Identity - my 2.0 cents
Open Source Identity Management
Anonymous Identity
Is your IDENTITY Yours or your Employers ?**
DE-Federated Identity Access (DEAF)
Identitfy yourSELF (mIDm)
Who Am I**
n Factor Authentication
You are who I say you are**
OpenSSO - where are we headed ?**
Identity, Security & Theft
OpenSSO is Open For Business **
Ditching Microsoft Can Save You Your Money
Microsoft wants it's users to UNINSTALL Netscape
SHLIBERTY : Liberty Alliance

Blog::Roll

DISCLAIMER: This site is a personal blog and is to be used for informational purposes only. This is not legal advice. The views expressed on this blog are those of the author only, and should not be attributed to any past or present employers.

[This is a Roller site]
Linked In
blogs.sun.com
Java blogs
XHTML
CSS

Blog Directory & Search engine






Java RSS Blogs



Creative Commons License
This work is licensed under a Creative Commons License.

Blog::Referers

Today's Page Hits: 18

Site notes

This page validates as XHTML 1.0, and will look much better in a browser that supports web standards, but it is accessible to any browser or Internet device. It was created using techniques detailed at glish.com/css/.

Powered by Roller Weblogger.
my.info.card has now moved to its a new home at http://blogs.sun.com/ideas/.
Please update your bookmarks and feed URLs.

« use-er ecc-entric... | Main | User-Controlled... »
Monday April 03, 2006
Infocard Invoker with Self Signed Server Certificates

A few folks have been having issues using self signed server certificates to invoke the Identity Selector WinFX Component. Here's a short walkthorough on how to use a self signed certificate and save a few $$$'s from having to but a Certificate from a Trusted Authority.

The key is to use the sha1rsa Signature Algorithm instead of using the default md5rsa Signature Algorithm.


openssl genrsa -des3 -out pass.key 1024
openssl rsa -in pass.key -out server.key
openssl req -new -x509 -days 365 -sha1 -newkey rsa:1024 -nodes -keyout server.key -out server.crt

Then copy the server.key and server.crt to your webservers config directory.
cp server.key /etc/httpd/conf/ssl.key/
cp server.crt /etc/httpd/conf/ssl.crt/

Change file access permissions
chmod go-rwx /etc/httpd/conf/ssl.key/server.key

Made a test cert
make testcert

Create a server.pem file as by concatenating the server.key file and the server.crt file as follows:
cat /etc/httpd/conf/ssl.key/server.key /etc/httpd/conf/ssl.crt/server.crt > /etc/httpd/conf/server.pem

restart your webserver.

Your self signed certificate should now invoke the identity selector without any issues...

NOTE : Remember folks. If youre learning anything at all from all of us who are blogging our experiences and processes about getitng infocard to work in all these various platforms and scenarios to PLEASE "pay it forward".

PLEASE UPDATE YOUR BOOKMARKS TO :

Comments:

Post a Comment:

Comments are closed for this entry.
Copyright (C) , my.info.card