Sha256: 69ca13a0b77cccdd549a07e00fa13c8bcd9c81bac79dc7526a5473a41cd4a779

Contents?: true

Size: 229 Bytes

Versions: 9

Compression:

Stored size: 229 Bytes

Contents

class Net::SMTP
  class AuthLogin < Net::SMTP::Authenticator
    auth_type :login

    def auth(user, secret)
      continue('AUTH LOGIN')
      continue(base64_encode(user))
      finish(base64_encode(secret))
    end
  end
end

Version data entries

9 entries across 9 versions & 5 rubygems

Version Path
minato_ruby_api_client-0.2.2 vendor/bundle/ruby/3.2.0/gems/net-smtp-0.5.0/lib/net/smtp/auth_login.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/net-smtp-0.5.0/lib/net/smtp/auth_login.rb
cm-admin-1.5.22 vendor/bundle/ruby/3.3.0/gems/net-smtp-0.5.0/lib/net/smtp/auth_login.rb
cm-admin-1.5.21 vendor/bundle/ruby/3.3.0/gems/net-smtp-0.5.0/lib/net/smtp/auth_login.rb
cm-admin-1.5.20 vendor/bundle/ruby/3.3.0/gems/net-smtp-0.5.0/lib/net/smtp/auth_login.rb
tinymce-rails-7.1.2 vendor/bundle/ruby/3.3.0/gems/net-smtp-0.5.0/lib/net/smtp/auth_login.rb
net-smtp-0.5.0 lib/net/smtp/auth_login.rb
net-smtp-0.4.0.1 lib/net/smtp/auth_login.rb
net-smtp-0.4.0 lib/net/smtp/auth_login.rb