Read more

Generate a strong secret from the shell

Henning Koch
September 30, 2010Software engineer at makandra GmbH

A good tool to generate strong passwords and secrets is "apg". You can get it with

sudo apt-get install apg
Illustration book lover

Growing Rails Applications in Practice

Check out our e-book. Learn to structure large Ruby on Rails codebases with the tools you already know and love.

  • Introduce design conventions for controllers and user-facing models
  • Create a system for growth
  • Build applications to last
Read more Show archive.org snapshot

To create a strong secret for sessions, hashed Paperclip paths, etc. say

apg -m128 -a1 -E\'\"

Arguments explained:

  • The -m parameter defines the secret length
  • -a1 makes apg choose from all 7-bit ASCII characters instead of just the alphabet
  • -E\'\" excludes quote characters so you can easily paste the secret into a Ruby string
Posted by Henning Koch to makandra dev (2010-09-30 14:28)