object crc
Provides support for calculating cyclic redundancy checks.
- Source
- crc.scala
- See also
http://www.repairfaq.org/filipg/LINK/F_crc_v3.html
- Alphabetic
- By Inheritance
- crc
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
apply(poly: BitVector, initial: BitVector, reflectInput: Boolean, reflectOutput: Boolean, finalXor: BitVector): (BitVector) ⇒ BitVector
Constructs a table-based CRC function using the specified polynomial.
Constructs a table-based CRC function using the specified polynomial.
Each of the input vectors must be the same size.
- returns
function that calculates a
n
-bit CRC wheren = poly.size
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
bitwise(poly: BitVector, initial: BitVector, reflectInput: Boolean, reflectOutput: Boolean, finalXor: BitVector, value: BitVector): BitVector
Calculates a bitwise CRC of the specified value.
Calculates a bitwise CRC of the specified value.
If calculating a lot of CRCs, prefer the
apply
method, which precomputes a lookup table and uses it in each CRC calculation.- returns
function that calculates a
n
-bit CRC wheren = poly.size
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
lazy val
crc32: (BitVector) ⇒ BitVector
32-bit CRC using poly 0x04c11db7, initial 0xffffffff, reflected input/output, and final xor 0xffffffff.
-
lazy val
crc32c: (BitVector) ⇒ BitVector
32-bit CRC using poly 0x1edc6f41, initial 0xffffffff, reflected input/output, and final xor 0xffffffff.
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
-
def
int32(poly: Int, initial: Int, reflectInput: Boolean, reflectOutput: Boolean, finalXor: Int): (BitVector) ⇒ Int
Constructs a 32-bit, table-based CRC function using the specified polynomial.
Constructs a 32-bit, table-based CRC function using the specified polynomial.
- returns
function that calculates a 32-bit CRC
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )