File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ JNIEXPORT jbyteArray JNICALL Java_software_amazon_awssdk_crt_checksums_XXHash_xx
7474 }
7575
7676 jbyteArray hash = NULL ;
77- int result = aws_xxhash64_compute (seed , c_byte_array , & hash_buffer );
77+ int result = aws_xxhash3_64_compute (seed , c_byte_array , & hash_buffer );
7878 aws_jni_byte_cursor_from_jbyteArray_critical_release (env , input , c_byte_array );
7979 if (result != AWS_OP_SUCCESS ) {
8080 aws_jni_throw_runtime_exception (env , "XXHash.xxHash3_64Compute: failed to compute hash" );
@@ -108,7 +108,7 @@ JNIEXPORT jbyteArray JNICALL Java_software_amazon_awssdk_crt_checksums_XXHash_xx
108108 }
109109
110110 jbyteArray hash = NULL ;
111- int result = aws_xxhash64_compute (seed , c_byte_array , & hash_buffer );
111+ int result = aws_xxhash3_128_compute (seed , c_byte_array , & hash_buffer );
112112 aws_jni_byte_cursor_from_jbyteArray_critical_release (env , input , c_byte_array );
113113 if (result != AWS_OP_SUCCESS ) {
114114 aws_jni_throw_runtime_exception (env , "XXHash.xxHash3_128Compute: failed to compute hash" );
You can’t perform that action at this time.
0 commit comments