2019-09-18 16:55:11 +08:00
|
|
|
/*
|
2020-04-23 20:55:52 +08:00
|
|
|
* Copyright 2019-2020 The OpenSSL Project Authors. All Rights Reserved.
|
2019-09-18 16:55:11 +08:00
|
|
|
*
|
|
|
|
* Licensed under the Apache License 2.0 (the "License"). You may not use
|
|
|
|
* this file except in compliance with the License. You can obtain a copy
|
|
|
|
* in the file LICENSE in the source distribution or at
|
|
|
|
* https://www.openssl.org/source/license.html
|
|
|
|
*/
|
|
|
|
|
2020-01-03 00:15:26 +08:00
|
|
|
/*
|
|
|
|
* CAST low level APIs are deprecated for public use, but still ok for
|
|
|
|
* internal use.
|
|
|
|
*/
|
|
|
|
#include "internal/deprecated.h"
|
|
|
|
|
2019-09-18 16:55:11 +08:00
|
|
|
/* Dispatch functions for cast cipher modes ecb, cbc, ofb, cfb */
|
|
|
|
|
2021-02-06 00:40:42 +08:00
|
|
|
#include <openssl/proverr.h>
|
2019-09-18 16:55:11 +08:00
|
|
|
#include "cipher_cast.h"
|
2019-10-04 21:20:48 +08:00
|
|
|
#include "prov/implementations.h"
|
2020-09-08 10:56:34 +08:00
|
|
|
#include "prov/providercommon.h"
|
2019-09-18 16:55:11 +08:00
|
|
|
|
2020-12-17 14:39:57 +08:00
|
|
|
#define CAST5_FLAGS PROV_CIPHER_FLAG_VARIABLE_LENGTH
|
2019-09-25 15:07:20 +08:00
|
|
|
|
2020-06-21 07:19:16 +08:00
|
|
|
static OSSL_FUNC_cipher_freectx_fn cast5_freectx;
|
|
|
|
static OSSL_FUNC_cipher_dupctx_fn cast5_dupctx;
|
2019-09-18 16:55:11 +08:00
|
|
|
|
|
|
|
static void cast5_freectx(void *vctx)
|
|
|
|
{
|
|
|
|
PROV_CAST_CTX *ctx = (PROV_CAST_CTX *)vctx;
|
|
|
|
|
2020-09-29 15:40:26 +08:00
|
|
|
ossl_cipher_generic_reset_ctx((PROV_CIPHER_CTX *)vctx);
|
2019-09-18 16:55:11 +08:00
|
|
|
OPENSSL_clear_free(ctx, sizeof(*ctx));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void *cast5_dupctx(void *ctx)
|
|
|
|
{
|
|
|
|
PROV_CAST_CTX *in = (PROV_CAST_CTX *)ctx;
|
2020-09-08 10:56:34 +08:00
|
|
|
PROV_CAST_CTX *ret;
|
2019-09-18 16:55:11 +08:00
|
|
|
|
2020-09-08 10:56:34 +08:00
|
|
|
if (!ossl_prov_is_running())
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
ret = OPENSSL_malloc(sizeof(*ret));
|
2019-09-18 16:55:11 +08:00
|
|
|
if (ret == NULL) {
|
|
|
|
ERR_raise(ERR_LIB_PROV, ERR_R_MALLOC_FAILURE);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
*ret = *in;
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2020-09-28 10:28:29 +08:00
|
|
|
/* ossl_cast5128ecb_functions */
|
2019-11-15 00:05:19 +08:00
|
|
|
IMPLEMENT_var_keylen_cipher(cast5, CAST, ecb, ECB, CAST5_FLAGS, 128, 64, 0, block)
|
2020-09-28 10:28:29 +08:00
|
|
|
/* ossl_cast5128cbc_functions */
|
2019-11-15 00:05:19 +08:00
|
|
|
IMPLEMENT_var_keylen_cipher(cast5, CAST, cbc, CBC, CAST5_FLAGS, 128, 64, 64, block)
|
2020-09-28 10:28:29 +08:00
|
|
|
/* ossl_cast5128ofb64_functions */
|
2020-05-02 11:51:35 +08:00
|
|
|
IMPLEMENT_var_keylen_cipher(cast5, CAST, ofb64, OFB, CAST5_FLAGS, 128, 8, 64, stream)
|
2020-09-28 10:28:29 +08:00
|
|
|
/* ossl_cast5128cfb64_functions */
|
2020-05-02 11:51:35 +08:00
|
|
|
IMPLEMENT_var_keylen_cipher(cast5, CAST, cfb64, CFB, CAST5_FLAGS, 128, 8, 64, stream)
|