Home | History | Annotate | Line # | Download | only in ciphers
      1      1.1  christos /*
      2      1.1  christos  * Copyright 2019-2021 The OpenSSL Project Authors. All Rights Reserved.
      3      1.1  christos  *
      4      1.1  christos  * Licensed under the Apache License 2.0 (the "License").  You may not use
      5      1.1  christos  * this file except in compliance with the License.  You can obtain a copy
      6      1.1  christos  * in the file LICENSE in the source distribution or at
      7      1.1  christos  * https://www.openssl.org/source/license.html
      8      1.1  christos  */
      9      1.1  christos 
     10      1.1  christos /*
     11      1.1  christos  * CAST low level APIs are deprecated for public use, but still ok for
     12      1.1  christos  * internal use.
     13      1.1  christos  */
     14      1.1  christos #include "internal/deprecated.h"
     15      1.1  christos 
     16      1.1  christos /* Dispatch functions for cast cipher modes ecb, cbc, ofb, cfb */
     17      1.1  christos 
     18      1.1  christos #include <openssl/proverr.h>
     19      1.1  christos #include "cipher_cast.h"
     20      1.1  christos #include "prov/implementations.h"
     21      1.1  christos #include "prov/providercommon.h"
     22      1.1  christos 
     23      1.1  christos #define CAST5_FLAGS PROV_CIPHER_FLAG_VARIABLE_LENGTH
     24      1.1  christos 
     25      1.1  christos static OSSL_FUNC_cipher_freectx_fn cast5_freectx;
     26      1.1  christos static OSSL_FUNC_cipher_dupctx_fn cast5_dupctx;
     27      1.1  christos 
     28      1.1  christos static void cast5_freectx(void *vctx)
     29      1.1  christos {
     30      1.1  christos     PROV_CAST_CTX *ctx = (PROV_CAST_CTX *)vctx;
     31      1.1  christos 
     32      1.1  christos     ossl_cipher_generic_reset_ctx((PROV_CIPHER_CTX *)vctx);
     33  1.1.1.2  christos     OPENSSL_clear_free(ctx, sizeof(*ctx));
     34      1.1  christos }
     35      1.1  christos 
     36      1.1  christos static void *cast5_dupctx(void *ctx)
     37      1.1  christos {
     38      1.1  christos     PROV_CAST_CTX *in = (PROV_CAST_CTX *)ctx;
     39      1.1  christos     PROV_CAST_CTX *ret;
     40      1.1  christos 
     41      1.1  christos     if (!ossl_prov_is_running())
     42      1.1  christos         return NULL;
     43      1.1  christos 
     44      1.1  christos     ret = OPENSSL_malloc(sizeof(*ret));
     45      1.1  christos     if (ret == NULL)
     46      1.1  christos         return NULL;
     47      1.1  christos     *ret = *in;
     48      1.1  christos 
     49      1.1  christos     return ret;
     50      1.1  christos }
     51      1.1  christos 
     52      1.1  christos /* ossl_cast5128ecb_functions */
     53      1.1  christos IMPLEMENT_var_keylen_cipher(cast5, CAST, ecb, ECB, CAST5_FLAGS, 128, 64, 0, block)
     54      1.1  christos /* ossl_cast5128cbc_functions */
     55      1.1  christos IMPLEMENT_var_keylen_cipher(cast5, CAST, cbc, CBC, CAST5_FLAGS, 128, 64, 64, block)
     56      1.1  christos /* ossl_cast5128ofb64_functions */
     57      1.1  christos IMPLEMENT_var_keylen_cipher(cast5, CAST, ofb64, OFB, CAST5_FLAGS, 128, 8, 64, stream)
     58      1.1  christos /* ossl_cast5128cfb64_functions */
     59  1.1.1.2  christos IMPLEMENT_var_keylen_cipher(cast5, CAST, cfb64, CFB, CAST5_FLAGS, 128, 8, 64, stream)
     60