about summary refs log tree commit diff
path: root/app/validators/ed25519_key_validator.rb
blob: adf49296b2fb510823cead44f215e2a5ac887c6c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

class Ed25519KeyValidator < ActiveModel::EachValidator
  def validate_each(record, attribute, value)
    return if value.blank?

    key = Base64.decode64(value)

    record.errors.add(attribute, I18n.t('crypto.errors.invalid_key')) unless verified?(key)
  end

  private

  def verified?(key)
    Ed25519.validate_key_bytes(key)
  rescue ArgumentError
    false
  end
end