web-dev-qa-db-ja.com

共有秘密の代わりに公開鍵/秘密鍵を使用するIdentityServerクライアント認証

IdentityServer4でクライアントシークレットに共有シークレットの代わりに公開キー/秘密キーを使用しようとしています。このアプローチは here で文書化されています。

共有シークレットの場合、リクエストにはsecretがプレーンテキストで含まれます。例えば.

curl -X POST \
  http://<identityserver>/connect/token \
  -F client_id=abc \
  -F client_secret=secret \
  -F grant_type=client_credentials \
  -F scope=api1 api2

私の質問は、公開鍵/秘密鍵認証方式でsecretとして何を渡すべきですか?

背景を説明するために、公開/鍵認証を使用するクライアントは、次の手順でIdentityServerに登録します。

  1. クライアントは.crtファイルを生成します。

    // create key
    $ openssl genrsa -des3 -passout pass:x -out client.pass.key 2048
    $ openssl rsa -passin pass:x -in client.pass.key -out client.key
    
    // create certificate request (csr)
    $ openssl req -new -key client.key -out client.csr
    
    // create certificate (crt)
    $ openssl x509 -req -sha256 -days 365 -in client.csr -signkey client.key -out client.crt
    
    // export pfx file from key and crt
    $ openssl pkcs12 -export -out client.pfx -inkey client.key -in client.crt
    
  2. クライアントはclient.crtファイルをIdentityServerと共有します

  3. IdentityServerはクライアントを登録します

    var client = new Client
    {
        ClientId = "abc",
        ClientSecrets =
        {
            new Secret
            {
                Type = IdentityServerConstants.SecretTypes.X509CertificateBase64,
                Value = "MIIDF...." <================= contents of the crt file
            }
        },
    
        AllowedGrantTypes = GrantTypes.ClientCredentials,
        AllowedScopes = { "api1", "api2" }
    };
    
11
ubi

IdentityServer4の単体テストのおかげでこれを理解しました!

パブリック/プライベート認証を使用する場合、client_secretは使用されません。むしろ、client_assertionが使用されます。これはJWTトークンです。

トークンリクエストのサンプルコードを次に示します。 client.pfxは、上記の手順で生成された証明書バンドルです。

var now = DateTime.UtcNow;
var clientId = "abc";
var tokenEndpoint = "http://localhost:5000/connect/token";

var cert = new X509Certificate2("client.pfx", "1234");

// create client_assertion JWT token
var token = new JwtSecurityToken(
    clientId,
    tokenEndpoint,
    new List<Claim>
    {
        new Claim("jti", Guid.NewGuid().ToString()),
        new Claim(JwtClaimTypes.Subject, clientId),
        new Claim(JwtClaimTypes.IssuedAt, now.ToEpochTime().ToString(), ClaimValueTypes.Integer64)
    },
    now,
    now.AddMinutes(1),
    new SigningCredentials(
        new X509SecurityKey(cert),
        SecurityAlgorithms.RsaSha256
    )
);

var tokenHandler = new JwtSecurityTokenHandler();
var tokenString = tokenHandler.WriteToken(token);


// token request - note there's no client_secret but a client_assertion which contains the token above
var requestBody = new FormUrlEncodedContent(new Dictionary<string, string>
{
    {"client_id", clientId},
    {"client_assertion_type", "urn:ietf:params:oauth:client-assertion-type:jwt-bearer"},
    {"client_assertion", tokenString},
    {"grant_type", "client_credentials"},
    {"scope", "api1 api2"}
});


var client = new HttpClient();
var response = await client.PostAsync(tokenEndpoint, requestBody);
var tokenRespone = new TokenResponse(await response.Content.ReadAsStringAsync());
8
ubi

署名されたJWTである必要があると思います。 IDS4コードベースのPrivateKeyJwtSecretValidatorクラスを確認してください。

https://github.com/IdentityServer/IdentityServer4/blob/2.1.3/src/IdentityServer4/Validation/PrivateKeyJwtSecretValidator.cs

3
mackie