BitVecFromBytes
BitVecFromBytes Description Create bitvector from byte array. Reads the specified number of bits from the byte array.
Read MoreBitVecFromInteger
BitVecFromInteger Description Create bitvector from integer value. Creates a bitvector representing the specified number of bits from the integer.
Read MoreBitVecFromStr
BitVecFromStr Description Create bitvector from string representation. String should contain only ‘1’ and ‘0’ characters.
Read MoreBitVecToBytes
BitVecToBytes Description Export bitvector to byte array. Copies the internal bit representation to the provided byte array.
Read MoreBitVecToInteger
BitVecToInteger Description Convert bitvector to integer (up to 64 bits). Treats the bitvector as an unsigned integer with LSB first.
Read MoreBitVecToStr
BitVecToStr Description Convert bitvector to string representation. Each bit becomes ‘1’ or ‘0’ character. Caller must free the returned string.
Read More