using secure memory from a script

2010-02-25 Thread Chad Perrin
What's the simplest/easiest way to use secure memory (i.e., memory that won't be written to a swap partition) from within a program (written in Ruby in this case) on FreeBSD? -- Chad Perrin [ original content licensed OWL: http://owl.apotheon.org ] pgphqNJQhPZ33.pgp Description: PGP signature

Re: using secure memory from a script

2010-02-25 Thread Chuck Swiger
On Feb 19, 2010, at 3:59 PM, Chad Perrin wrote: What's the simplest/easiest way to use secure memory (i.e., memory that won't be written to a swap partition) from within a program (written in Ruby in this case) on FreeBSD? Well, Ruby supports calling C functions, so you can invoke mlock() that

Re: using secure memory from a script

2010-02-25 Thread Chad Perrin
On Thu, Feb 25, 2010 at 04:22:29PM -0800, Chuck Swiger wrote: Well, Ruby supports calling C functions, so you can invoke mlock() that way: http://onlamp.com/pub/a/onlamp/2004/11/18/extending_ruby.html ...but you also have to do so as root. It might be more sane to setup encrypted