2019-09-18 20:13:59 +08:00
|
|
|
/*
|
2020-04-23 20:55:52 +08:00
|
|
|
* Copyright 2019-2020 The OpenSSL Project Authors. All Rights Reserved.
|
2019-09-18 20:13:59 +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
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Dispatch functions for Seed cipher modes ecb, cbc, ofb, cfb */
|
|
|
|
|
2020-01-14 06:35:12 +08:00
|
|
|
/*
|
|
|
|
* SEED low level APIs are deprecated for public use, but still ok for
|
|
|
|
* internal use.
|
|
|
|
*/
|
|
|
|
#include "internal/deprecated.h"
|
|
|
|
|
2019-09-18 20:13:59 +08:00
|
|
|
#include "cipher_seed.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 20:13:59 +08:00
|
|
|
|
2020-06-21 07:19:16 +08:00
|
|
|
static OSSL_FUNC_cipher_freectx_fn seed_freectx;
|
|
|
|
static OSSL_FUNC_cipher_dupctx_fn seed_dupctx;
|
2019-09-18 20:13:59 +08:00
|
|
|
|
|
|
|
static void seed_freectx(void *vctx)
|
|
|
|
{
|
|
|
|
PROV_SEED_CTX *ctx = (PROV_SEED_CTX *)vctx;
|
|
|
|
|
2020-09-29 15:40:26 +08:00
|
|
|
ossl_cipher_generic_reset_ctx((PROV_CIPHER_CTX *)vctx);
|
2019-09-18 20:13:59 +08:00
|
|
|
OPENSSL_clear_free(ctx, sizeof(*ctx));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void *seed_dupctx(void *ctx)
|
|
|
|
{
|
|
|
|
PROV_SEED_CTX *in = (PROV_SEED_CTX *)ctx;
|
2020-09-08 10:56:34 +08:00
|
|
|
PROV_SEED_CTX *ret;
|
2019-09-18 20:13:59 +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 20:13:59 +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_seed128ecb_functions */
|
2019-09-25 15:07:20 +08:00
|
|
|
IMPLEMENT_generic_cipher(seed, SEED, ecb, ECB, 0, 128, 128, 0, block)
|
2020-09-28 10:28:29 +08:00
|
|
|
/* ossl_seed128cbc_functions */
|
2019-09-25 15:07:20 +08:00
|
|
|
IMPLEMENT_generic_cipher(seed, SEED, cbc, CBC, 0, 128, 128, 128, block)
|
2020-09-28 10:28:29 +08:00
|
|
|
/* ossl_seed128ofb128_functions */
|
2019-09-25 15:07:20 +08:00
|
|
|
IMPLEMENT_generic_cipher(seed, SEED, ofb128, OFB, 0, 128, 8, 128, stream)
|
2020-09-28 10:28:29 +08:00
|
|
|
/* ossl_seed128cfb128_functions */
|
2019-09-25 15:07:20 +08:00
|
|
|
IMPLEMENT_generic_cipher(seed, SEED, cfb128, CFB, 0, 128, 8, 128, stream)
|