-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Expand file tree
/
Copy pathCrc64.xml
More file actions
578 lines (572 loc) · 35.6 KB
/
Copy pathCrc64.xml
File metadata and controls
578 lines (572 loc) · 35.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
<Type Name="Crc64" FullName="System.IO.Hashing.Crc64">
<TypeSignature Language="C#" Value="public sealed class Crc64 : System.IO.Hashing.NonCryptographicHashAlgorithm" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi sealed beforefieldinit Crc64 extends System.IO.Hashing.NonCryptographicHashAlgorithm" />
<TypeSignature Language="DocId" Value="T:System.IO.Hashing.Crc64" />
<TypeSignature Language="VB.NET" Value="Public NotInheritable Class Crc64
Inherits NonCryptographicHashAlgorithm" />
<TypeSignature Language="F#" Value="type Crc64 = class
 inherit NonCryptographicHashAlgorithm" />
<TypeSignature Language="C++ CLI" Value="public ref class Crc64 sealed : System::IO::Hashing::NonCryptographicHashAlgorithm" />
<AssemblyInfo>
<AssemblyName>System.IO.Hashing</AssemblyName>
<AssemblyVersion>6.0.0.0</AssemblyVersion>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.1</AssemblyVersion>
<AssemblyVersion>9.0.0.2</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.1</AssemblyVersion>
<AssemblyVersion>10.0.0.2</AssemblyVersion>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Base>
<BaseTypeName>System.IO.Hashing.NonCryptographicHashAlgorithm</BaseTypeName>
</Base>
<Interfaces />
<Docs>
<summary>Provides an implementation of the CRC-64 algorithm as described in ECMA-182, Annex B.</summary>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
This implementation emits the answer in the Big Endian byte order so that
the CRC residue relationship (CRC(message concat CRC(message)) is a fixed value) holds.
For CRC-64, this stable output is the byte sequence
`{ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }`.
There are multiple, incompatible, definitions of a 64-bit cyclic redundancy
check (CRC) algorithm. When interoperating with another system, ensure that you
are using the same definition. The definition used by this implementation is not
compatible with the cyclic redundancy check described in ISO 3309.
]]></format>
</remarks>
</Docs>
<Members>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public Crc64 ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor() cil managed" />
<MemberSignature Language="DocId" Value="M:System.IO.Hashing.Crc64.#ctor" />
<MemberSignature Language="VB.NET" Value="Public Sub New ()" />
<MemberSignature Language="C++ CLI" Value="public:
 Crc64();" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>System.IO.Hashing</AssemblyName>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters />
<Docs>
<summary>Initializes a new instance of the <see cref="T:System.IO.Hashing.Crc64" /> class.</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public Crc64 (System.IO.Hashing.Crc64ParameterSet parameterSet);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(class System.IO.Hashing.Crc64ParameterSet parameterSet) cil managed" />
<MemberSignature Language="DocId" Value="M:System.IO.Hashing.Crc64.#ctor(System.IO.Hashing.Crc64ParameterSet)" />
<MemberSignature Language="VB.NET" Value="Public Sub New (parameterSet As Crc64ParameterSet)" />
<MemberSignature Language="F#" Value="new System.IO.Hashing.Crc64 : System.IO.Hashing.Crc64ParameterSet -> System.IO.Hashing.Crc64" Usage="new System.IO.Hashing.Crc64 parameterSet" />
<MemberSignature Language="C++ CLI" Value="public:
 Crc64(System::IO::Hashing::Crc64ParameterSet ^ parameterSet);" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>System.IO.Hashing</AssemblyName>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters>
