add names to bcrypt-backed ciphers
diff --git a/lib/ptlsbcrypt.c b/lib/ptlsbcrypt.c
index 8f4561f..45f8803 100644
--- a/lib/ptlsbcrypt.c
+++ b/lib/ptlsbcrypt.c
@@ -802,10 +802,14 @@
 ptls_hash_algorithm_t ptls_bcrypt_sha384 = {PTLS_SHA384_BLOCK_SIZE, PTLS_SHA384_DIGEST_SIZE, ptls_bcrypt_sha384_create,
                                             PTLS_ZERO_DIGEST_SHA384};
 
-ptls_cipher_suite_t ptls_bcrypt_aes128gcmsha256 = {PTLS_CIPHER_SUITE_AES_128_GCM_SHA256, &ptls_bcrypt_aes128gcm,
-                                                   &ptls_bcrypt_sha256};
-ptls_cipher_suite_t ptls_bcrypt_aes256gcmsha384 = {PTLS_CIPHER_SUITE_AES_256_GCM_SHA384, &ptls_bcrypt_aes256gcm,
-                                                   &ptls_bcrypt_sha384};
+ptls_cipher_suite_t ptls_bcrypt_aes128gcmsha256 = {.id = PTLS_CIPHER_SUITE_AES_128_GCM_SHA256,
+                                                   .name = PTLS_CIPHER_SUITE_NAME_AES_128_GCM_SHA256,
+                                                   .aead = &ptls_bcrypt_aes128gcm,
+                                                   .hash = &ptls_bcrypt_sha256};
+ptls_cipher_suite_t ptls_bcrypt_aes256gcmsha384 = {.id = PTLS_CIPHER_SUITE_AES_256_GCM_SHA384,
+                                                   .name = PTLS_CIPHER_SUITE_NAME_AES_256_GCM_SHA384,
+                                                   .aead = &ptls_bcrypt_aes256gcm,
+                                                   .hash = &ptls_bcrypt_sha384};
 
 #ifdef PRLS_BCRYPT_TODO
 /* TODO: develp these bcrypt functions */