All of lore.kernel.org
 help / color / mirror / Atom feed
* [dm-crypt] AFSplitter in Ruby
@ 2014-11-24 12:56 John Lane
  2014-11-24 15:10 ` Arno Wagner
  0 siblings, 1 reply; 4+ messages in thread
From: John Lane @ 2014-11-24 12:56 UTC (permalink / raw)
  To: dm-crypt

Hi, I've been learning with interest how LUKS works.

To help me understand, I built a little Ruby tool to dump a LUKS header
and master password. That required an AFsplitter, so I wrote my own in
Ruby and packaged it as a Ruby Gem. I also used a FFI to bind with the
library at http://clemens.endorphin.org/AFsplitter.

I thought I'd share what I did in case anyone else is interested.
https://rubygems.org/gems/afsplitter

All the best,
John

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [dm-crypt] AFSplitter in Ruby
  2014-11-24 12:56 [dm-crypt] AFSplitter in Ruby John Lane
@ 2014-11-24 15:10 ` Arno Wagner
  2014-11-24 16:15   ` John Lane
  0 siblings, 1 reply; 4+ messages in thread
From: Arno Wagner @ 2014-11-24 15:10 UTC (permalink / raw)
  To: dm-crypt

Hi John,

nice! Can I put the link into the referecnes section of the FAQ?

Gr"usse,
Arno


On Mon, Nov 24, 2014 at 13:56:10 CET, John Lane wrote:
> Hi, I've been learning with interest how LUKS works.
> 
> To help me understand, I built a little Ruby tool to dump a LUKS header
> and master password. That required an AFsplitter, so I wrote my own in
> Ruby and packaged it as a Ruby Gem. I also used a FFI to bind with the
> library at http://clemens.endorphin.org/AFsplitter.
> 
> I thought I'd share what I did in case anyone else is interested.
> https://rubygems.org/gems/afsplitter
> 
> All the best,
> John
> 
> 
> _______________________________________________
> dm-crypt mailing list
> dm-crypt@saout.de
> http://www.saout.de/mailman/listinfo/dm-crypt

-- 
Arno Wagner,     Dr. sc. techn., Dipl. Inform.,    Email: arno@wagner.name
GnuPG: ID: CB5D9718  FP: 12D6 C03B 1B30 33BB 13CF  B774 E35C 5FA1 CB5D 9718
----
A good decision is based on knowledge and not on numbers. -- Plato

If it's in the news, don't worry about it.  The very definition of 
"news" is "something that hardly ever happens." -- Bruce Schneier

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [dm-crypt] AFSplitter in Ruby
  2014-11-24 15:10 ` Arno Wagner
@ 2014-11-24 16:15   ` John Lane
  2014-11-24 16:59     ` Arno Wagner
  0 siblings, 1 reply; 4+ messages in thread
From: John Lane @ 2014-11-24 16:15 UTC (permalink / raw)
  To: dm-crypt

Hi Arno, yes of course, that's a good idea.

On 24/11/14 15:10, Arno Wagner wrote:
> Hi John,
>
> nice! Can I put the link into the referecnes section of the FAQ?
>
> Gr"usse,
> Arno
>
>
> On Mon, Nov 24, 2014 at 13:56:10 CET, John Lane wrote:
>> Hi, I've been learning with interest how LUKS works.
>>
>> To help me understand, I built a little Ruby tool to dump a LUKS header
>> and master password. That required an AFsplitter, so I wrote my own in
>> Ruby and packaged it as a Ruby Gem. I also used a FFI to bind with the
>> library at http://clemens.endorphin.org/AFsplitter.
>>
>> I thought I'd share what I did in case anyone else is interested.
>> https://rubygems.org/gems/afsplitter
>>
>> All the best,
>> John
>>
>>
>> _______________________________________________
>> dm-crypt mailing list
>> dm-crypt@saout.de
>> http://www.saout.de/mailman/listinfo/dm-crypt

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [dm-crypt] AFSplitter in Ruby
  2014-11-24 16:15   ` John Lane
@ 2014-11-24 16:59     ` Arno Wagner
  0 siblings, 0 replies; 4+ messages in thread
From: Arno Wagner @ 2014-11-24 16:59 UTC (permalink / raw)
  To: dm-crypt

Thanks, done.

Arno

On Mon, Nov 24, 2014 at 17:15:58 CET, John Lane wrote:
> Hi Arno, yes of course, that's a good idea.
> 
> On 24/11/14 15:10, Arno Wagner wrote:
> > Hi John,
> >
> > nice! Can I put the link into the referecnes section of the FAQ?
> >
> > Gr"usse,
> > Arno
> >
> >
> > On Mon, Nov 24, 2014 at 13:56:10 CET, John Lane wrote:
> >> Hi, I've been learning with interest how LUKS works.
> >>
> >> To help me understand, I built a little Ruby tool to dump a LUKS header
> >> and master password. That required an AFsplitter, so I wrote my own in
> >> Ruby and packaged it as a Ruby Gem. I also used a FFI to bind with the
> >> library at http://clemens.endorphin.org/AFsplitter.
> >>
> >> I thought I'd share what I did in case anyone else is interested.
> >> https://rubygems.org/gems/afsplitter
> >>
> >> All the best,
> >> John
> >>
> >>
> >> _______________________________________________
> >> dm-crypt mailing list
> >> dm-crypt@saout.de
> >> http://www.saout.de/mailman/listinfo/dm-crypt
> 
> _______________________________________________
> dm-crypt mailing list
> dm-crypt@saout.de
> http://www.saout.de/mailman/listinfo/dm-crypt

-- 
Arno Wagner,     Dr. sc. techn., Dipl. Inform.,    Email: arno@wagner.name
GnuPG: ID: CB5D9718  FP: 12D6 C03B 1B30 33BB 13CF  B774 E35C 5FA1 CB5D 9718
----
A good decision is based on knowledge and not on numbers. -- Plato

If it's in the news, don't worry about it.  The very definition of 
"news" is "something that hardly ever happens." -- Bruce Schneier

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2014-11-24 16:59 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-11-24 12:56 [dm-crypt] AFSplitter in Ruby John Lane
2014-11-24 15:10 ` Arno Wagner
2014-11-24 16:15   ` John Lane
2014-11-24 16:59     ` Arno Wagner

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.