X-Git-Url: https://bearssl.org/gitweb//home/git/?p=BearSSL;a=blobdiff_plain;f=tools%2Fnames.c;h=958e593365334119acd4d78bdbaf791fa576c09b;hp=753a7366ba98c37cc2f13e838af259a42bcadb2c;hb=5db2d48b128326704cd33aff56c8b46e463f3bf6;hpb=5f045c759957fdff8c85716e6af99e10901fdac0 diff --git a/tools/names.c b/tools/names.c index 753a736..958e593 100644 --- a/tools/names.c +++ b/tools/names.c @@ -406,6 +406,12 @@ static const struct { const char *short_name; const void *(*get)(void); } algo_names_dyn[] = { + { "aes_pwr8_cbcenc", "pwr8", + (const void *(*)(void))&br_aes_pwr8_cbcenc_get_vtable }, + { "aes_pwr8_cbcdec", "pwr8", + (const void *(*)(void))&br_aes_pwr8_cbcdec_get_vtable }, + { "aes_pwr8_ctr", "pwr8", + (const void *(*)(void))&br_aes_pwr8_ctr_get_vtable }, { "aes_x86ni_cbcenc", "x86ni", (const void *(*)(void))&br_aes_x86ni_cbcenc_get_vtable }, { "aes_x86ni_cbcdec", "x86ni", @@ -414,6 +420,10 @@ static const struct { (const void *(*)(void))&br_aes_x86ni_ctr_get_vtable }, { "ghash_pclmul", "pclmul", (const void *(*)(void))&br_ghash_pclmul_get }, + { "ghash_pwr8", "pwr8", + (const void *(*)(void))&br_ghash_pwr8_get }, + { "poly1305_ctmulq", "ctmulq", + (const void *(*)(void))&br_poly1305_ctmulq_get }, { 0, 0, 0, } };