summaryrefslogtreecommitdiff
path: root/spec/factories/token_with_ivs.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/factories/token_with_ivs.rb')
-rw-r--r--spec/factories/token_with_ivs.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/spec/factories/token_with_ivs.rb b/spec/factories/token_with_ivs.rb
new file mode 100644
index 00000000000..68989f6c5bc
--- /dev/null
+++ b/spec/factories/token_with_ivs.rb
@@ -0,0 +1,9 @@
+# frozen_string_literal: true
+
+FactoryBot.define do
+ factory :token_with_iv do
+ hashed_token { ::Digest::SHA256.digest(SecureRandom.hex(50)) }
+ iv { ::Digest::SHA256.digest(SecureRandom.hex(50)) }
+ hashed_plaintext_token { ::Digest::SHA256.digest(SecureRandom.hex(50)) }
+ end
+end