We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c36da8d commit c886282Copy full SHA for c886282
1 file changed
README.adoc
@@ -82,16 +82,18 @@ CAUTION: From version v0.3.2 and upward the library may require Java class versi
82
83
[source,clojure]
84
----
85
-;; Adler32 example
86
-(adler32 (.getBytes "123456789"))
87
-=> 152961502
+;; CRC64 example
+(crc64 (.getBytes "123456789"))
+=> -7395533204333446662
88
89
90
+==== Alternatives
91
+
92
93
-;; CRC64 example
-(crc64 (.getBytes "123456789"))
94
-=> -7395533204333446662
+;; Adler32 example
95
+(adler32 (.getBytes "123456789"))
96
+=> 152961502
97
98
99
==== Digests
0 commit comments