HomeSort by: relevance | last modified time | path
    Searched refs:nextblocks (Results 1 - 4 of 4) sorted by relevancy

  /src/crypto/external/apache2/openssl/dist/providers/implementations/ciphers/
ciphercommon.c 277 size_t nextblocks; local
360 nextblocks = ossl_cipher_fillblock(ctx->buf, &ctx->bufsz, blksz,
363 nextblocks = inl & ~(blksz - 1);
383 if (nextblocks > 0) {
384 if (!ctx->enc && ctx->pad && nextblocks == inl) {
389 nextblocks -= blksz;
391 outlint += nextblocks;
397 if (nextblocks > 0) {
398 if (!ctx->hw->cipher(ctx, out, in, nextblocks)) {
402 in += nextblocks;
    [all...]
cipher_aes_ocb.c 163 size_t nextblocks; local
167 nextblocks = ossl_cipher_fillblock(buf, bufsz, AES_BLOCK_SIZE, &in, &inl);
169 nextblocks = inl & ~(AES_BLOCK_SIZE - 1);
185 if (nextblocks > 0) {
186 outlint += nextblocks;
191 if (!ciph(ctx, in, out, nextblocks)) {
195 in += nextblocks;
196 inl -= nextblocks;
  /src/crypto/external/bsd/openssl/dist/providers/implementations/ciphers/
ciphercommon.c 254 size_t nextblocks; local
338 nextblocks = ossl_cipher_fillblock(ctx->buf, &ctx->bufsz, blksz,
341 nextblocks = inl & ~(blksz-1);
361 if (nextblocks > 0) {
362 if (!ctx->enc && ctx->pad && nextblocks == inl) {
367 nextblocks -= blksz;
369 outlint += nextblocks;
375 if (nextblocks > 0) {
376 if (!ctx->hw->cipher(ctx, out, in, nextblocks)) {
380 in += nextblocks;
    [all...]
cipher_aes_ocb.c 165 size_t nextblocks; local
169 nextblocks = ossl_cipher_fillblock(buf, bufsz, AES_BLOCK_SIZE, &in, &inl);
171 nextblocks = inl & ~(AES_BLOCK_SIZE-1);
187 if (nextblocks > 0) {
188 outlint += nextblocks;
193 if (!ciph(ctx, in, out, nextblocks)) {
197 in += nextblocks;
198 inl -= nextblocks;

Completed in 23 milliseconds