/*
* 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
#include <sys/byteorder.h>
/*
* Encrypt and decrypt multiple blocks of data in counter mode.
*/
int
{
void *iov_or_mp;
/* accumulate bytes here and return */
length);
return (CRYPTO_SUCCESS);
}
do {
/* Unprocessed data from last call. */
if (ctx->ctr_remainder_len > 0) {
return (CRYPTO_DATA_LEN_RANGE);
} else {
}
/* ctr_cb is the counter block */
/*
* Increment Counter.
*/
/* wrap around */
if (lower_counter == 0) {
}
/*
* XOR encrypted counter block with the current clear block.
*/
if (ctx->ctr_remainder_len > 0) {
need);
}
} else {
/* copy block to where it belongs */
if (out_data_2 != NULL) {
}
/* update offset */
}
/* Update pointer to next block of data to be processed. */
if (ctx->ctr_remainder_len != 0) {
ctx->ctr_remainder_len = 0;
} else {
datap += block_size;
}
/* Incomplete last block. */
goto out;
}
} while (remainder > 0);
out:
return (CRYPTO_SUCCESS);
}
int
{
void *iov_or_mp;
uint8_t *p;
int i;
return (CRYPTO_DATA_LEN_RANGE);
for (i = 0; i < ctx->ctr_remainder_len; i++) {
p[i] ^= lastp[i];
}
if (out_data_2 != NULL) {
}
ctx->ctr_remainder_len = 0;
return (CRYPTO_SUCCESS);
}
int
{
return (CRYPTO_MECHANISM_PARAM_INVALID);
}
/* upper 64 bits of the mask */
if (count >= 64) {
count -= 64;
} else {
/* now the lower 63 bits */
}
return (CRYPTO_SUCCESS);
}
/* ARGSUSED */
void *
{
#ifdef _KERNEL
#else
#endif
return (NULL);
return (ctr_ctx);
}