NetQuarry.Security Namespace |
Class | Description | |
---|---|---|
AuthenticationException |
Thrown when a credential validation fails during IAuthenticationProvider.Authenticate.
Note that this exception is typically attached as ThrownException
and available there during the ApplicationAuthenticationFailed event.
| |
DatabaseAuthenticationProvider |
Implements IAuthenticationProvider using a database-stored userID/password for authentication.
| |
DefaultPermissions |
Holds the bitmask of permissions for a profile
| |
GenericAuthenticationProvider |
Base class for implementing an IAuthenticationProvider user-authentication provider.
When used as the authentication provider itself (rather than as a base class for the authentication
provider), always authenticates the user regardless of password.
To use, derive from this class and override the OnAuthenticate(String, String, NameValueCollection, Int64) method.
| |
Hash |
Helper function for generating a one-way hash from a string.
Examples string sensitiveData = "123456789"; mapper.Fields["external_id"].Value = NetQuarry.Security.Hash.ToSHA256(sensitiveData, "1PUnrmSiicHQLl+S3nOaWnivmjk="); | |
PasswordHash |
Generates a one-way hashed value using Rfc2898DeriveBytes and 10,000 iterations (slow, in hashing terms)
Every hash is unique. To use, you have to compare the value of the stored hash with plain text.
This example is taken in part from: http://csharptest.net/470/another-example-of-how-to-store-a-salted-password-hash/
string hashedValue = PasswordHash.HashPassword("mysecretpassword"); bool match = PasswordHash.ValidatePassword("mysecretpassword", hashedValue); | |
ProfileInfo |
Defines a user profile
| |
ProfileInfos |
A collection of ProfileInfo objects
| |
RandomPassword |
This class can generate random passwords, which do not include ambiguous
characters, such as I, l, and 1. The generated password will be made of
7-bit ASCII symbols. Every four characters will include one lower case
character, one upper case character, one number, and one special symbol
(such as '%') in a random order. The password will always start with an
alpha-numeric character; it will not start with a special symbol (we do
this because some back-end systems do not like certain special
characters in the first position).
| |
TokenExpiredException |
Thrown when a user token has aged and cannot be restored from database
| |
UserContext |
After authentication, the UserContext object holds the current user identity and a collection of profiles.
| |
UserProfiles |
Simple string collection of user profile names.
| |
WindowsAuthenticationProvider |
WindowsAuthenticationProvider implements IAuthenticationProvider for ActiveDirectory and NTLM.
Not generally appropriate for use in SaaS and other applications with non-employee users.
|
Interface | Description | |
---|---|---|
IAuthenticationProvider |
NetQuarry supports application security using a powerful, replaceable set of authentication and
permission patterns. Depending on the needs of your application and the capabilities of your enterprise
infrastructure, NetQuarry can support several different methods of user authentication.
Several standard authentication provider are available:
|
Enumeration | Description | |
---|---|---|
AuthenticationFailureType |
The known types of login authentication failures, used in FailureType.
| |
CredentialsCacheOption |
Option for handling of caching user credentials during login
| |
EncryptionAlgorithm |
The platform-provided encryption/hash algorithms appropriate for password storage.
A one-way has is more secure in protecting raw password values, but prevents decryption by the system.
The inability to decrypt is a key part of the security of a one-way hash, but does prohibit certain
useful actions such as re-encrypting a password without the user providing it or decrypting the password
for other use. For example, a one-way has would not be appropriate for storing a password required to
be passed to an external system via an API integration.
| |
ProfileAttrs |
Attributes for a user profile
| |
SecurityAttributes |
Attributes that control basic security behavior for the default database provider.
| |
UserAttrs |
Attributes that apply to a user that is loaded from the default database provider.
|
Authentication Providers (IAuthenticationProvider)
An authentication provider implements the IAuthenticationProvider interface and handles the Authenticate method. NetQuarry ships with three providers, a Generic provider, a Windows based provider (for Active Directory or NTLM authentication), and a database provider.
Roles and Profiles
After authentication, the platform asks the authentication provider for a list of directory (ADS, NTLM, Database) roles for which the user is a member. These directory roles are mapped to runtime “profiles” which assign all runtime objects permissions. By default, an object is available to all users. The mapping of directory roles to profiles is done using the NetQuarry studio. At runtime, the platform calls IAppContext.HasPermission to determine if an object is available to the current user.
Permissions
Most objects use the NetQuarry.Security.ObjectPermissions enumeration to specify security for that object. The NetQuarry.Security.ObjectPermissions enumeration is a superset of all possible system permissions (and is extensible). All attributes of the enumeration don’t apply to every object. For example, NavigationTargets only support the “Read” permission bit.
Policies
For permissions that cannot be expressed as NetQuarry.Security.ObjectPermissions bits, you can define a custom “policy.” A policy is simply a named permission that is granted to a set of profiles. This is a powerful and handy method for building an application with specific permissions for your users. For example, one could define a policy that grants a set of profiles the right to mass email to the contents of a list of data. Then, before adding the custom MapperCommand that supported this functionality, the developer would ask the application if the current user had permission to the policy.
UserContext
After authentication, the UserContext object holds the current user identity and a collection of profiles. A UserContext object can re-create itself from a token securely. The IAppContext object holds the current UserContext.