cdc6660
diff --git a/capinfos.c b/capinfos.c
cdc6660
index 3c7866befd..da576f88c5 100644
cdc6660
--- a/capinfos.c
cdc6660
+++ b/capinfos.c
cdc6660
@@ -141,7 +141,6 @@ static gboolean cap_file_hashes    = TRUE;  /* Calculate file hashes */
cdc6660
 
cdc6660
 // Strongest to weakest
cdc6660
 #define HASH_SIZE_SHA256 32
cdc6660
-#define HASH_SIZE_RMD160 20
cdc6660
 #define HASH_SIZE_SHA1   20
cdc6660
 
cdc6660
 #define HASH_STR_SIZE (65) /* Max hash size * 2 + '\0' */
cdc6660
@@ -743,7 +742,6 @@ print_stats(const gchar *filename, capture_info *cf_info)
cdc6660
     }
cdc6660
     if (cap_file_hashes) {
cdc6660
         printf     ("SHA256:              %s\n", file_sha256);
cdc6660
-        printf     ("RIPEMD160:           %s\n", file_rmd160);
cdc6660
         printf     ("SHA1:                %s\n", file_sha1);
cdc6660
     }
cdc6660
     if (cap_order)          printf     ("Strict time order:   %s\n", order_string(cf_info->order));
cdc6660
@@ -857,7 +855,6 @@ print_stats_table_header(void)
cdc6660
     if (cap_packet_rate)    print_stats_table_header_label("Average packet rate (packets/sec)");
cdc6660
     if (cap_file_hashes) {
cdc6660
         print_stats_table_header_label("SHA256");
cdc6660
-        print_stats_table_header_label("RIPEMD160");
cdc6660
         print_stats_table_header_label("SHA1");
cdc6660
     }
cdc6660
     if (cap_order)          print_stats_table_header_label("Strict time order");
cdc6660
@@ -1182,7 +1179,6 @@ calculate_hashes(const char *filename)
cdc6660
             }
cdc6660
             gcry_md_final(hd);
cdc6660
             hash_to_str(gcry_md_read(hd, GCRY_MD_SHA256), HASH_SIZE_SHA256, file_sha256);
cdc6660
-            hash_to_str(gcry_md_read(hd, GCRY_MD_RMD160), HASH_SIZE_RMD160, file_rmd160);
cdc6660
             hash_to_str(gcry_md_read(hd, GCRY_MD_SHA1), HASH_SIZE_SHA1, file_sha1);
cdc6660
         }
cdc6660
         if (fh) fclose(fh);
cdc6660
@@ -1489,7 +1485,7 @@ print_usage(FILE *output)
cdc6660
     fprintf(output, "  -E display the capture file encapsulation\n");
cdc6660
     fprintf(output, "  -I display the capture file interface information\n");
cdc6660
     fprintf(output, "  -F display additional capture file information\n");
cdc6660
-    fprintf(output, "  -H display the SHA256, RIPEMD160, and SHA1 hashes of the file\n");
cdc6660
+    fprintf(output, "  -H display the SHA256 and SHA1 hashes of the file\n");
cdc6660
     fprintf(output, "  -k display the capture comment\n");
cdc6660
     fprintf(output, "\n");
cdc6660
     fprintf(output, "Size infos:\n");
cdc6660
@@ -1842,10 +1838,9 @@ main(int argc, char *argv[])
cdc6660
     if (cap_file_hashes) {
cdc6660
         gcry_check_version(NULL);
cdc6660
         gcry_md_open(&hd, GCRY_MD_SHA256, 0);
cdc6660
-        if (hd) {
cdc6660
-            gcry_md_enable(hd, GCRY_MD_RMD160);
cdc6660
+        if (hd)
cdc6660
             gcry_md_enable(hd, GCRY_MD_SHA1);
cdc6660
-        }
cdc6660
+
cdc6660
         hash_buf = (char *)g_malloc(HASH_BUF_SIZE);
cdc6660
     }
cdc6660
 
cdc6660
diff --git a/doc/capinfos.adoc b/doc/capinfos.adoc
cdc6660
index 16ed2e300a..124fb56694 100644
cdc6660
--- a/doc/capinfos.adoc
cdc6660
+++ b/doc/capinfos.adoc
cdc6660
@@ -200,7 +200,7 @@ Prints the help listing and exits.
cdc6660
 -H::
cdc6660
 +
cdc6660
 --
cdc6660
-Displays the SHA256, RIPEMD160, and SHA1 hashes for the file.
cdc6660
+Displays the SHA256 and SHA1 hashes for the file.
cdc6660
 SHA1 output may be removed in the future.
cdc6660
 --
cdc6660
 
cdc6660
diff --git a/capinfos.c b/capinfos.c
cdc6660
index f0059f4e54..e153097219 100644
cdc6660
--- a/capinfos.c
cdc6660
+++ b/capinfos.c
cdc6660
@@ -148,7 +148,6 @@ static gboolean cap_file_hashes    = TRUE;  /* Calculate file hashes */
cdc6660
 
cdc6660
 
cdc6660
 static gchar file_sha256[HASH_STR_SIZE];
cdc6660
-static gchar file_rmd160[HASH_STR_SIZE];
cdc6660
 static gchar file_sha1[HASH_STR_SIZE];
cdc6660
 
cdc6660
 static char  *hash_buf = NULL;
