Introduction to OIDC Server
Implemented StandardsTechnical Requirements
Abblix.Oidc.Server
Abblix.Oidc.Server.Features.RandomGeneratorsAuthorizationCodeGeneratorAuthorizationRequestUriGeneratorClientIdGeneratorClientSecretGeneratorGrantIdGeneratorIAuthorizationCodeGeneratorIAuthorizationRequestUriGeneratorIClientIdGeneratorIClientSecretGeneratorIGrantIdGeneratorISessionIdGeneratorITokenIdGeneratorSessionIdGeneratorTokenIdGenerator
IAuthorizationCodeGenerator Interface
Defines a contract for generating unique authorization codes for use in OAuth 2.0 authorization code flows. Implementations of this interface should ensure that the generated codes are cryptographically secure and suitable for one-time use in authenticating and authorizing access.
public interface IAuthorizationCodeGeneratorDerived
↳ AuthorizationCodeGenerator
Methods
IAuthorizationCodeGenerator.GenerateAuthorizationCode() Method
Generates a unique, cryptographically secure authorization code.
string GenerateAuthorizationCode();Returns
System.String
A string representing a unique authorization code.