Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

GoogleSecuritySafebrowsingV5RiceDeltaEncoded256Bit

import type { GoogleSecuritySafebrowsingV5RiceDeltaEncoded256Bit } from "https://googleapis.deno.dev/v1/safebrowsing:v5.ts";

Same as RiceDeltaEncoded32Bit except this encodes 256-bit numbers.

interface GoogleSecuritySafebrowsingV5RiceDeltaEncoded256Bit {
encodedData?: Uint8Array;
entriesCount?: number;
firstValueFirstPart?: bigint;
firstValueFourthPart?: bigint;
firstValueSecondPart?: bigint;
firstValueThirdPart?: bigint;
riceParameter?: number;
}

§Properties

§
encodedData?: Uint8Array
[src]

The encoded deltas that are encoded using the Golomb-Rice coder.

§
entriesCount?: number
[src]

The number of entries that are delta encoded in the encoded data. If only a single integer was encoded, this will be zero and the single value will be stored in first_value.

§
firstValueFirstPart?: bigint
[src]

The first 64 bits of the first entry in the encoded data (hashes). If the field is empty, the first 64 bits are all zero.

§
firstValueFourthPart?: bigint
[src]

The last 64 bits of the first entry in the encoded data (hashes). If the field is empty, the last 64 bits are all zero.

§
firstValueSecondPart?: bigint
[src]

The 65 through 128th bits of the first entry in the encoded data (hashes). If the field is empty, the 65 through 128th bits are all zero.

§
firstValueThirdPart?: bigint
[src]

The 129 through 192th bits of the first entry in the encoded data (hashes). If the field is empty, the 129 through 192th bits are all zero.

§
riceParameter?: number
[src]

The Golomb-Rice parameter. This parameter is guaranteed to be between 227 and 254, inclusive.