<Parameter Name="parameterSet" Type="System.IO.Hashing.Crc64ParameterSet" />
</Parameters>
<Docs>
<param name="parameterSet">To be added.</param>
<summary>To be added.</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="Append">
<MemberSignature Language="C#" Value="public override void Append (ReadOnlySpan<byte> source);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig virtual instance void Append(valuetype System.ReadOnlySpan`1<unsigned int8> source) cil managed" />
<MemberSignature Language="DocId" Value="M:System.IO.Hashing.Crc64.Append(System.ReadOnlySpan{System.Byte})" />
<MemberSignature Language="VB.NET" Value="Public Overrides Sub Append (source As ReadOnlySpan(Of Byte))" />
<MemberSignature Language="F#" Value="override this.Append : ReadOnlySpan<byte> -> unit" Usage="crc64.Append source" />
<MemberSignature Language="C++ CLI" Value="public:
 override void Append(ReadOnlySpan<System::Byte> source);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.IO.Hashing</AssemblyName>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="source" Type="System.ReadOnlySpan<System.Byte>" />
</Parameters>
<Docs>
<param name="source">The data to process.</param>
<summary>Appends the contents of <paramref name="source" /> to the data already processed for the current hash computation.</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="Clone">
<MemberSignature Language="C#" Value="public System.IO.Hashing.Crc64 Clone ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance class System.IO.Hashing.Crc64 Clone() cil managed" />
<MemberSignature Language="DocId" Value="M:System.IO.Hashing.Crc64.Clone" />
<MemberSignature Language="VB.NET" Value="Public Function Clone () As Crc64" />
<MemberSignature Language="F#" Value="member this.Clone : unit -> System.IO.Hashing.Crc64" Usage="crc64.Clone " />
<MemberSignature Language="C++ CLI" Value="public:
 System::IO::Hashing::Crc64 ^ Clone();" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.IO.Hashing</AssemblyName>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.IO.Hashing.Crc64</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>Creates a clone of the current instance with a copy of the current instance's internal state.</summary>
<returns>A new instance that will produce the same sequence of values as the current instance.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="GetCurrentHashAsUInt64">
<MemberSignature Language="C#" Value="public ulong GetCurrentHashAsUInt64 ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance unsigned int64 GetCurrentHashAsUInt64() cil managed" />
<MemberSignature Language="DocId" Value="M:System.IO.Hashing.Crc64.GetCurrentHashAsUInt64" />
<MemberSignature Language="VB.NET" Value="Public Function GetCurrentHashAsUInt64 () As ULong" />
<MemberSignature Language="F#" Value="member this.GetCurrentHashAsUInt64 : unit -> uint64" Usage="crc64.GetCurrentHashAsUInt64 " />
<MemberSignature Language="C++ CLI" Value="public:
 System::UInt64 GetCurrentHashAsUInt64();" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.IO.Hashing</AssemblyName>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.CLSCompliant(false)]</AttributeName>
