gitlab-ce/spec/support/helpers/crypto_helpers.rb

8 lines
121 B
Ruby

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