Re: [PATCH 1/3] add collision-detecting sha1 implementation

2017-02-23 Thread Jeff King
On Thu, Feb 23, 2017 at 04:12:01PM -0800, Linus Torvalds wrote: > On Thu, Feb 23, 2017 at 4:01 PM, Jeff King wrote: > > > > You know, I didn't even look at the LICENSE file, since it said MIT and > > had a link here. It would be trivial to copy it over, too, of course. > > You

Re: [PATCH 1/3] add collision-detecting sha1 implementation

2017-02-23 Thread Linus Torvalds
On Thu, Feb 23, 2017 at 4:01 PM, Jeff King wrote: > > You know, I didn't even look at the LICENSE file, since it said MIT and > had a link here. It would be trivial to copy it over, too, of course. You should do it. It's just good to be careful and clear with licenses, and the

Re: [PATCH 1/3] add collision-detecting sha1 implementation

2017-02-23 Thread Jeff King
On Thu, Feb 23, 2017 at 03:15:11PM -0800, Stefan Beller wrote: > On Thu, Feb 23, 2017 at 3:05 PM, Jeff King wrote: > > > +* Copyright 2017 Marc Stevens , Dan Shumow > > (dan...@microsoft.com) > > +* Distributed under the MIT Software License. > > +* See

Re: [PATCH 1/3] add collision-detecting sha1 implementation

2017-02-23 Thread Stefan Beller
On Thu, Feb 23, 2017 at 3:05 PM, Jeff King wrote: > +* Copyright 2017 Marc Stevens , Dan Shumow > (dan...@microsoft.com) > +* Distributed under the MIT Software License. > +* See accompanying file LICENSE.txt or copy at The accompanying LICENSE file did not

[PATCH 1/3] add collision-detecting sha1 implementation

2017-02-23 Thread Jeff King
This is pulled straight from: https://github.com/cr-marcstevens/sha1collisiondetection with no modifications yet (though I've pulled in only the subset of files necessary for Git to use). Signed-off-by: Jeff King --- sha1dc/sha1.c | 1146