<AttributeName Language="F#">[<System.CLSCompliant(false)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.UInt64</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>Gets the current computed hash value without modifying accumulated state.</summary>
<returns>The hash value for the data already provided.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="GetCurrentHashCore">
<MemberSignature Language="C#" Value="protected override void GetCurrentHashCore (Span<byte> destination);" />
<MemberSignature Language="ILAsm" Value=".method familyhidebysig virtual instance void GetCurrentHashCore(valuetype System.Span`1<unsigned int8> destination) cil managed" />
<MemberSignature Language="DocId" Value="M:System.IO.Hashing.Crc64.GetCurrentHashCore(System.Span{System.Byte})" />
<MemberSignature Language="VB.NET" Value="Protected Overrides Sub GetCurrentHashCore (destination As Span(Of Byte))" />
<MemberSignature Language="F#" Value="override this.GetCurrentHashCore : Span<byte> -> unit" Usage="crc64.GetCurrentHashCore destination" />
<MemberSignature Language="C++ CLI" Value="protected:
 override void GetCurrentHashCore(Span<System::Byte> destination);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.IO.Hashing</AssemblyName>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="destination" Type="System.Span<System.Byte>" />
</Parameters>
<Docs>
<param name="destination">The buffer that receives the computed hash value.</param>
<summary>Writes the computed hash value to <paramref name="destination" /> without modifying accumulated state.</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="GetHashAndResetCore">
<MemberSignature Language="C#" Value="protected override void GetHashAndResetCore (Span<byte> destination);" />
<MemberSignature Language="ILAsm" Value=".method familyhidebysig virtual instance void GetHashAndResetCore(valuetype System.Span`1<unsigned int8> destination) cil managed" />
<MemberSignature Language="DocId" Value="M:System.IO.Hashing.Crc64.GetHashAndResetCore(System.Span{System.Byte})" />
<MemberSignature Language="VB.NET" Value="Protected Overrides Sub GetHashAndResetCore (destination As Span(Of Byte))" />
<MemberSignature Language="F#" Value="override this.GetHashAndResetCore : Span<byte> -> unit" Usage="crc64.GetHashAndResetCore destination" />
<MemberSignature Language="C++ CLI" Value="protected:
 override void GetHashAndResetCore(Span<System::Byte> destination);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.IO.Hashing</AssemblyName>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="destination" Type="System.Span<System.Byte>" />
</Parameters>
<Docs>
<param name="destination">To be added.</param>
<summary>Writes the computed hash value to <paramref name="destination" /> then clears the accumulated state.</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="Hash">
<MemberSignature Language="C#" Value="public static byte[] Hash (byte[] source);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig unsigned int8[] Hash(unsigned int8[] source) cil managed" />
<MemberSignature Language="DocId" Value="M:System.IO.Hashing.Crc64.Hash(System.Byte[])" />
<MemberSignature Language="VB.NET" Value="Public Shared Function Hash (source As Byte()) As Byte()" />
<MemberSignature Language="F#" Value="static member Hash : byte[] -> byte[]" Usage="System.IO.Hashing.Crc64.Hash source" />
<MemberSignature Language="C++ CLI" Value="public:
 static cli::array <System::Byte> ^ Hash(cli::array <System::Byte> ^ source);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.IO.Hashing</AssemblyName>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Byte[]</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="source" Type="System.Byte[]" />
</Parameters>
<Docs>
<param name="source">The data to hash.</param>
<summary>Computes the CRC-64 hash of the provided data.</summary>
<returns>The CRC-64 hash of the provided data.</returns>
<remarks>To be added.</remarks>
<exception cref="T:System.ArgumentNullException">
<paramref name="source" /> is <see langword="null" />.</exception>
</Docs>
</Member>
<Member MemberName="Hash">
<MemberSignature Language="C#" Value="public static byte[] Hash (ReadOnlySpan<byte> source);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig unsigned int8[] Hash(valuetype System.ReadOnlySpan`1<unsigned int8> source) cil managed" />
<MemberSignature Language="DocId" Value="M:System.IO.Hashing.Crc64.Hash(System.ReadOnlySpan{System.Byte})" />
<MemberSignature Language="VB.NET" Value="Public Shared Function Hash (source As ReadOnlySpan(Of Byte)) As Byte()" />
<MemberSignature Language="F#" Value="static member Hash : ReadOnlySpan<byte> -> byte[]" Usage="System.IO.Hashing.Crc64.Hash source" />
<MemberSignature Language="C++ CLI" Value="public:
 static cli::array <System::Byte> ^ Hash(ReadOnlySpan<System::Byte> source);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.IO.Hashing</AssemblyName>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Byte[]</ReturnType>
<Attributes>
<Attribute FrameworkAlternate="net-10.0-pp">
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(1)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(1)>]</AttributeName>
</Attribute>
</Attributes>
</ReturnValue>
<Parameters>
<Parameter Name="source" Type="System.ReadOnlySpan<System.Byte>" />
</Parameters>
<Docs>
<param name="source">The data to hash.</param>
<summary>Computes the CRC-64 hash of the provided data.</summary>
<returns>The CRC-64 hash of the provided data.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="Hash">
<MemberSignature Language="C#" Value="public static byte[] Hash (System.IO.Hashing.Crc64ParameterSet parameterSet, byte[] source);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig unsigned int8[] Hash(class System.IO.Hashing.Crc64ParameterSet parameterSet, unsigned int8[] source) cil managed" />
<MemberSignature Language="DocId" Value="M:System.IO.Hashing.Crc64.Hash(System.IO.Hashing.Crc64ParameterSet,System.Byte[])" />
<MemberSignature Language="VB.NET" Value="Public Shared Function Hash (parameterSet As Crc64ParameterSet, source As Byte()) As Byte()" />
<MemberSignature Language="F#" Value="static member Hash : System.IO.Hashing.Crc64ParameterSet * byte[] -> byte[]" Usage="System.IO.Hashing.Crc64.Hash (parameterSet, source)" />
<MemberSignature Language="C++ CLI" Value="public:
 static cli::array <System::Byte> ^ Hash(System::IO::Hashing::Crc64ParameterSet ^ parameterSet, cli::array <System::Byte> ^ source);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.IO.Hashing</AssemblyName>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Byte[]</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="parameterSet" Type="System.IO.Hashing.Crc64ParameterSet" />
