diff --git a/[refs] b/[refs] index 9acc0dd62b4e..c2124d99f982 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: d8a32ac25698cd60b02bed2100379803c7f964e3 +refs/heads/master: 54216bbd76aa394c93a9e92c0a2e3b314391b134 diff --git a/trunk/crypto/tcrypt.c b/trunk/crypto/tcrypt.c index 1ac77b720b2d..e87fa60f5831 100644 --- a/trunk/crypto/tcrypt.c +++ b/trunk/crypto/tcrypt.c @@ -1112,6 +1112,9 @@ static int do_test(int m) case 32: ret += tcrypt_test("ecb(camellia)"); ret += tcrypt_test("cbc(camellia)"); + ret += tcrypt_test("ctr(camellia)"); + ret += tcrypt_test("lrw(camellia)"); + ret += tcrypt_test("xts(camellia)"); break; case 33: ret += tcrypt_test("sha224"); @@ -1165,6 +1168,10 @@ static int do_test(int m) ret += tcrypt_test("rfc4309(ccm(aes))"); break; + case 46: + ret += tcrypt_test("ghash"); + break; + case 100: ret += tcrypt_test("hmac(md5)"); break;