Files
SDK_SG200x_V2/u-boot-2021.10/include/u-boot/fdt-libcrypto.h
carbon 0545e9dc6d init version 2024-05-07
commit d1edce71135cc6d98c0a4b5729774542b676e769
Author: sophgo-forum-service <forum_service@sophgo.com>
Date:   Fri Mar 15 16:07:33 2024 +0800

    [fix] recommend using ssh method to clone repo.
    [fix] fix sensor driver repo branch name.
2024-05-07 19:36:36 +08:00

28 lines
755 B
C

/* SPDX-License-Identifier: GPL-2.0+ */
/*
* Copyright (c) 2020, Alexandru Gagniuc <mr.nuke.me@gmail.com>
* Copyright (c) 2013, Google Inc.
*/
#ifndef _FDT_LIBCRYPTO_H
#define _FDT_LIBCRYPTO_H
#include <openssl/bn.h>
/**
* fdt_add_bignum() - Write a libcrypto BIGNUM as an FDT property
*
* Convert a libcrypto BIGNUM * into a big endian array of integers.
*
* @blob: FDT blob to modify
* @noffset: Offset of the FDT node
* @prop_name: What to call the property in the FDT
* @num: pointer to a libcrypto big number
* @num_bits: How big is 'num' in bits?
* @return 0 if all good all working, -ve on horror
*/
int fdt_add_bignum(void *blob, int noffset, const char *prop_name,
BIGNUM *num, int num_bits);
#endif /* _FDT_LIBCRYPTO_H */