<Parameter Name="source" Type="System.Byte[]" />
</Parameters>
<Docs>
<param name="parameterSet">To be added.</param>
<param name="source">To be added.</param>
<summary>To be added.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="Hash">
<MemberSignature Language="C#" Value="public static byte[] Hash (System.IO.Hashing.Crc64ParameterSet parameterSet, ReadOnlySpan<byte> source);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig unsigned int8[] Hash(class System.IO.Hashing.Crc64ParameterSet parameterSet, valuetype System.ReadOnlySpan`1<unsigned int8> source) cil managed" />
<MemberSignature Language="DocId" Value="M:System.IO.Hashing.Crc64.Hash(System.IO.Hashing.Crc64ParameterSet,System.ReadOnlySpan{System.Byte})" />
<MemberSignature Language="VB.NET" Value="Public Shared Function Hash (parameterSet As Crc64ParameterSet, source As ReadOnlySpan(Of Byte)) As Byte()" />
<MemberSignature Language="F#" Value="static member Hash : System.IO.Hashing.Crc64ParameterSet * ReadOnlySpan<byte> -> byte[]" Usage="System.IO.Hashing.Crc64.Hash (parameterSet, source)" />
<MemberSignature Language="C++ CLI" Value="public:
 static cli::array <System::Byte> ^ Hash(System::IO::Hashing::Crc64ParameterSet ^ parameterSet, ReadOnlySpan<System::Byte> source);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.IO.Hashing</AssemblyName>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Byte[]</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="parameterSet" Type="System.IO.Hashing.Crc64ParameterSet" />
<Parameter Name="source" Type="System.ReadOnlySpan<System.Byte>">
<Attributes>
<Attribute FrameworkAlternate="net-10.0-pp;net-11.0-pp">
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(0)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(0)>]</AttributeName>
</Attribute>
</Attributes>
</Parameter>
</Parameters>
<Docs>
<param name="parameterSet">To be added.</param>
<param name="source">To be added.</param>
<summary>To be added.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="Hash">
<MemberSignature Language="C#" Value="public static int Hash (ReadOnlySpan<byte> source, Span<byte> destination);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig int32 Hash(valuetype System.ReadOnlySpan`1<unsigned int8> source, valuetype System.Span`1<unsigned int8> destination) cil managed" />
<MemberSignature Language="DocId" Value="M:System.IO.Hashing.Crc64.Hash(System.ReadOnlySpan{System.Byte},System.Span{System.Byte})" />
<MemberSignature Language="VB.NET" Value="Public Shared Function Hash (source As ReadOnlySpan(Of Byte), destination As Span(Of Byte)) As Integer" />
<MemberSignature Language="F#" Value="static member Hash : ReadOnlySpan<byte> * Span<byte> -> int" Usage="System.IO.Hashing.Crc64.Hash (source, destination)" />
<MemberSignature Language="C++ CLI" Value="public:
 static int Hash(ReadOnlySpan<System::Byte> source, Span<System::Byte> destination);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.IO.Hashing</AssemblyName>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="source" Type="System.ReadOnlySpan<System.Byte>" />
