diff options
| author | Xin LI <delphij@FreeBSD.org> | 2013-07-09 22:04:35 +0000 |
|---|---|---|
| committer | Xin LI <delphij@FreeBSD.org> | 2013-07-09 22:04:35 +0000 |
| commit | 76a207c2b95aa787dfd5635a55b4a869b02f9b9b (patch) | |
| tree | 4b4229ab83c0e8b69f1c1ac474e343eccc71c440 /sys/crypto | |
| parent | 4f8a4fa5f9dd14d550f7840c23844eaf17e28540 (diff) | |
Notes
Diffstat (limited to 'sys/crypto')
| -rw-r--r-- | sys/crypto/sha2/sha2.c | 6 | ||||
| -rw-r--r-- | sys/crypto/sha2/sha2.h | 3 |
2 files changed, 4 insertions, 5 deletions
diff --git a/sys/crypto/sha2/sha2.c b/sys/crypto/sha2/sha2.c index 1313db5c92a8..66ec6e9132c0 100644 --- a/sys/crypto/sha2/sha2.c +++ b/sys/crypto/sha2/sha2.c @@ -1,4 +1,4 @@ -/* $KAME: sha2.c,v 1.8 2001/11/08 01:07:52 itojun Exp $ */ +/* $KAME: sha2.c,v 1.11 2004/06/02 09:52:45 itojun Exp $ */ /* * sha2.c @@ -32,6 +32,7 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. + * */ #include <sys/cdefs.h> @@ -67,7 +68,7 @@ __FBSDID("$FreeBSD$"); * */ -#if defined(_KERNEL) && (defined(__bsdi__) || defined(__FreeBSD__)) +#if defined(_KERNEL) && defined(__FreeBSD__) #define assert(x) #else #include <assert.h> @@ -1051,4 +1052,3 @@ char* SHA384_Data(const sha2_byte* data, size_t len, char digest[SHA384_DIGEST_S SHA384_Update(&context, data, len); return SHA384_End(&context, digest); } - diff --git a/sys/crypto/sha2/sha2.h b/sys/crypto/sha2/sha2.h index 12da95c92bda..639d58ba69f4 100644 --- a/sys/crypto/sha2/sha2.h +++ b/sys/crypto/sha2/sha2.h @@ -1,5 +1,5 @@ /* $FreeBSD$ */ -/* $KAME: sha2.h,v 1.3 2001/03/12 08:27:48 itojun Exp $ */ +/* $KAME: sha2.h,v 1.5 2007/06/14 12:09:41 itojun Exp $ */ /* * sha2.h @@ -138,4 +138,3 @@ char* SHA512_Data(const u_int8_t*, size_t, char[SHA512_DIGEST_STRING_LENGTH]); #endif /* __cplusplus */ #endif /* __SHA2_H__ */ - |
