1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
|
/* vim: set tabstop=8 shiftwidth=4 softtabstop=4 expandtab smarttab colorcolumn=80: */
/*
* Copyright 2017 Red Hat, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* \brief Cryptographic Hashing
* \defgroup hsh Hash
* @{
*/
#pragma once
#include <jose/cfg.h>
#include <jose/io.h>
#include <jansson.h>
#include <stdint.h>
/**
* Hashes data with the specified algorithm.
*
* This function hashes the first \p dlen bytes of \p data using the \p alg
* specified and returns the output as a URL-safe Base64 encoded JSON string.
*
* \param cfg The configuration context (optional).
* \param alg The hashing algorithm.
* \param data The input data buffer.
* \param dlen The length of the data in the input buffer.
* \return The hash as a URL-safe Base64 encoded JSON string.
*/
json_t *
hsh(jose_cfg_t *cfg, const char *alg, const void *data, size_t dlen);
/**
* Hashes data with the specified algorithm using IO chaining.
*
* This function creates an IO chain filter that takes the data to be hashed
* as input and outputs a hash of the input data.
*
* \param cfg The configuration context (optional).
* \param alg The hashing algorithm.
* \param next The size of the output hash buffer.
* \return The number of bytes written to the hash buffer or SIZE_MAX on error.
*/
jose_io_t *
hsh_io(jose_cfg_t *cfg, const char *alg, jose_io_t *next);
/**
* Hashes data with the specified algorithm into a buffer.
*
* This function hashes the first \p dlen bytes of \p data using the \p alg
* specified and stores the output in \p hash (a buffer of size \p hlen).
*
* If \p hash is NULL, the required size of the output buffer is returned.
*
* \param cfg The configuration context (optional).
* \param alg The hashing algorithm.
* \param data The input data buffer.
* \param dlen The length of the data in the input buffer.
* \param hash The output hash buffer.
* \param hlen The size of the output hash buffer.
* \return The number of bytes written to the hash buffer or SIZE_MAX on error.
*/
size_t
hsh_buf(jose_cfg_t *cfg, const char *alg,
const void *data, size_t dlen, void *hash, size_t hlen);
/** @} */
|