Licensing fix in util/sha256.c

This commit is contained in:
David Galos 2013-07-20 13:23:13 -04:00
parent 4da54928e7
commit 50d9305752
1 changed files with 1 additions and 11 deletions

View File

@ -1,12 +1,4 @@
/*
* public domain sha256 crypt implementation
*
* original sha crypt design: http://people.redhat.com/drepper/SHA-crypt.txt
* in this implementation at least 32bit int is assumed,
* key length is limited, the $5$ prefix is mandatory, '\n' and ':' is rejected
* in the salt and rounds= setting must contain a valid iteration count,
* on error "*" is returned.
*/
/* public domain sha256 implementation based on fips180-3 */
#include <ctype.h>
#include <stdlib.h>
#include <stdio.h>
@ -14,8 +6,6 @@
#include <stdint.h>
#include "../sha256.h"
/* public domain sha256 implementation based on fips180-3 */
static uint32_t ror(uint32_t n, int k) { return (n >> k) | (n << (32-k)); }
#define Ch(x,y,z) (z ^ (x & (y ^ z)))
#define Maj(x,y,z) ((x & y) | (z & (x | y)))