OpenBSD5.2 のインストーラーがすげえ便利になってる!!!

GentooがOpenBSD3.2 時代くらいのややこしさだったから
かなり感動ですね。

GentooGrubの設定の仕方がさいごの方にwebに書いて有ってちよっとめんどうだった...w*1


ユーザーワールドをtar.ball にしてるのは好き。

...というかなんでみんなOpenBSD使わないの?わけがわからない!!

なにがしたいのかは md5.c ほしかつただけ...

cd /usr/
cvs -qd  anoncvs@anoncvs.jp.openbsd.org:/cvs  get -rOPENBSD_5_2 -P src

cd src
# fgrep -Rn MD5Init .| grep void
./bin/md5/md5.c:131:            (void (*)(void *))MD5Init,
./gnu/usr.bin/cvs/lib/md5.h:19:void cvs_MD5Init PROTO ((struct cvs_MD5Context *context));
./include/md5.h:31:void  MD5Init(MD5_CTX *);
./lib/libsqlite3/src/tclsqlite.c:3288:static void MD5Init(MD5Context *ctx){
./sbin/isakmpd/hash.c:61:       (void (*)(void *))MD5Init,
./sys/arch/sparc64/stand/ofwboot/md5.h:46:void  MD5Init(MD5_CTX *);
./sys/crypto/md5.h:30:void       MD5Init(MD5_CTX *);
./sys/crypto/xform.c:238:       (void (*) (void *)) MD5Init, NULL, NULL,
./sys/crypto/xform.c:316:       (void (*)(void *)) MD5Init, NULL, NULL,
./sys/crypto/xform.c:332:       (void (*) (void *)) MD5Init, NULL, NULL,
./usr.sbin/httpd/src/include/ap_md5.h:83:API_EXPORT(void) ap_MD5Init(AP_MD5_CTX *context);

./lib/libsqlite3/src/tclsqlite.c ってSQLiteの TCLの中かいなww

http://www.openbsd.org/cgi-bin/cvsweb/src/lib/libsqlite3/src/tclsqlite.c

#if defined(SQLITE_TEST) || defined(SQLITE_TCLMD5)
/*
 * This code implements the MD5 message-digest algorithm.
 * The algorithm is due to Ron Rivest.  This code was
 * written by Colin Plumb in 1993, no copyright is claimed.
 * This code is in the public domain; do with it what you wish.
 *
 * Equivalent code is available from RSA Data Security, Inc.
 * This code has been tested against that, and is equivalent,
 * except that you don't need to include two pages of legalese
 * with every copy.
 *
 * To compute the message digest of a chunk of bytes, declare an
 * MD5Context structure, pass it to MD5Init, call MD5Update as
 * needed on buffers full of bytes, and then call MD5Final, which
 * will fill a supplied 16-byte array with the digest.
 */

また相変わらずカンジワルイ事書いて有るなwww
打倒、「正しくないライセンス」っていう体制は大好きですwww
この体制のおかげでGPL排除できてる

*1:Linux嫌いな身としてはなるべく嵌る時間を最小限にしたい