~ubuntu-branches/ubuntu/utopic/lasso/utopic-proposed

« back to all changes in this revision

Viewing changes to docs/lasso-book/lasso-architecture.rst

  • Committer: Bazaar Package Importer
  • Author(s): Frederic Peters
  • Date: 2004-09-13 09:26:34 UTC
  • Revision ID: james.westby@ubuntu.com-20040913092634-01vdfl8j9cp94exa
Tags: upstream-0.4.1
ImportĀ upstreamĀ versionĀ 0.4.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
======================
 
2
The Lasso Architecture
 
3
======================
 
4
 
 
5
Doesn't store, doesn't communicate.
 
6
 
 
7
Modeled on liberty profiles; one profile = one class
 
8
 
 
9
Objet oriented but in C.  Talks about how this work (necessary to know for the
 
10
lasso_profile functions)
 
11
 
 
12
------
 
13
 
 
14
Lasso provides the necessary functions to implement Liberty Alliance profiles,
 
15
as defined in the `Liberty ID-FF Bindings and Profiles Specification`_ and
 
16
explained in the previous chapter.  Each profile maps to a Lasso class:
 
17
 
 
18
=====================================    =============================
 
19
Single Sign-On and Federation            LassoLogin
 
20
Name Registration                        LassoRegisterNameIdentifier
 
21
Federation Termination Notification      LassoFederationTermination
 
22
Single Logout                            LassoLogout
 
23
Name Identifier Mapping                  LassoNameIdentifierMapping
 
24
Identity Provider Introduction           *not implemented*
 
25
Name Identifier Encryption               *not implemented*
 
26
=====================================    =============================
 
27
 
 
28
 
 
29
There are also a few other classes to know about:
 
30
 
 
31
- LassoServer holds the data about a provider, which other providers it knows,
 
32
  what certificates to use, etc.
 
33
 
 
34
- LassoIdentity holds the data about a Liberty federated identity
 
35
- LassoSession holds the data about an active Liberty session.
 
36
 
 
37
- LassoProfile is the base class for profiles.
 
38
 
 
39
 
 
40
Talk more about respective usage of Identity and Session.
 
41
 
 
42
 
 
43
.. _Liberty ID-FF Bindings and Profiles Specification:
 
44
   http://www.projectliberty.org/specs/draft-liberty-idff-bindings-profiles-1.2-errata-v1.0.pdf
 
45