/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2008 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
#ifndef _KERNEL
#include <strings.h>
#include <limits.h>
#include <assert.h>
#include <security/cryptoki.h>
#endif
/*
* Algorithm independent CBC functions.
*/
int
{
void *iov_or_mp;
/* accumulate bytes here and return */
length);
return (CRYPTO_SUCCESS);
}
do {
/* Unprocessed data from last call. */
if (ctx->cbc_remainder_len > 0) {
return (CRYPTO_DATA_LEN_RANGE);
} else {
}
/*
* XOR the previous cipher block or IV with the
* current clear block.
*/
if (ctx->cbc_remainder_len > 0) {
need);
}
} else {
/*
* XOR the previous cipher block or IV with the
* current clear block.
*/
/* copy block to where it belongs */
if (out_data_1_len == block_size) {
} else {
if (out_data_2 != NULL) {
}
}
/* update offset */
}
/* Update pointer to next block of data to be processed. */
if (ctx->cbc_remainder_len != 0) {
ctx->cbc_remainder_len = 0;
} else {
datap += block_size;
}
/* Incomplete last block. */
goto out;
}
} while (remainder > 0);
out:
/*
* Save the last encrypted block in the context.
*/
}
return (CRYPTO_SUCCESS);
}
/* ARGSUSED */
int
{
void *iov_or_mp;
/* accumulate bytes here and return */
length);
return (CRYPTO_SUCCESS);
}
do {
/* Unprocessed data from last call. */
if (ctx->cbc_remainder_len > 0) {
return (CRYPTO_ENCRYPTED_DATA_LEN_RANGE);
} else {
}
/* LINTED: pointer alignment */
} else {
}
/*
* XOR the previous cipher block or IV with the
* currently decrypted block.
*/
/* LINTED: pointer alignment */
if (out_data_2 != NULL) {
}
/* update offset */
} else if (ctx->cbc_remainder_len > 0) {
/* copy temporary block to where it belongs */
}
/* Update pointer to next block of data to be processed. */
if (ctx->cbc_remainder_len != 0) {
ctx->cbc_remainder_len = 0;
} else {
datap += block_size;
}
/* Incomplete last block. */
return (CRYPTO_SUCCESS);
}
} while (remainder > 0);
return (CRYPTO_SUCCESS);
}
int
{
/*
* Copy IV into context.
*
* If cm_param == NULL then the IV comes from the
* cd_miscdata field in the crypto_data structure.
*/
#ifdef _KERNEL
#else
#endif
}
return (CRYPTO_SUCCESS);
}
/* ARGSUSED */
void *
{
#ifdef _KERNEL
#else
#endif
return (NULL);
return (cbc_ctx);
}