[SCM] libav/experimental: Update DES test code to use the new public API.

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 16:36:49 UTC 2013


The following commit has been merged in the experimental branch:
commit 61eb8cc420e5270346c10408dcdbe3318c5b1584
Author: Reimar Döffinger <Reimar.Doeffinger at gmx.de>
Date:   Tue Feb 3 17:03:49 2009 +0000

    Update DES test code to use the new public API.
    
    Originally committed as revision 16972 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/libavutil/des.c b/libavutil/des.c
index 5551073..94b66d7 100644
--- a/libavutil/des.c
+++ b/libavutil/des.c
@@ -345,28 +345,45 @@ static uint64_t rand64(void) {
     return r;
 }
 
+static const uint8_t test_key[] = {0x12, 0x34, 0x56, 0x78, 0x9a, 0xbc, 0xde, 0xf0};
+static const DECLARE_ALIGNED(8, uint8_t, plain[]) = {0xfe, 0xdc, 0xba, 0x98, 0x76, 0x54, 0x32, 0x10};
+static const DECLARE_ALIGNED(8, uint8_t, crypt[]) = {0x4a, 0xb6, 0x5b, 0x3d, 0x4b, 0x06, 0x15, 0x18};
+static DECLARE_ALIGNED(8, uint8_t, tmp[8]);
+
 int main(void) {
+    AVDES d;
     int i;
 #ifdef GENTABLES
     int j;
 #endif
     struct timeval tv;
-    uint64_t key;
+    uint64_t key[3];
     uint64_t data;
     uint64_t ct;
     gettimeofday(&tv, NULL);
     srand(tv.tv_sec * 1000 * 1000 + tv.tv_usec);
-    key = 0x123456789abcdef0ULL;
-    data = 0xfedcba9876543210ULL;
-    if (ff_des_encdec(data, key, 0) != 0x4ab65b3d4b061518ULL) {
+#if LIBAVUTIL_VERSION_MAJOR < 50
+    key[0] = AV_RB64(test_key);
+    data = AV_RB64(plain);
+    if (ff_des_encdec(data, key[0], 0) != AV_RB64(crypt)) {
         printf("Test 1 failed\n");
         return 1;
     }
+#endif
+    av_des_init(&d, test_key, 64, 0);
+    av_des_crypt(&d, tmp, plain, 1, NULL, 0);
+    if (memcmp(tmp, crypt, sizeof(crypt))) {
+        printf("Public API decryption failed\n");
+        return 1;
+    }
     for (i = 0; i < 1000000; i++) {
-        key = rand64();
+        key[0] = rand64(); key[1] = rand64(); key[2] = rand64();
         data = rand64();
-        ct = ff_des_encdec(data, key, 0);
-        if (ff_des_encdec(ct, key, 1) != data) {
+        av_des_init(&d, key, 192, 0);
+        av_des_crypt(&d, &ct, &data, 1, NULL, 0);
+        av_des_init(&d, key, 192, 1);
+        av_des_crypt(&d, &ct, &ct, 1, NULL, 1);
+        if (ct != data) {
             printf("Test 2 failed\n");
             return 1;
         }

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list