Browsing projects by Tag(s)

Select a tag to browse associated projects and drill deeper into the tag cloud.

Showing page 18 of 20

Clamshell is a simple OpenID server that allows the management of multiple OpenID identities from a single web page.

0
 
  0 reviews  |  0 users  |  0 current contributors  |  Analyzed 5 days ago
  openid
 
 

This is a framework, written in C# language and oriented to Mono and .NET developers, providing several utilities and a straight-fowrward architecture, yet fast and reliable, to interact with the OpenID authentication platform. The OpenID authentication is used by several websites and applications ... [More] to validate a federated system of authentication, which permits to reach the goal of "One Identity", preventing the need for users to register several identities around websites on the world. This project belongs to the open source program of Deveel Labs: we believe that the knowledge must be shared and the opportunities to be equal for all. Deveel Labs (http://www.deveel.com) develops several research and commercial projects, for which it integrates external in-house developed project, which we decided to release to the community. Other projects of the program are the following: Deveel Facebook Framework (http://code.google.com/p/deveel-facebook/) [Less]

0
 
  0 reviews  |  0 users  |  5,251 lines of code  |  0 current contributors  |  Analyzed 2 days ago
 
 

Provides a simple framework for developing both local and delegated authentication mechanisms in Wicket applications. Local authentication makes use of system-local services to authentication a user (and so takes a username and password), where as delegated authentication uses a third party for ... [More] authenticating a user (and so only takes a user identifier). [Less]

0
 
  0 reviews  |  0 users  |  412 lines of code  |  0 current contributors  |  Analyzed 8 days ago
 
 

The openid-fu provides you features of authentication with OpenID.

0
 
  0 reviews  |  0 users  |  7,843 lines of code  |  0 current contributors  |  Analyzed about 14 hours ago
 
 

An OpenID library, written in PHP, for allowing and managing OpenID authentication for a web-based application.

0
 
  0 reviews  |  0 users  |  0 current contributors  |  Analyzed 5 days ago
 
 

This project is concerning with the creation of an extension to openID protocol in order to provide secure and strong authentication using smart cards.

0
 
  0 reviews  |  0 users  |  3,296 lines of code  |  0 current contributors  |  Analyzed 6 days ago
 
 

This plugin enables OpenID authentication for the WSGI authentication middleware repoze.who.

0
 
  0 reviews  |  0 users  |  0 current contributors  |  Analyzed 2 days ago
 
 

Whobar is a technology developed by Sxip Identity that makes it easy for users to register and login to a website using their choice of emerging identity protocols such as InfoCard, i-names, and OpenID. It’s available as an open source module for developers to easily add support of the emerging ... [More] Identity 2.0 technologies to their site. The benefits of this for users is a common website login experience and for web developers, to streamline their user registration and login process with Identity 2.0 technologies, while maintaining support for their existing user accounts. [Less]

0
 
  0 reviews  |  0 users  |  72,435 lines of code  |  0 current contributors  |  Analyzed 3 days ago
 
 

