使用 C# 生成不记名令牌

Generate bearer token using c#

我有一个网络应用程序。我的要求是我需要在每次登录时生成 oauth2 承载令牌。目前我们使用的是thinktecture来生成token,但是这个过程每次生成token需要将近7秒。有什么方法可以在不使用 thinktecture 的情况下生成令牌吗?

我关注了下面的文章http://bitoftech.net/2014/06/01/token-based-authentication-asp-net-web-api-2-owin-asp-net-identity/

下载了他们的源代码并检查了它。他们有关于如何创建令牌的很好的例子。

如果您使用 Individual User Accounts 创建了一个新的 ASP.NET Web Application -> Web API。看看 App_Start -> Startup.Auth.cs.

它应该包含这样的内容:

PublicClientId = "self";
OAuthOptions = new OAuthAuthorizationServerOptions
{
    TokenEndpointPath = new PathString("/Token"),
    Provider = new ApplicationOAuthProvider(PublicClientId),
    AuthorizeEndpointPath = new PathString("/api/Account/ExternalLogin"),
    AccessTokenExpireTimeSpan = TimeSpan.FromDays(14),
    // In production mode set AllowInsecureHttp = false
    AllowInsecureHttp = true
};

// Enable the application to use bearer tokens to authenticate users
app.UseOAuthBearerTokens(OAuthOptions);

这意味着您可以发送访问令牌请求,示例请求:

然后您可以验证访问令牌是否有效:

使用此令牌,您现在可以访问用户有权访问的所有受保护资源。

Asp.net 默认实现将在您的授权服务器中使用 DPAPI,因此它将使用存储在 machine.config 文件中的 machineKey 节点中的“validationKey”值颁发访问令牌并保护它。当您将访问令牌发送到您的资源服务器时,同样的情况也适用,它将使用相同的 machineKey 来解密访问令牌并从中提取身份验证票证。

ASP.NET

如果你想生成一个 JWT 编码的 Bearer Token,你应该覆盖 ISecureDataFormat<AuthenticationTicket>.Protect() 方法:

CustomJwtFormat.cs

    string symmetricKeyAsBase64 = audience.Base64Secret;
    var keyByteArray = TextEncodings.Base64Url.Decode(symmetricKeyAsBase64);
    var signingKey = new HmacSigningCredentials(keyByteArray);
    var issued = data.Properties.IssuedUtc;             var expires = data.Properties.ExpiresUtc;
    JwtSecurityToken token = new JwtSecurityToken(_issuer, audienceId, data.Identity.Claims, issued.Value.UtcDateTime,expires.Value.UtcDateTime, signingKey);
    var handler = new JwtSecurityTokenHandler();
    //serialize the JSON Web Token to a string
    var jwt = handler.WriteToken(token);
    return jwt;

将您的自定义 JWT 格式化程序添加到 OAuth 选项

  OAuthAuthorizationServerOptions OAuthServerOptions = new 
  OAuthAuthorizationServerOptions()
        {
            //For Dev enviroment only (on production should be AllowInsecureHttp = false)
            AllowInsecureHttp = true,
            TokenEndpointPath = new PathString("/oauth/token"),
            AccessTokenExpireTimeSpan = TimeSpan.FromMinutes(30),
            AccessTokenFormat = new CustomJwtFormat("http://localhost:5001")
        };

        //  Generation and validation
        app.UseOAuthBearerTokens(OAuthServerOptions);

app.UseOAuthBearerTokens 帮助程序方法创建令牌服务器和中间件来验证同一应用程序中请求的令牌。

如果这是一个授权服务器(生成令牌),你应该在最后一行使用app.UseOAuthAuthorizationServer(OAuthServerOptions)

ASP.NET核心

不幸的是,ASP.NET 团队决定不将 OAuthAuthorizationServerMiddleware 移植到 asp.net 核心:https://github.com/aspnet/Security/issues/83

ASP.NET 核心的社区提供的开源身份验证选项:

AspNet.Security.OpenIdConnect.Server:用于 ASP.NET Core 和 OWIN/Katana.[=17= 的低级协议优先 OpenID Connect 服务器框架]

IdentityServer:ASP.NET Core 的 OpenID Connect 和 OAuth 2.0 框架,由 OpenID 基金会正式认证并在 .NET 基金会的管理下。

OpenIddict:用于 ASP.NET Core 的易于使用的 OpenID Connect 服务器。