This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
require 'openssl' | |
puts "enter the password that you would like to hash:\n" | |
password = gets | |
password = password.chomp | |
salt = OpenSSL::Random.random_bytes(32) | |
iterations = 40_000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
resources: | |
containers: | |
- container: u14 | |
image: ubuntu:14.04 | |
- container: u16 | |
image: ubuntu:16.04 | |
- container: u18 | |
image: ubuntu:18.04 | |
jobs: |