| 
														
															@@ -66,13 +66,6 @@ const DIGEST_SHA512: digest_algorithm_t = 2; 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 const DIGEST_SHA3_256: digest_algorithm_t = 3; 
														 | 
														
														 | 
														
															 const DIGEST_SHA3_256: digest_algorithm_t = 3; 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 const DIGEST_SHA3_512: digest_algorithm_t = 4; 
														 | 
														
														 | 
														
															 const DIGEST_SHA3_512: digest_algorithm_t = 4; 
														 | 
													
												
											
												
													
														| 
														 | 
														
															  
														 | 
														
														 | 
														
															  
														 | 
													
												
											
												
													
														| 
														 | 
														
															-/// The total number of digest algorithms we currently support. 
														 | 
														
														 | 
														
															 
														 | 
													
												
											
												
													
														| 
														 | 
														
															-/// 
														 | 
														
														 | 
														
															 
														 | 
													
												
											
												
													
														| 
														 | 
														
															-/// We can't access these from Rust, because their definitions in C require 
														 | 
														
														 | 
														
															 
														 | 
													
												
											
												
													
														| 
														 | 
														
															-/// introspecting the `digest_algorithm_t` typedef, which is an enum, so we have 
														 | 
														
														 | 
														
															 
														 | 
													
												
											
												
													
														| 
														 | 
														
															-/// to redefine them here. 
														 | 
														
														 | 
														
															 
														 | 
													
												
											
												
													
														| 
														 | 
														
															-const N_DIGEST_ALGORITHMS: usize = DIGEST_SHA3_512 as usize + 1; 
														 | 
														
														 | 
														
															 
														 | 
													
												
											
												
													
														| 
														 | 
														
															- 
														 | 
														
														 | 
														
															 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 /// The number of hash digests we produce for a `common_digests_t`. 
														 | 
														
														 | 
														
															 /// The number of hash digests we produce for a `common_digests_t`. 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 /// 
														 | 
														
														 | 
														
															 /// 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 /// We can't access these from Rust, because their definitions in C require 
														 | 
														
														 | 
														
															 /// We can't access these from Rust, because their definitions in C require 
														 | 
													
												
											
										
											
												
													
														 | 
														
															@@ -117,6 +110,9 @@ struct common_digests_t { 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 /// A `smartlist_t` is just an alias for the `#[repr(C)]` type `Stringlist`, to 
														 | 
														
														 | 
														
															 /// A `smartlist_t` is just an alias for the `#[repr(C)]` type `Stringlist`, to 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 /// make it more clear that we're working with a smartlist which is owned by C. 
														 | 
														
														 | 
														
															 /// make it more clear that we're working with a smartlist which is owned by C. 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 #[allow(non_camel_case_types)] 
														 | 
														
														 | 
														
															 #[allow(non_camel_case_types)] 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 
														 | 
														
														 | 
														
															+// BINDGEN_GENERATED: This type isn't actually bindgen generated, but the code 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 
														 | 
														
														 | 
														
															+// below it which uses it is.  As such, this comes up as "dead code" as well. 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 
														 | 
														
														 | 
														
															+#[allow(dead_code)] 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 type smartlist_t = Stringlist; 
														 | 
														
														 | 
														
															 type smartlist_t = Stringlist; 
														 | 
													
												
											
												
													
														| 
														 | 
														
															  
														 | 
														
														 | 
														
															  
														 | 
													
												
											
												
													
														| 
														 | 
														
															 /// All of the external functions from `src/common/crypto_digest.h`. 
														 | 
														
														 | 
														
															 /// All of the external functions from `src/common/crypto_digest.h`. 
														 |