cdc6660
@@ -1024,11 +1023,6 @@ print_stats_table(const gchar *filename, capture_info *cf_info)
cdc6660
         printf("%s", file_sha256);
cdc6660
         putquote();
cdc6660
 
cdc6660
-        putsep();
cdc6660
-        putquote();
cdc6660
-        printf("%s", file_rmd160);
cdc6660
-        putquote();
cdc6660
-
cdc6660
         putsep();
cdc6660
         putquote();
cdc6660
         printf("%s", file_sha1);
cdc6660
@@ -1168,7 +1162,6 @@ calculate_hashes(const char *filename)
cdc6660
     size_t hash_bytes;
cdc6660
 
cdc6660
     (void) g_strlcpy(file_sha256, "<unknown>", HASH_STR_SIZE);
cdc6660
-    (void) g_strlcpy(file_rmd160, "<unknown>", HASH_STR_SIZE);
cdc6660
     (void) g_strlcpy(file_sha1, "<unknown>", HASH_STR_SIZE);
cdc6660
 
cdc6660
     if (cap_file_hashes) {
cdc6660
diff --git a/ui/qt/capture_file_properties_dialog.cpp b/ui/qt/capture_file_properties_dialog.cpp
cdc6660
index 9e5b86a7fd..c77056818c 100644
cdc6660
--- a/ui/qt/capture_file_properties_dialog.cpp
cdc6660
+++ b/ui/qt/capture_file_properties_dialog.cpp
cdc6660
@@ -175,11 +175,6 @@ QString CaptureFilePropertiesDialog::summaryToHtml()
cdc6660
         << table_data_tmpl.arg(summary.file_sha256)
cdc6660
         << table_row_end;
cdc6660
 
cdc6660
-    out << table_row_begin
cdc6660
-        << table_vheader_tmpl.arg(tr("Hash (RIPEMD160)"))
cdc6660
-        << table_data_tmpl.arg(summary.file_rmd160)
cdc6660
-        << table_row_end;
cdc6660
-
cdc6660
     out << table_row_begin
cdc6660
         << table_vheader_tmpl.arg(tr("Hash (SHA1)"))
cdc6660
         << table_data_tmpl.arg(summary.file_sha1)
cdc6660
diff --git a/ui/summary.c b/ui/summary.c
cdc6660
index 127698fd5c..58c7cd68a4 100644
cdc6660
--- a/ui/summary.c
cdc6660
+++ b/ui/summary.c
cdc6660
@@ -21,7 +21,6 @@
cdc6660
 
cdc6660
 // Strongest to weakest
cdc6660
 #define HASH_SIZE_SHA256 32
cdc6660
-#define HASH_SIZE_RMD160 20
cdc6660
 #define HASH_SIZE_SHA1   20
cdc6660
 
cdc6660
 #define HASH_BUF_SIZE (1024 * 1024)
cdc6660
@@ -213,12 +212,10 @@ summary_fill_in(capture_file *cf, summary_tally *st)
cdc6660
     g_free(idb_info);
cdc6660
 
cdc6660
     (void) g_strlcpy(st->file_sha256, "<unknown>", HASH_STR_SIZE);
cdc6660
-    (void) g_strlcpy(st->file_rmd160, "<unknown>", HASH_STR_SIZE);
cdc6660
     (void) g_strlcpy(st->file_sha1, "<unknown>", HASH_STR_SIZE);
cdc6660
 
cdc6660
     gcry_md_open(&hd, GCRY_MD_SHA256, 0);
cdc6660
     if (hd) {
cdc6660
-        gcry_md_enable(hd, GCRY_MD_RMD160);
cdc6660
         gcry_md_enable(hd, GCRY_MD_SHA1);
cdc6660
     }
cdc6660
     hash_buf = (char *)g_malloc(HASH_BUF_SIZE);
cdc6660
@@ -230,7 +227,6 @@ summary_fill_in(capture_file *cf, summary_tally *st)
cdc6660
         }
cdc6660
         gcry_md_final(hd);
cdc6660
         hash_to_str(gcry_md_read(hd, GCRY_MD_SHA256), HASH_SIZE_SHA256, st->file_sha256);
cdc6660
-        hash_to_str(gcry_md_read(hd, GCRY_MD_RMD160), HASH_SIZE_RMD160, st->file_rmd160);
cdc6660
         hash_to_str(gcry_md_read(hd, GCRY_MD_SHA1), HASH_SIZE_SHA1, st->file_sha1);
cdc6660
     }
cdc6660
     if (fh) fclose(fh);
cdc6660
diff --git a/ui/summary.h b/ui/summary.h
cdc6660
index 9063b99b77..95a51a38c0 100644
cdc6660
--- a/ui/summary.h
cdc6660
+++ b/ui/summary.h
cdc6660
@@ -56,7 +56,6 @@ typedef struct _summary_tally {
cdc6660
     const char           *filename;           /**< path of capture file */
cdc6660
     gint64                file_length;        /**< file length in bytes */
cdc6660
     gchar                 file_sha256[HASH_STR_SIZE];  /**< SHA256 hash of capture file */
cdc6660
-    gchar                 file_rmd160[HASH_STR_SIZE];  /**< RIPEMD160 hash of capture file */
cdc6660
     gchar                 file_sha1[HASH_STR_SIZE];    /**< SHA1 hash of capture file */
cdc6660
     int                   file_type;          /**< wiretap file type */
cdc6660
     wtap_compression_type compression_type;   /**< compression type of file, or uncompressed */