<Parameter Name="destination" Type="System.Span<System.Byte>" />
</Parameters>
<Docs>
<param name="source">The data to hash.</param>
<param name="destination">The buffer that receives the computed hash value.</param>
<summary>Computes the CRC-64 hash of the provided data into the provided destination.</summary>
<returns>The number of bytes written to <paramref name="destination" />.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="Hash">
<MemberSignature Language="C#" Value="public static int Hash (System.IO.Hashing.Crc64ParameterSet parameterSet, ReadOnlySpan<byte> source, Span<byte> destination);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig int32 Hash(class System.IO.Hashing.Crc64ParameterSet parameterSet, valuetype System.ReadOnlySpan`1<unsigned int8> source, valuetype System.Span`1<unsigned int8> destination) cil managed" />
<MemberSignature Language="DocId" Value="M:System.IO.Hashing.Crc64.Hash(System.IO.Hashing.Crc64ParameterSet,System.ReadOnlySpan{System.Byte},System.Span{System.Byte})" />
<MemberSignature Language="VB.NET" Value="Public Shared Function Hash (parameterSet As Crc64ParameterSet, source As ReadOnlySpan(Of Byte), destination As Span(Of Byte)) As Integer" />
<MemberSignature Language="F#" Value="static member Hash : System.IO.Hashing.Crc64ParameterSet * ReadOnlySpan<byte> * Span<byte> -> int" Usage="System.IO.Hashing.Crc64.Hash (parameterSet, source, destination)" />
<MemberSignature Language="C++ CLI" Value="public:
 static int Hash(System::IO::Hashing::Crc64ParameterSet ^ parameterSet, ReadOnlySpan<System::Byte> source, Span<System::Byte> destination);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.IO.Hashing</AssemblyName>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="parameterSet" Type="System.IO.Hashing.Crc64ParameterSet">
<Attributes>
<Attribute FrameworkAlternate="net-10.0-pp;net-11.0-pp">
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(1)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(1)>]</AttributeName>
</Attribute>
</Attributes>
</Parameter>
<Parameter Name="source" Type="System.ReadOnlySpan<System.Byte>" />
<Parameter Name="destination" Type="System.Span<System.Byte>" />
</Parameters>
<Docs>
<param name="parameterSet">To be added.</param>
<param name="source">To be added.</param>
<param name="destination">To be added.</param>
<summary>To be added.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="HashToUInt64">
<MemberSignature Language="C#" Value="public static ulong HashToUInt64 (ReadOnlySpan<byte> source);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig unsigned int64 HashToUInt64(valuetype System.ReadOnlySpan`1<unsigned int8> source) cil managed" />
<MemberSignature Language="DocId" Value="M:System.IO.Hashing.Crc64.HashToUInt64(System.ReadOnlySpan{System.Byte})" />
<MemberSignature Language="VB.NET" Value="Public Shared Function HashToUInt64 (source As ReadOnlySpan(Of Byte)) As ULong" />
<MemberSignature Language="F#" Value="static member HashToUInt64 : ReadOnlySpan<byte> -> uint64" Usage="System.IO.Hashing.Crc64.HashToUInt64 source" />
<MemberSignature Language="C++ CLI" Value="public:
 static System::UInt64 HashToUInt64(ReadOnlySpan<System::Byte> source);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.IO.Hashing</AssemblyName>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.CLSCompliant(false)]</AttributeName>
