From: Michael Vogt <michael.vogt@ubuntu.com>
Date: Mon, 24 Jul 2006 21:37:09 +0000 (+0200)
Subject: test/hash.cc:
X-Git-Tag: 0.7.21~313^2
X-Git-Url: https://git.saurik.com/apt.git/commitdiff_plain/fab58e35bd7ea1825d522dc1467dff66bc974b74?hp=--cc

test/hash.cc:
- added sha256 test
---

fab58e35bd7ea1825d522dc1467dff66bc974b74
diff --git a/test/hash.cc b/test/hash.cc
index 5334c0331..cfdb4ea9d 100644
--- a/test/hash.cc
+++ b/test/hash.cc
@@ -1,5 +1,6 @@
 #include <apt-pkg/md5.h>
 #include <apt-pkg/sha1.h>
+#include <apt-pkg/sha256.h>
 #include <apt-pkg/strutl.h>
 #include <iostream>
 
@@ -57,6 +58,12 @@ int main()
 		      "d174ab98d277d9f5a5611c2c9f419d9f");
    Test<MD5Summation>("12345678901234567890123456789012345678901234567890123456789012345678901234567890",
 		      "57edf4a22be3c955ac49da2e2107b67a");
+
+   // SHA-256, From FIPS 180-2
+   Test<SHA256Summation>("abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq", 
+			 "248d6a61d20638b8e5c026930c3e6039a33ce45964ff2167f6ecedd419db06c1");
+   
+
    return 0; 
 }