authlete 1.0.5 → 1.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a19c57de187aa058751c1c88c0e22d3dd976d247
4
- data.tar.gz: 05621d552b6b0474603d4f8db89ecf166dd9288a
3
+ metadata.gz: d0635facb4ac433823a07f6e74d6a5c498500e40
4
+ data.tar.gz: ffa62d8e9eac757626dd6cfd611cc0732f1729a3
5
5
  SHA512:
6
- metadata.gz: a68d0b3a5a68678bfb4c918020bd848a212d2269959997e2ccdb09485b649df1fd882b871c7a9bd9d7f86fcd153f2a79262e0c1752d9e62a0380fefd31567907
7
- data.tar.gz: 49e09fc2d8f9ef1ca84ec67271ffb045cab4a0de3f2a96e9f3577d5249e2dc5a2eea9ce46513d5330d39faed586b4b5cc85776d8c97aafdd0aabb6c1882d7dea
6
+ metadata.gz: 436bcb5ff851beb2a835fa2dd690f21e5a6d607d3bb52d7712b85821a372d6eec3003704aa3073592ef560068f86e7cc43312b5690125ada518bda98b02e0a04
7
+ data.tar.gz: d1c7682653e7f57c821c5596819cc255fb8ee014c12640a72d12e67aca11082cd6c9217ae659fd425bb47312033e715f92f3e71af8f7e4aab395923ee56e9538
@@ -357,10 +357,24 @@ module Authlete
357
357
  alias_method :user_info_signature_key_id=, :userInfoSignatureKeyId=
358
358
 
359
359
  # The flag that indicates whether the service offers sender authenticated MTLS bound
360
- # access tokens.
360
+ # access tokens. (Boolean)
361
361
  attr_accessor :mutualTlsSenderConstrainedAccessTokens
362
362
  alias_method :mutual_tls_sender_constrained_access_tokens, :mutualTlsSenderConstrainedAccessTokens
363
363
  alias_method :mutual_tls_sender_constrained_access_tokens=, :mutualTlsSenderConstrainedAccessTokens=
364
+
365
+ # The flag that indicates whether the service will validate the PKI certificate chain
366
+ # for MTLS based authentication. (Boolean)
367
+ attr_accessor :mutualTlsValidatePkiCertChain
368
+ alias_method :mutual_tls_validate_pki_cert_chain, :mutualTlsValidatePkiCertChain
369
+ alias_method :mutual_tls_validate_pki_cert_chain=, :mutualTlsValidatePkiCertChain=
370
+
371
+
372
+ # The list of trusted root certificates, used when the service validates client
373
+ # certificate paths. (String array)
374
+ attr_accessor :trustedRootCertificates
375
+ alias_method :trusted_root_certificates, :trustedRootCertificates
376
+ alias_method :trusted_root_certificates=, :trustedRootCertificates=
377
+
364
378
 
365
379
  private
366
380
 
@@ -377,7 +391,7 @@ module Authlete
377
391
  :directRevocationEndpointEnabled, :directTokenEndpointEnabled,
378
392
  :directUserInfoEndpointEnabled, :errorDescriptionOmitted, :errorUriOmitted,
379
393
  :pkceRequired, :refreshTokenKept, :singleAccessTokenPerSubject,
380
- :mutualTlsSenderConstrainedAccessTokens
394
+ :mutualTlsSenderConstrainedAccessTokens, :mutualTlsValidatePkiCertChain
381
395
  ])
382
396
 
383
397
  # String attributes.
@@ -396,7 +410,8 @@ module Authlete
396
410
  :supportedAcrs, :supportedClaimLocales, :supportedClaims,
397
411
  :supportedClaimTypes, :supportedDeveloperSnses, :supportedDisplays,
398
412
  :supportedGrantTypes, :supportedResponseTypes, :supportedServiceProfiles,
399
- :supportedSnses, :supportedTokenAuthMethods, :supportedUiLocales
413
+ :supportedSnses, :supportedTokenAuthMethods, :supportedUiLocales,
414
+ :trustedRootCertificates
400
415
  ])
401
416
 
402
417
  # SNS credentials array attributes.
@@ -461,7 +476,9 @@ module Authlete
461
476
  :tos_uri => :tosUri,
462
477
  :user_info_endpoint => :userInfoEndpoint,
463
478
  :user_info_signature_key_id => :userInfoSignatureKeyId,
464
- :mutual_tls_sender_constrained_access_tokens => :mutualTlsSenderConstrainedAccessTokens
479
+ :mutual_tls_sender_constrained_access_tokens => :mutualTlsSenderConstrainedAccessTokens,
480
+ :mutual_tls_validate_pki_cert_chain => :mutualTlsValidatePkiCertChain,
481
+ :trusted_root_certificates => :trustedRootCertificates
465
482
  }
466
483
 
467
484
  # The constructor
@@ -16,5 +16,5 @@
16
16
 
17
17
 
18
18
  module Authlete
19
- VERSION = "1.0.5"
20
- end
19
+ VERSION = "1.0.6"
20
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: authlete
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.5
4
+ version: 1.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Takahiko Kawasaki
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-03-13 00:00:00.000000000 Z
11
+ date: 2018-04-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rest-client