Blame src/include/k5-hex.h

Packit fd8b60
/* -*- mode: c; c-basic-offset: 4; indent-tabs-mode: nil -*- */
Packit fd8b60
/* include/k5-hex.h - libkrb5support hex encoding/decoding declarations */
Packit fd8b60
/*
Packit fd8b60
 * Copyright (C) 2018 by the Massachusetts Institute of Technology.
Packit fd8b60
 * All rights reserved.
Packit fd8b60
 *
Packit fd8b60
 * Redistribution and use in source and binary forms, with or without
Packit fd8b60
 * modification, are permitted provided that the following conditions
Packit fd8b60
 * are met:
Packit fd8b60
 *
Packit fd8b60
 * * Redistributions of source code must retain the above copyright
Packit fd8b60
 *   notice, this list of conditions and the following disclaimer.
Packit fd8b60
 *
Packit fd8b60
 * * Redistributions in binary form must reproduce the above copyright
Packit fd8b60
 *   notice, this list of conditions and the following disclaimer in
Packit fd8b60
 *   the documentation and/or other materials provided with the
Packit fd8b60
 *   distribution.
Packit fd8b60
 *
Packit fd8b60
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
Packit fd8b60
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
Packit fd8b60
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
Packit fd8b60
 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
Packit fd8b60
 * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
Packit fd8b60
 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
Packit fd8b60
 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
Packit fd8b60
 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
Packit fd8b60
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
Packit fd8b60
 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
Packit fd8b60
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
Packit fd8b60
 * OF THE POSSIBILITY OF SUCH DAMAGE.
Packit fd8b60
 */
Packit fd8b60
Packit fd8b60
#ifndef K5_HEX_H
Packit fd8b60
#define K5_HEX_H
Packit fd8b60
Packit fd8b60
#include "k5-platform.h"
Packit fd8b60
Packit fd8b60
/*
Packit fd8b60
 * Encode len bytes in hex, placing the result in allocated storage in
Packit fd8b60
 * *hex_out.  Use uppercase hex digits if uppercase is non-zero.  Return 0 on
Packit fd8b60
 * success, ENOMEM on error.
Packit fd8b60
 */
Packit fd8b60
int k5_hex_encode(const void *bytes, size_t len, int uppercase,
Packit fd8b60
                  char **hex_out);
Packit fd8b60
Packit fd8b60
/*
Packit fd8b60
 * Decode hex bytes, placing the result in allocated storage in *bytes_out and
Packit fd8b60
 * *len_out.  Null-terminate the result (primarily for decoding passwords in
Packit fd8b60
 * libkdb_ldap).  Return 0 on success, ENOMEM or EINVAL on error.
Packit fd8b60
 */
Packit fd8b60
int k5_hex_decode(const char *hex, uint8_t **bytes_out, size_t *len_out);
Packit fd8b60
Packit fd8b60
#endif /* K5_HEX_H */