java REST framework servlet-based (Java REST Annotations impl), openid 2.0 relying party, oauth 1.0a consumer and service provider, json-ioc OpenID RelyingPartyJava implementation for openid 2.0 and is backwards compatible for 1.x Simple, lightweight and provides a clean api. See the Quick ... [More] Start Guide, openid wiki, source and a demo source. Available extensions: http://openid.net/specs/openid-attribute-exchange-1_0-05.html - See OpenIdAttributeExchange http://openid.net/specs/openid-simple-registration-extension-1_1-01.html - See OpenIdSimpleRegistration http://wiki.openid.net/f/openid_ui_extension_draft01.html - UI extension. See OpenidLoginWithoutLeavingPage http://step2.googlecode.com/svn/spec/openid_oauth_extension/latest/openid_oauth_extension.html - See Hybrid OpenID+OAuth Supports login without leaving page using ajax/popup. See it live. Easy deployment to google appengine(java) with default configuration. See http://dyuproject.appspot.com Add true to your appengine-web.xml if using the default OpenIdUserManager. Only 3 jars needed: 1. jetty-util-6.1.19.jar - 170kb 2. dyuproject-util-1.1.6.jar - 53kb 3. dyuproject-openid-1.1.6.jar - 61kb or you can use this all-in-one jar 178kb Upgrade to dyuproject-1.1.6 is highly recommended. This release is much more stable and contains security fixesOAuth Consumer & Service ProviderJava implementation for the latest oauth spec 1.0a - http://oauth.googlecode.com/svn/spec/core/1.0a/drafts/3/oauth-core-1_0a.html The 1.0 spec was found to have a security issue - http://blog.oauth.net/2009/04/22/acknowledgement-of-the-oauth-security-issue/ See the OAuthConsumer wiki and OAuthServiceProvider wiki. The signatures HMAC-SHA1 and PLAINTEXT can be used. RSA-SHA1 (asymmetric) is currently not implemented. It is a lot more cpu-intensive compared to HMAC-SHA1 (symmetric) Plays well with google appengine OAuth demo is live at http://dyuproject.appspot.com Only 3 jars needed: 1. jetty-util-6.1.19.jar - 170kb 2. dyuproject-util-1.1.6.jar - 53kb 3. dyuproject-oauth-1.1.6.jar - 45kb or you can use this all-in-one jar 155kb JSON IOCSmall, lightweight and fast inversion-of-control/dependency-injection alternative using json See the wiki. Plays well with google appengine Only 3 jars needed: 1. jetty-util-6.1.19.jar - 170kb 2. dyuproject-json-1.1.6.jar - 13kb 3. dyuproject-ioc-1.1.6.jar - 26kb ApplicationContext ac = ApplicationContext.load("classpath:com/acme/helloworld/application.json"); Foo foo = (Foo)ac.findPojo("foo"); System.err.println(foo.getMessage()); // Hello World Bar bar = (Bar)ac.findPojo("bar"); System.err.println(bar.getFooList().get(0) == foo); // true System.err.println(bar.getFooList().get(1).getMessage()); // foo!application.json { "message": "Hello World", "foo": { "class": "com.acme.helloworld.Foo", "message": $message }, "bar": { "class": "com.acme.helloworld.Bar", "fooList": [ $foo, { "class": "com.acme.helloworld.Foo", "message": "foo!" } ] } }Lightweight servlet-based REST frameworkImplementation for Java REST Annotations. See the sample HelloWorldService. Plays well with google appengine Browse the rest wiki, source, simple demo source and todo-list demo source. Live demo is at http://dyuproject.appspot.com/ Advantages:1. Simple (conforms to REST) 2. Write once (webapp and webservice in one) 3. Easy to learn (entirely based on Servlets ... near zero learning curve) 4. Naturally scalable (stateless, cookie-based session implementation similar to edge rails) HelloWorldService.java public class HelloWorldService extends AbstractService { @HttpResource(location="/") @Get public void root(RequestContext rc) throws IOException, ServletException { rc.getResponse().setContentType("text/html"); getWebContext().getJSPDispatcher().dispatch("index.jsp", rc.getRequest(), rc.getResponse()); } @HttpResource(location="/helloworld/$") @Get public void helloworldEntity(RequestContext rc) throws IOException, ServletException { rc.getRequest().setAttribute("message", "get entity: " + rc.getPathElement(1)); rc.getRequest().setAttribute("timestamp", new Date()); rc.getResponse().setContentType("text/html"); getWebContext().getJSPDispatcher().dispatch("helloworld/index.jsp", rc.getRequest(), rc.getResponse()); } @HttpResource(location="/helloworld") @Get public void helloworld(RequestContext rc) throws IOException, ServletException { rc.getRequest().setAttribute("message", "Hello world!"); rc.getRequest().setAttribute("timestamp", new Date()); rc.getResponse().setContentType("text/html"); getWebContext().getJSPDispatcher().dispatch("helloworld/index.jsp", rc.getRequest(), rc.getResponse()); } @HttpResource(location="/helloworld") @Post public void helloworldPost(RequestContext rc) throws IOException, ServletException { rc.getRequest().setAttribute("message", "This is a POST request"); rc.getRequest().setAttribute("timestamp", new Date()); rc.getResponse().setContentType("text/html"); getWebContext().getJSPDispatcher().dispatch("helloworld/index.jsp", rc.getRequest(), rc.getResponse()); } } The maven2 repository dyuproject-repo dyuproject-repo http://dyuproject.googlecode.com/svn/repos/maven2 image made with wordle [Less]

0
 
  0 reviews  |  0 users  |  29,382 lines of code  |  0 current contributors  |  Analyzed 2 days ago
 
 

Yet Another OpenID experiment

0
 
  0 reviews  |  0 users  |  4,881 lines of code  |  0 current contributors  |  Analyzed 6 days ago
  openid ror
 
 
 
 

Creative Commons License Copyright © 2013 Black Duck Software, Inc. and its contributors, Some Rights Reserved. Unless otherwise marked, this work is licensed under a Creative Commons Attribution 3.0 Unported License . Ohloh ® and the Ohloh logo are trademarks of Black Duck Software, Inc. in the United States and/or other jurisdictions. All other trademarks are the property of their respective holders.