implemented frontend including separate message system; started to implement backend
This commit is contained in:
100
yjs-poll/node_modules/lib0/hash/rabin.js
generated
vendored
Normal file
100
yjs-poll/node_modules/lib0/hash/rabin.js
generated
vendored
Normal file
@@ -0,0 +1,100 @@
|
||||
/**
|
||||
* @module rabin
|
||||
*
|
||||
* Very efficient & versatile fingerprint/hashing algorithm. However, it is not cryptographically
|
||||
* secure. Well suited for fingerprinting.
|
||||
*/
|
||||
|
||||
import * as buffer from '../buffer.js'
|
||||
import * as map from '../map.js'
|
||||
|
||||
export const StandardIrreducible8 = new Uint8Array([1, 221])
|
||||
export const StandardIrreducible16 = new Uint8Array([1, 244, 157])
|
||||
export const StandardIrreducible32 = new Uint8Array([1, 149, 183, 205, 191])
|
||||
export const StandardIrreducible64 = new Uint8Array([1, 133, 250, 114, 193, 250, 28, 193, 231])
|
||||
export const StandardIrreducible128 = new Uint8Array([1, 94, 109, 166, 228, 6, 222, 102, 239, 27, 128, 184, 13, 50, 112, 169, 199])
|
||||
|
||||
/**
|
||||
* Maps from a modulo to the precomputed values.
|
||||
*
|
||||
* @type {Map<string,Uint8Array>}
|
||||
*/
|
||||
const _precomputedFingerprintCache = new Map()
|
||||
|
||||
/**
|
||||
* @param {Uint8Array} m
|
||||
*/
|
||||
const ensureCache = m => map.setIfUndefined(_precomputedFingerprintCache, buffer.toBase64(m), () => {
|
||||
const byteLen = m.byteLength
|
||||
const cache = new Uint8Array(256 * byteLen)
|
||||
// Use dynamic computing to compute the cached results.
|
||||
// Starting values: cache(0) = 0; cache(1) = m
|
||||
cache.set(m, byteLen)
|
||||
for (let bit = 1; bit < 8; bit++) {
|
||||
const mBitShifted = buffer.shiftNBitsLeft(m, bit)
|
||||
const bitShifted = 1 << bit
|
||||
for (let j = 0; j < bitShifted; j++) {
|
||||
// apply the shifted result (reducing the degree of the polynomial)
|
||||
const msb = bitShifted | j
|
||||
const rest = msb ^ mBitShifted[0]
|
||||
for (let i = 0; i < byteLen; i++) {
|
||||
// rest is already precomputed in the cache
|
||||
cache[msb * byteLen + i] = cache[rest * byteLen + i] ^ mBitShifted[i]
|
||||
}
|
||||
// if (cache[(bitShifted | j) * byteLen] !== (bitShifted | j)) { error.unexpectedCase() }
|
||||
}
|
||||
}
|
||||
return cache
|
||||
})
|
||||
|
||||
export class RabinEncoder {
|
||||
/**
|
||||
* @param {Uint8Array} m assert(m[0] === 1)
|
||||
*/
|
||||
constructor (m) {
|
||||
this.m = m
|
||||
this.blen = m.byteLength
|
||||
this.bs = new Uint8Array(this.blen)
|
||||
this.cache = ensureCache(m)
|
||||
/**
|
||||
* This describes the position of the most significant byte (starts with 0 and increases with
|
||||
* shift)
|
||||
*/
|
||||
this.bpos = 0
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {number} byte
|
||||
*/
|
||||
write (byte) {
|
||||
// assert(this.bs[0] === 0)
|
||||
// Shift one byte to the left, add b
|
||||
this.bs[this.bpos] = byte
|
||||
this.bpos = (this.bpos + 1) % this.blen
|
||||
const msb = this.bs[this.bpos]
|
||||
for (let i = 0; i < this.blen; i++) {
|
||||
this.bs[(this.bpos + i) % this.blen] ^= this.cache[msb * this.blen + i]
|
||||
}
|
||||
// assert(this.bs[this.bpos] === 0)
|
||||
}
|
||||
|
||||
getFingerprint () {
|
||||
const result = new Uint8Array(this.blen - 1)
|
||||
for (let i = 0; i < result.byteLength; i++) {
|
||||
result[i] = this.bs[(this.bpos + i + 1) % this.blen]
|
||||
}
|
||||
return result
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {Uint8Array} irreducible
|
||||
* @param {Uint8Array} data
|
||||
*/
|
||||
export const fingerprint = (irreducible, data) => {
|
||||
const encoder = new RabinEncoder(irreducible)
|
||||
for (let i = 0; i < data.length; i++) {
|
||||
encoder.write(data[i])
|
||||
}
|
||||
return encoder.getFingerprint()
|
||||
}
|
||||
Reference in New Issue
Block a user