summaryrefslogtreecommitdiff
path: root/sys/dev/microcode/siop/Makefile
diff options
context:
space:
mode:
authorginsbach <ginsbach@NetBSD.org>2005-05-12 21:10:49 +0000
committerginsbach <ginsbach@NetBSD.org>2005-05-12 21:10:49 +0000
commit22f8a99e929337fe53bb23927d342b208e7c0ce4 (patch)
tree71b42b807a1d2cde80f8cbed7f89becc223df71e /sys/dev/microcode/siop/Makefile
parent1a54f2152aa6e02a7eddad8d1b2eecd57673e83d (diff)
* Honor -net when using CIDR (net/mask) notation. This differs
from the default CIDR (host/mask) interpretation. As discussed on tech-net. * Use errx() in place of fprintf() and exit(). Make the error message formats consistent.
Diffstat (limited to 'sys/dev/microcode/siop/Makefile')
0 files changed, 0 insertions, 0 deletions
github.com/P-H-C/phc-winner-argon2 2013-08-10Silence -Wpointer-sign on crypt-sha1.c.dholland This requires casts, which is not entirely desirable; however, this way at least no *more* pointer sign issues can creep in. Output object files are unchanged on amd64. 2012-08-10crypt-sha1.c flags apply to all compilers in the tree, drop conditional.joerg 2012-03-21These directories default to WARNS?=5matt 2011-06-20remove most of the remaining HAVE_GCC tests that are always true inmrg the modern world. 2008-08-29Wrap compiler-specific flags with HAVE_GCC and HAVE_PCC as necessary. Add a ↵gmcgarry few flags for PCC. 2008-07-12Add test for HAVE_PCC with HAVE_GCC which turn off compiler warning flags.gmcgarry 2006-10-27gently add some "const", and avoid some castsdrochner compiles with WARNS=4 now (on i386 and alpha) 2006-10-27As discussed back in June, move the implementation of hmac_sha1 heredrochner because this is not a public function and crypt-sha1.c is the only place where it is used (It must have been that way formerly, because there was a stale prototype in crypt.h all the time.) Being here, do some RCSID and prototype cleanup, and add as much "const" as needed to compile these files with WARNS=3. 2006-05-11sprinkle some -fno-strict-aliasing and -Wno-pointer-sign with GCC4.mrg 2005-01-11Add pw_gensalt, which was taken from pwd_gensalt. This now is used in 3christos places, so it might as well be part of libcrypt. 2004-07-02Add support for SHA1 hashed passwords.sjg The algorithm used is essentially PBKDF1 from RFC 2898 but using hmac_sha1 rather than SHA1 directly (suggested by smb@research.att.com). * The format of the encrypted password is: * $<tag>$<iterations>$<salt>$<digest> * * where: * <tag> is "sha1" * <iterations> is an unsigned int identifying how many rounds * have been applied to <digest>. The number * should vary slightly for each password to make * it harder to generate a dictionary of * pre-computed hashes. See crypt_sha1_iterations. * <salt> up to 64 bytes of random data, 8 bytes is * currently considered more than enough. * <digest> the hashed password. hmac.c implementes HMAC as defined in RFC 2104 and includes a unit test for both hmac_sha1 and hmac_sha1 using a selection of the Known Answer Tests from RFC 2202. It is worth noting that to be FIPS compliant the hmac key (password) should be 10-20 chars. 2003-04-17hrink the Blowfish routines down to only what we need for __bcrypt(),thorpej and don't export any of the Blowfish functionality outside bcrypt.c. 2002-08-19Explicitly move setting of NOxxx and USE_SHLIBDIR to the top of thelukem Makefile (before including <bsd.own.mk>) 2002-05-24support bcrypt password. can be chosen by "blowfish" keyword in passwd.conf.itojun from openbsd