mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-11-26 19:25:02 +00:00
Removing multiple top level includes - now padding.h, rsa.h and sha.h are used internally and cryptolib.h must be used instead for all modules that wish to use crypto functions. I am trying to separate refactors involving code movement from one file to another, and the movement of files themselves into separate CLs so that it's clear what changed. Review URL: http://codereview.chromium.org/1574005
41 lines
1.3 KiB
C
41 lines
1.3 KiB
C
/* Copyright (c) 2010 The Chromium OS Authors. All rights reserved.
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#ifndef VBOOT_REFERENCE_PADDING_H_
|
|
#define VBOOT_REFERENCE_PADDING_H_
|
|
|
|
#ifndef VBOOT_REFERENCE_CRYPTOLIB_H_
|
|
#error "Do not include this file directly. Use cryptolib.h instead."
|
|
#endif
|
|
|
|
#include <stdint.h>
|
|
|
|
extern const uint8_t paddingRSA1024_SHA1[];
|
|
extern const uint8_t paddingRSA1024_SHA256[];
|
|
extern const uint8_t paddingRSA1024_SHA512[];
|
|
extern const uint8_t paddingRSA2048_SHA1[];
|
|
extern const uint8_t paddingRSA2048_SHA256[];
|
|
extern const uint8_t paddingRSA2048_SHA512[];
|
|
extern const uint8_t paddingRSA4096_SHA1[];
|
|
extern const uint8_t paddingRSA4096_SHA256[];
|
|
extern const uint8_t paddingRSA4096_SHA512[];
|
|
extern const uint8_t paddingRSA8192_SHA1[];
|
|
extern const uint8_t paddingRSA8192_SHA256[];
|
|
extern const uint8_t paddingRSA8192_SHA512[];
|
|
|
|
extern const int kNumAlgorithms;
|
|
|
|
extern const int digestinfo_size_map[];
|
|
extern const int siglen_map[];
|
|
extern const uint8_t* padding_map[];
|
|
extern const int padding_size_map[];
|
|
extern const int hash_type_map[];
|
|
extern const int hash_size_map[];
|
|
extern const int hash_blocksize_map[];
|
|
extern const uint8_t* hash_digestinfo_map[];
|
|
extern const char* algo_strings[];
|
|
|
|
#endif /* VBOOT_REFERENCE_PADDING_H_ */
|