<AttributeName Language="F#">[<System.CLSCompliant(false)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.UInt64</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="source" Type="System.ReadOnlySpan<System.Byte>" />
</Parameters>
<Docs>
<param name="source">The data to hash.</param>
<summary>Computes the CRC-64 hash of the provided data.</summary>
<returns>The computed CRC-64 hash.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="HashToUInt64">
<MemberSignature Language="C#" Value="public static ulong HashToUInt64 (System.IO.Hashing.Crc64ParameterSet parameterSet, ReadOnlySpan<byte> source);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig unsigned int64 HashToUInt64(class System.IO.Hashing.Crc64ParameterSet parameterSet, valuetype System.ReadOnlySpan`1<unsigned int8> source) cil managed" />
<MemberSignature Language="DocId" Value="M:System.IO.Hashing.Crc64.HashToUInt64(System.IO.Hashing.Crc64ParameterSet,System.ReadOnlySpan{System.Byte})" />
<MemberSignature Language="VB.NET" Value="Public Shared Function HashToUInt64 (parameterSet As Crc64ParameterSet, source As ReadOnlySpan(Of Byte)) As ULong" />
<MemberSignature Language="F#" Value="static member HashToUInt64 : System.IO.Hashing.Crc64ParameterSet * ReadOnlySpan<byte> -> uint64" Usage="System.IO.Hashing.Crc64.HashToUInt64 (parameterSet, source)" />
<MemberSignature Language="C++ CLI" Value="public:
 static System::UInt64 HashToUInt64(System::IO::Hashing::Crc64ParameterSet ^ parameterSet, ReadOnlySpan<System::Byte> source);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.IO.Hashing</AssemblyName>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.CLSCompliant(false)]</AttributeName>
<AttributeName Language="F#">[<System.CLSCompliant(false)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.UInt64</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="parameterSet" Type="System.IO.Hashing.Crc64ParameterSet">
<Attributes>
<Attribute FrameworkAlternate="net-10.0-pp;net-11.0-pp">
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(1)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(1)>]</AttributeName>
</Attribute>
</Attributes>
</Parameter>
<Parameter Name="source" Type="System.ReadOnlySpan<System.Byte>" />
</Parameters>
<Docs>
<param name="parameterSet">To be added.</param>
<param name="source">To be added.</param>
<summary>To be added.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="ParameterSet">
<MemberSignature Language="C#" Value="public System.IO.Hashing.Crc64ParameterSet ParameterSet { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class System.IO.Hashing.Crc64ParameterSet ParameterSet" />
<MemberSignature Language="DocId" Value="P:System.IO.Hashing.Crc64.ParameterSet" />
<MemberSignature Language="VB.NET" Value="Public ReadOnly Property ParameterSet As Crc64ParameterSet" />
<MemberSignature Language="F#" Value="member this.ParameterSet : System.IO.Hashing.Crc64ParameterSet" Usage="System.IO.Hashing.Crc64.ParameterSet" />
<MemberSignature Language="C++ CLI" Value="public:
 property System::IO::Hashing::Crc64ParameterSet ^ ParameterSet { System::IO::Hashing::Crc64ParameterSet ^ get(); };" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>System.IO.Hashing</AssemblyName>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute FrameworkAlternate="net-10.0-pp;net-11.0-pp">
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(1)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(1)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.IO.Hashing.Crc64ParameterSet</ReturnType>
</ReturnValue>
<Docs>
<summary>To be added.</summary>
<value>To be added.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="Reset">
<MemberSignature Language="C#" Value="public override void Reset ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig virtual instance void Reset() cil managed" />
<MemberSignature Language="DocId" Value="M:System.IO.Hashing.Crc64.Reset" />
<MemberSignature Language="VB.NET" Value="Public Overrides Sub Reset ()" />
<MemberSignature Language="F#" Value="override this.Reset : unit -> unit" Usage="crc64.Reset " />
<MemberSignature Language="C++ CLI" Value="public:
 override void Reset();" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.IO.Hashing</AssemblyName>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>Resets the hash computation to the initial state.</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="TryHash">
