<feed xmlns='http://www.w3.org/2005/Atom'>
<title>user/sven/linux-bitkeeper.git/crypto/md5.c, branch master</title>
<subtitle>Linux Kernel BitKeeper History</subtitle>
<id>https://git.stealer.net/cgit.cgi/user/sven/linux-bitkeeper.git/atom?h=master</id>
<link rel='self' href='https://git.stealer.net/cgit.cgi/user/sven/linux-bitkeeper.git/atom?h=master'/>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux-bitkeeper.git/'/>
<updated>2003-05-15T10:09:53Z</updated>
<entry>
<title>[CRYPTO]: Fix memcpy/memset args.</title>
<updated>2003-05-15T10:09:53Z</updated>
<author>
<name>Andrew Morton</name>
<email>akpm@digeo.com</email>
</author>
<published>2003-05-15T10:09:53Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux-bitkeeper.git/commit/?id=25f5d74c00973b61fc1b93365e0daee6a587d0e0'/>
<id>urn:sha1:25f5d74c00973b61fc1b93365e0daee6a587d0e0</id>
<content type='text'>
</content>
</entry>
<entry>
<title>[CRYPTO]: Uninline some functions to save some bloat.</title>
<updated>2002-10-30T06:59:18Z</updated>
<author>
<name>James Morris</name>
<email>jmorris@intercode.com.au</email>
</author>
<published>2002-10-30T06:59:18Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux-bitkeeper.git/commit/?id=3c498e87e4b3a9297080eb724b6bc5d73f23dcc8'/>
<id>urn:sha1:3c498e87e4b3a9297080eb724b6bc5d73f23dcc8</id>
<content type='text'>
</content>
</entry>
<entry>
<title>[CRYPTO]: Cleanups based upon suggestions by Jeff Garzik.</title>
<updated>2002-10-30T06:45:00Z</updated>
<author>
<name>James Morris</name>
<email>jmorris@intercode.com.au</email>
</author>
<published>2002-10-30T06:45:00Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux-bitkeeper.git/commit/?id=b56bc16aa33f97a846bccc295e0189ca55cb5b43'/>
<id>urn:sha1:b56bc16aa33f97a846bccc295e0189ca55cb5b43</id>
<content type='text'>
- Changed unsigned to unsigned int in algos.
- Consistent use of u32 for flags throughout api.
- Use of unsigned int rather than int for counting things which must
be positive, also replaced size_ts to keep code simpler and lessen
bloat on some archs.
- got rid of some unneeded returns.
- const correctness.
</content>
</entry>
<entry>
<title>[CRYPTO]: Cleanups and more consistency checks.</title>
<updated>2002-10-28T10:36:29Z</updated>
<author>
<name>James Morris</name>
<email>jmorris@intercode.com.au</email>
</author>
<published>2002-10-28T10:36:29Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux-bitkeeper.git/commit/?id=03882e044f1bbf3603a856652100652aeabe465a'/>
<id>urn:sha1:03882e044f1bbf3603a856652100652aeabe465a</id>
<content type='text'>
- Removed local_bh_disable() from kmap wrapper, not needed now with
two atomic kmaps.
- Nuked atomic flag, use in_softirq() instead.
- Converted crypto_kmap() and crypto_yield() to check in_softirq().
- Check CRYPTO_MAX_CIPHER_BLOCK_SIZE during alg init.
- Try to initialize as much at compile time as possible
(feedback from Christoph Hellwig).
- Clean up list handling a bit (feedback from Christoph Hellwig).
</content>
</entry>
<entry>
<title>[CRYPTO]: Algorithm lookup API change plus bug fixes.</title>
<updated>2002-10-27T19:04:35Z</updated>
<author>
<name>James Morris</name>
<email>jmorris@intercode.com.au</email>
</author>
<published>2002-10-27T19:04:35Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux-bitkeeper.git/commit/?id=612893c0b9f117b1961cb4312126a635f4c96b72'/>
<id>urn:sha1:612893c0b9f117b1961cb4312126a635f4c96b72</id>
<content type='text'>
- API change: implemented simplest version of algorithm lookup
by name (feedback from Rusty Russell and Herbert Valerio Riedel).
- Now need to add the following line to to /etc/modules.conf for
dynamic module loading:
    alias des3_ede des
</content>
</entry>
<entry>
<title>[CRYPTO]: Add MD4.</title>
<updated>2002-10-26T19:41:27Z</updated>
<author>
<name>James Morris</name>
<email>jmorris@intercode.com.au</email>
</author>
<published>2002-10-26T19:41:27Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux-bitkeeper.git/commit/?id=dd26a14cffaec35475ec730c49a5dd5e059bcfb3'/>
<id>urn:sha1:dd26a14cffaec35475ec730c49a5dd5e059bcfb3</id>
<content type='text'>
</content>
</entry>
<entry>
<title>[CRYPTO]: Use try_inc_mod_count and semaphore for alg list.</title>
<updated>2002-10-24T17:51:06Z</updated>
<author>
<name>James Morris</name>
<email>jmorris@intercode.com.au</email>
</author>
<published>2002-10-24T17:51:06Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux-bitkeeper.git/commit/?id=cd74bb134f87eb043425494861bec1afe98015e8'/>
<id>urn:sha1:cd74bb134f87eb043425494861bec1afe98015e8</id>
<content type='text'>
</content>
</entry>
<entry>
<title>[CRYPTO]: Cleanups based upon feedback from Rusty and jgarzik</title>
<updated>2002-10-24T17:47:26Z</updated>
<author>
<name>James Morris</name>
<email>jmorris@intercode.com.au</email>
</author>
<published>2002-10-24T17:47:26Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux-bitkeeper.git/commit/?id=49d21b00c304a11b7231210701179bf8eb49a9cd'/>
<id>urn:sha1:49d21b00c304a11b7231210701179bf8eb49a9cd</id>
<content type='text'>
- s/__u/u/
- s/char/u8/
- Fixed bug in cipher.c, page remapped was off by one block
</content>
</entry>
<entry>
<title>[CRYPTO]: Fix compiler warnings and build failures.</title>
<updated>2002-10-23T23:14:12Z</updated>
<author>
<name>David S. Miller</name>
<email>davem@nuts.ninka.net</email>
</author>
<published>2002-10-23T23:14:12Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux-bitkeeper.git/commit/?id=c7f36a27cc1c4bca94596145c9ed68fd8c49861e'/>
<id>urn:sha1:c7f36a27cc1c4bca94596145c9ed68fd8c49861e</id>
<content type='text'>
- Add missing includes of asm/byteorder.h
- Fix sha1.c compiler crash with egcs-2.92.x
- Use correct printf format for size_t types.
</content>
</entry>
<entry>
<title>[CRYPTO]: Add initial crypto api subsystem.</title>
<updated>2002-10-23T21:00:40Z</updated>
<author>
<name>James Morris</name>
<email>jmorris@intercode.com.au</email>
</author>
<published>2002-10-23T21:00:40Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux-bitkeeper.git/commit/?id=b99b66de129f360653bd8f37af0f16e37009899e'/>
<id>urn:sha1:b99b66de129f360653bd8f37af0f16e37009899e</id>
<content type='text'>
</content>
</entry>
</feed>
