Re: AES-GCM Part 1: AES-GCM implementation

2010-08-20 Thread Mike Belopuhov
On Fri, Aug 20, 2010 at 20:58 +0200, Mike Belopuhov wrote: > - requires input data to be continuous, i.e.: > given block C of 16 bytes which is a concatenation of blocks > A an B (C = A || B): GMAC(C) =/= GMAC(B, GMAC(A, Z)), where > GMAC(X, Y) denotes GMAC application to the block

pckbc_isa.c cleanup

2010-08-20 Thread Alexandr Shadchin
Hi! nothing major, just some fluff here and there. -- Alexandr Shadchin Index: pckbc_isa.c === RCS file: /cvs/src/sys/dev/isa/pckbc_isa.c,v retrieving revision 1.7 diff -u -p -r1.7 pckbc_isa.c --- pckbc_isa.c 22 Jul 2010 14:27:46 -0

Re: Add timeout_add_abstv(9)

2010-08-20 Thread Bret S. Lambert
Replied to quickly just now and missed the following... > >From an abstraction point of view, I don't think it makes sense for so > much code to needlessly know about "ticks". Yes, thus the conversions to actual time values. And, again, a mention that a discussion needs to be had concerning issue

Re: Add timeout_add_abstv(9)

2010-08-20 Thread Bret S. Lambert
On Fri, Aug 20, 2010 at 12:27:39PM -0700, Matthew Dempsky wrote: > On Fri, Aug 20, 2010 at 11:47 AM, Bret S. Lambert > wrote: > > And this one, like that one, lacks context. > > The hzto/tvtohz diff was just a const correctness fix. I didn't think > it needed more context on its own. > > > What

Re: Add timeout_add_abstv(9)

2010-08-20 Thread Matthew Dempsky
On Fri, Aug 20, 2010 at 11:19 AM, Ted Unangst wrote: > I think the addition of the function and the usage should be presented > and done in separate parts. I made sure to arrange the diff that way at least: the first four files add the function definition, prototype, and man page bits; the rest a

Re: cwm: Don't warp to ignored windows on mapping

2010-08-20 Thread Thomas Pfaff
On Mon, 09 Aug 2010 22:53:30 +0200 Christian Neukirchen wrote: > > cwm currently warps to all newly mapped windows. I think it would be > nice to not warp to windows marked as "ignore" in .cwmrc, so popping > windows you are not interested in don't disturb you. > Works fine for me. While I do

Re: Add timeout_add_abstv(9)

2010-08-20 Thread Matthew Dempsky
On Fri, Aug 20, 2010 at 11:47 AM, Bret S. Lambert wrote: > And this one, like that one, lacks context. The hzto/tvtohz diff was just a const correctness fix. I didn't think it needed more context on its own. > What's the ultimate goal? Just to remove some calls to hzto? timeout(9) suggests avo

AES-GCM Part 1: AES-GCM implementation

2010-08-20 Thread Mike Belopuhov
Hi, This is a first diff of a series that brings support for the Galois/Counter Mode for AES in OpenBSD. Intro = For those unfamiliar with GCM, I'm going to quote Wikipedia[1]: GCM mode (Galois/Counter Mode) is a mode of operation for symmetri key cryptographic block ciphers. It is an a

Re: Add timeout_add_abstv(9)

2010-08-20 Thread Bret S. Lambert
On Fri, Aug 20, 2010 at 05:09:07AM -0700, Matthew Dempsky wrote: > This diff adds timeout_add_abstv(9), which adds a timeout scheduled at > an absolute time in the future, and changes several obvious call sites > accordingly. Also, it fixes the timeout(9) prototypes for the other > timeout_*() fun

Re: Kill struct dkdriver, redux

2010-08-20 Thread Kenneth R Westerback
On Fri, Aug 20, 2010 at 09:53:15AM -0700, Matthew Dempsky wrote: > The diff below gets rid of the useless "struct dkdriver" field and its > many "notyet" fields. > > I sent this diff out shortly before the release and got one or two > oks, but didn't want to conflict with some of the changes jsing

Re: Add timeout_add_abstv(9)

2010-08-20 Thread Ted Unangst
On Fri, Aug 20, 2010 at 8:09 AM, Matthew Dempsky wrote: > This diff adds timeout_add_abstv(9), which adds a timeout scheduled at > an absolute time in the future, and changes several obvious call sites > accordingly. Also, it fixes the timeout(9) prototypes for the other > timeout_*() functions t

Kill struct dkdriver, redux

2010-08-20 Thread Matthew Dempsky
The diff below gets rid of the useless "struct dkdriver" field and its many "notyet" fields. I sent this diff out shortly before the release and got one or two oks, but didn't want to conflict with some of the changes jsing@'s working on. He says those changes will take a bit longer still and sho

Re: RFC: changes to ports infrastructure

2010-08-20 Thread Marc Espie
Okay, I've started moving a lot of things. I've moved aggressively stuff that is "internal" to the ports tree (all the scripts used by bsd.port.mk) and dpb3 (renamed to dpb, as I hope to finally deprecate the other dpb). I'm probably going to document this part, and then do a second pass for the

Imobiliária do Futuro: Navegue no imóvel com o Virtual Tour

2010-08-20 Thread Union Especialista em Imobiliárias
Caso nco visualize esse email adequadamente VIEW_LINK http://union.entregadordenoticias.net/ver_mensagem.php?id=H|414|49367|128225304587225000acesse este link[/VIEW_LINK] Se vocj nco deseja mais receber nossos e-mails, cancele sua inscrigco atravis do link http://union.entregadordenoticias.net/adm

August 2010: LimeWire Media for Better Life

2010-08-20 Thread LimeWire Media
Valued customers, It is our great honor to announce new release of LimeWire Media, the world best media sharing software. LimeWire is not just a software, it is an entertainment community where you are almost guaranteed to get any media you like. Latest features include: - Connections to mor

Re: History for bc(1)

2010-08-20 Thread Christiano F. Haesbaert
On 20 August 2010 03:48, Matthieu Herrb wrote: > On Fri, Aug 13, 2010 at 02:30:50PM +0200, Otto Moerbeek wrote: >> On Fri, Aug 13, 2010 at 01:26:37PM +0200, Gabriel Linder wrote: >> >> > This diff implements history for bc(1) using editline(3). >> > >> > History is not persistent, I can add this f

Add timeout_add_abstv(9)

2010-08-20 Thread Matthew Dempsky
This diff adds timeout_add_abstv(9), which adds a timeout scheduled at an absolute time in the future, and changes several obvious call sites accordingly. Also, it fixes the timeout(9) prototypes for the other timeout_*() functions to correctly reflect that they take a const pointer. ok? (Note:

Make hzto(9) and tvtohz(9) timeval parameter const

2010-08-20 Thread Matthew Dempsky
hzto(9) and tvtohz(9) will never need to modify their timeval argument, so diff below changes them to take a const pointer instead. ok? Index: share/man/man9/hzto.9 === RCS file: /cvs/src/share/man/man9/hzto.9,v retrieving revision 1

Make UFS DIP macros FFS2-option aware

2010-08-20 Thread Matthew Dempsky
The diff below changes the UFS DIP macros to only check for UFS1 vs UFS2 when the FFS2 compile option is actually enabled. There's no binary change when FFS2 is enabled, and it shrinks a non-FFS2 amd64 kernel by about 8KB and still works with my FFS1 filesystem. ok? Index: inode.h ==