Two factor authentication extension for Devise
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
module TwoFactorAuthentication
|
|
|
|
module Schema
|
|
|
|
def second_factor_attempts_count
|
|
|
|
apply_devise_schema :second_factor_attempts_count, Integer, :default => 0
|
|
|
|
end
|
|
|
|
|
|
|
|
def encrypted_otp_secret_key
|
|
|
|
apply_devise_schema :encrypted_otp_secret_key, String
|
|
|
|
end
|
|
|
|
|
|
|
|
def encrypted_otp_secret_key_iv
|
|
|
|
apply_devise_schema :encrypted_otp_secret_key_iv, String
|
|
|
|
end
|
|
|
|
|
|
|
|
def encrypted_otp_secret_key_salt
|
|
|
|
apply_devise_schema :encrypted_otp_secret_key_salt, String
|
|
|
|
end
|
|
|
|
|
|
|
|
def direct_otp
|
|
|
|
apply_devise_schema :direct_otp, String
|
|
|
|
end
|
|
|
|
|
|
|
|
def direct_otp_sent_at
|
|
|
|
apply_devise_schema :direct_otp_sent_at, DateTime
|
|
|
|
end
|
|
|
|
|
|
|
|
def totp_timestamp
|
|
|
|
apply_devise_schema :totp_timestamp, Timestamp
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|