Welcome to mirror list, hosted at ThFree Co, Russian Federation.

crypto_helpers.rb « helpers « support « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0b2d5f6386aece29bc620d52b82574f3970d3ab7 (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

module CryptoHelpers
  def sha256(value)
    Gitlab::CryptoHelper.sha256(value)
  end
end