Sha256: 6af39e08cfbfcf6fdd6c46e229d1bf1a3be29753867d2f42f797fa0a181c3f5e

Contents?: true

Size: 415 Bytes

Versions: 43

Compression:

Stored size: 415 Bytes

Contents

var xor = require('buffer-xor')

function getBlock (self) {
  self._prev = self._cipher.encryptBlock(self._prev)
  return self._prev
}

exports.encrypt = function (self, chunk) {
  while (self._cache.length < chunk.length) {
    self._cache = Buffer.concat([self._cache, getBlock(self)])
  }

  var pad = self._cache.slice(0, chunk.length)
  self._cache = self._cache.slice(chunk.length)
  return xor(chunk, pad)
}

Version data entries

43 entries across 42 versions & 15 rubygems

Version Path
optimacms-0.1.61 spec/dummy/node_modules/browserify-aes/modes/ofb.js
disco_app-0.18.0 test/dummy/node_modules/browserify-aes/modes/ofb.js
disco_app-0.18.2 test/dummy/node_modules/browserify-aes/modes/ofb.js
disco_app-0.16.1 test/dummy/node_modules/browserify-aes/modes/ofb.js
disco_app-0.15.2 test/dummy/node_modules/browserify-aes/modes/ofb.js
disco_app-0.18.4 test/dummy/node_modules/browserify-aes/modes/ofb.js
disco_app-0.18.1 test/dummy/node_modules/browserify-aes/modes/ofb.js
disco_app-0.12.7.pre.puma.pre.3 test/dummy/node_modules/browserify-aes/modes/ofb.js
disco_app-0.14.0 test/dummy/node_modules/browserify-aes/modes/ofb.js
disco_app-0.13.6.pre.puma.pre.3 test/dummy/node_modules/browserify-aes/modes/ofb.js
tang-0.2.1 spec/tang_app/node_modules/browserify-aes/modes/ofb.js
groonga-client-model-6.0.0 test/apps/rails6.0.3.5/node_modules/browserify-aes/modes/ofb.js
groonga-client-model-6.0.0 test/apps/rails6.1.3/node_modules/browserify-aes/modes/ofb.js
ruby2js-4.0.4 lib/tasks/testrails/node_modules/browserify-aes/modes/ofb.js
ruby2js-4.0.3 lib/tasks/testrails/node_modules/browserify-aes/modes/ofb.js
tang-0.2.0 spec/tang_app/node_modules/browserify-aes/modes/ofb.js
tang-0.1.0 spec/tang_app/node_modules/browserify-aes/modes/ofb.js
tang-0.0.9 spec/tang_app/node_modules/browserify-aes/modes/ofb.js
enju_library-0.3.8 spec/dummy/node_modules/browserify-aes/modes/ofb.js
ilog-0.4.1 node_modules/browserify-aes/modes/ofb.js