Class: Auth0::Keys::Client
- Inherits:
-
Object
- Object
- Auth0::Keys::Client
- Defined in:
- lib/auth0/keys/client.rb
Instance Method Summary collapse
- #custom_signing ⇒ Auth0::CustomSigning::Client
- #encryption ⇒ Auth0::Encryption::Client
- #initialize(client:) ⇒ void constructor
- #signing ⇒ Auth0::Signing::Client
Constructor Details
#initialize(client:) ⇒ void
9 10 11 |
# File 'lib/auth0/keys/client.rb', line 9 def initialize(client:) @client = client end |
Instance Method Details
#custom_signing ⇒ Auth0::CustomSigning::Client
14 15 16 |
# File 'lib/auth0/keys/client.rb', line 14 def custom_signing @custom_signing ||= Auth0::Keys::CustomSigning::Client.new(client: @client) end |
#encryption ⇒ Auth0::Encryption::Client
19 20 21 |
# File 'lib/auth0/keys/client.rb', line 19 def encryption @encryption ||= Auth0::Keys::Encryption::Client.new(client: @client) end |