This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2020-06-02 19:24:53 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Ed25519KeyValidator < ActiveModel::EachValidator
|
|
|
|
def validate_each(record, attribute, value)
|
|
|
|
return if value.blank?
|
|
|
|
|
|
|
|
key = Base64.decode64(value)
|
|
|
|
|
2023-03-04 17:00:00 +01:00
|
|
|
record.errors.add(attribute, I18n.t('crypto.errors.invalid_key')) unless verified?(key)
|
2020-06-02 19:24:53 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def verified?(key)
|
|
|
|
Ed25519.validate_key_bytes(key)
|
|
|
|
rescue ArgumentError
|
|
|
|
false
|
|
|
|
end
|
|
|
|
end
|