/* * Copyright 2019-2021 The OpenSSL Project Authors. All Rights Reserved. * * 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 */ {- use OpenSSL::paramnames qw(produce_param_decoder); -} #include #include #include #include "prov/digestcommon.h" #include "internal/common.h" {- produce_param_decoder('digest_default_get_params', (['DIGEST_PARAM_BLOCK_SIZE', 'bsize', 'size_t'], ['DIGEST_PARAM_SIZE', 'size', 'size_t'], ['DIGEST_PARAM_XOF', 'xof', 'int'], ['DIGEST_PARAM_ALGID_ABSENT', 'aldid', 'int'], )); -} int ossl_digest_default_get_params(OSSL_PARAM params[], size_t blksz, size_t paramsz, unsigned long flags) { struct digest_default_get_params_st p; if (!digest_default_get_params_decoder(params, &p)) return 0; if (p.bsize != NULL && !OSSL_PARAM_set_size_t(p.bsize, blksz)) { ERR_raise(ERR_LIB_PROV, PROV_R_FAILED_TO_SET_PARAMETER); return 0; } if (p.size != NULL && !OSSL_PARAM_set_size_t(p.size, paramsz)) { ERR_raise(ERR_LIB_PROV, PROV_R_FAILED_TO_SET_PARAMETER); return 0; } if (p.xof != NULL && !OSSL_PARAM_set_int(p.xof, (flags & PROV_DIGEST_FLAG_XOF) != 0)) { ERR_raise(ERR_LIB_PROV, PROV_R_FAILED_TO_SET_PARAMETER); return 0; } if (p.aldid != NULL && !OSSL_PARAM_set_int(p.aldid, (flags & PROV_DIGEST_FLAG_ALGID_ABSENT) != 0)) { ERR_raise(ERR_LIB_PROV, PROV_R_FAILED_TO_SET_PARAMETER); return 0; } return 1; } const OSSL_PARAM *ossl_digest_default_gettable_params(void *provctx) { return digest_default_get_params_list; }