<MemberSignature Language="C#" Value="public static bool TryHash (ReadOnlySpan<byte> source, Span<byte> destination, out int bytesWritten);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig bool TryHash(valuetype System.ReadOnlySpan`1<unsigned int8> source, valuetype System.Span`1<unsigned int8> destination, [out] int32& bytesWritten) cil managed" />
<MemberSignature Language="DocId" Value="M:System.IO.Hashing.Crc64.TryHash(System.ReadOnlySpan{System.Byte},System.Span{System.Byte},System.Int32@)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function TryHash (source As ReadOnlySpan(Of Byte), destination As Span(Of Byte), ByRef bytesWritten As Integer) As Boolean" />
<MemberSignature Language="F#" Value="static member TryHash : ReadOnlySpan<byte> * Span<byte> * int -> bool" Usage="System.IO.Hashing.Crc64.TryHash (source, destination, bytesWritten)" />
<MemberSignature Language="C++ CLI" Value="public:
 static bool TryHash(ReadOnlySpan<System::Byte> source, Span<System::Byte> destination, [Runtime::InteropServices::Out] int % bytesWritten);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.IO.Hashing</AssemblyName>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="source" Type="System.ReadOnlySpan<System.Byte>" />
<Parameter Name="destination" Type="System.Span<System.Byte>" />
<Parameter Name="bytesWritten" Type="System.Int32" RefType="out" />
</Parameters>
<Docs>
<param name="source">The data to hash.</param>
<param name="destination">The buffer that receives the computed hash value.</param>
<param name="bytesWritten">When this method returns, contains the number of bytes written to <paramref name="destination" />.</param>
<summary>Attempts to compute the CRC-64 hash of the provided data into the provided destination.</summary>
<returns>
<see langword="true" /> if <paramref name="destination" /> is long enough to receive the computed hash value (8 bytes); otherwise, <see langword="false" />.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="TryHash">
<MemberSignature Language="C#" Value="public static bool TryHash (System.IO.Hashing.Crc64ParameterSet parameterSet, ReadOnlySpan<byte> source, Span<byte> destination, out int bytesWritten);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig bool TryHash(class System.IO.Hashing.Crc64ParameterSet parameterSet, valuetype System.ReadOnlySpan`1<unsigned int8> source, valuetype System.Span`1<unsigned int8> destination, [out] int32& bytesWritten) cil managed" />
<MemberSignature Language="DocId" Value="M:System.IO.Hashing.Crc64.TryHash(System.IO.Hashing.Crc64ParameterSet,System.ReadOnlySpan{System.Byte},System.Span{System.Byte},System.Int32@)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function TryHash (parameterSet As Crc64ParameterSet, source As ReadOnlySpan(Of Byte), destination As Span(Of Byte), ByRef bytesWritten As Integer) As Boolean" />
<MemberSignature Language="F#" Value="static member TryHash : System.IO.Hashing.Crc64ParameterSet * ReadOnlySpan<byte> * Span<byte> * int -> bool" Usage="System.IO.Hashing.Crc64.TryHash (parameterSet, source, destination, bytesWritten)" />
<MemberSignature Language="C++ CLI" Value="public:
 static bool TryHash(System::IO::Hashing::Crc64ParameterSet ^ parameterSet, ReadOnlySpan<System::Byte> source, Span<System::Byte> destination, [Runtime::InteropServices::Out] int % bytesWritten);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.IO.Hashing</AssemblyName>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="parameterSet" Type="System.IO.Hashing.Crc64ParameterSet">
<Attributes>
<Attribute FrameworkAlternate="net-10.0-pp;net-11.0-pp">
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(1)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(1)>]</AttributeName>
</Attribute>
</Attributes>
</Parameter>
<Parameter Name="source" Type="System.ReadOnlySpan<System.Byte>" />
<Parameter Name="destination" Type="System.Span<System.Byte>" />
<Parameter Name="bytesWritten" Type="System.Int32" RefType="out" />
</Parameters>
<Docs>
<param name="parameterSet">To be added.</param>
<param name="source">To be added.</param>
<param name="destination">To be added.</param>
<param name="bytesWritten">To be added.</param>
<summary>To be added.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
</Members>
</Type>