Riva supports the following two primary authentication modes available to Domino:
Notice! It is always highly recommended that all communication be HTTPS (SSL) encrypted. This will ensure that when credentials are exchanged between Riva and Domino, passwords are always encrypted.
Below is an excerpt from the Domino Administrator guide, http://publib.boulder.ibm.com/infocenter/domhelp/v8r0/topic/com.ibm.help.domino.admin85.doc/H_SSL_AND_BASIC_PASSWORD_AUTHENTICATION_8792_OVERVIEW.html
Name-and-password authentication, also known as basic password authentication, uses a basic challenge/response protocol to ask users for their names and passwords and then verifies the accuracy of the passwords by checking them against a secure hash of the password stored in Person documents in the IBM® Lotus® Domino(TM) Directory.
Name-and-password authentication, also known as basic password authentication, uses a basic challenge/response protocol to ask users for their names and passwords and then verifies the accuracy of the passwords by checking them against a secure hash of the password stored in Person documents in the IBM® Lotus® Domino(TM) Directory.
Standard HTTP Authentication
A common internet standard is HTTP authentication.
With Domino, this authentication method requires that every request including subsequent requests include the complete HTTP authentication header. This header includes the username and password.
Advantages:
- Not affected by session timeouts.
- No need for applications to keep session states.
- Low server memory consumption.
- Easily scales for distributed load.
Disadvantage:
- For every request, the credentials are included in the HTTP headers.
Session-Based Forms Authentication
This is a common authentication process. Users are prompted with a web-based form for their credentials when they first access a password-protected section of the site.
With Domino, this authentication method requires that session-based form authentication be enabled.
Advantages:
- The credentials are exchanged once at the beginning of the session.
- The session can be used until an inactivity timeout or session reset.
- Used to enable single sign-on or enable gated authentication.
Disadvantages:
- Applications must store and manage session states, including re-authentication.
- Higher server memory usage, because the session state must be maintained.
- Session timeout requires applications to re-authenticate after timeout.
- More complicated scaling to distribute loads in a multi-server environment.
- Uses HTTP cookies to maintain sessions that must be kept by the application.