diff options
Diffstat (limited to 'crypto/tcrypt.c')
-rw-r--r-- | crypto/tcrypt.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/crypto/tcrypt.c b/crypto/tcrypt.c index 2222617b3bed..7569ba9b6210 100644 --- a/crypto/tcrypt.c +++ b/crypto/tcrypt.c @@ -944,6 +944,10 @@ static int do_test(int m) ret += tcrypt_test("rfc4309(ccm(aes))"); break; + case 46: + ret += tcrypt_test("ofb(aes)"); + break; + case 100: ret += tcrypt_test("hmac(md5)"); break; @@ -984,6 +988,10 @@ static int do_test(int m) ret += tcrypt_test("vmac(aes)"); break; + case 110: + ret += tcrypt_test("cmac(aes)"); + break; + case 150: ret += tcrypt_test("ansi_cprng"); break; |