| OLD | NEW |
| 1 /* Copyright (c) 2010 The Chromium OS Authors. All rights reserved. | 1 /* Copyright (c) 2010 The Chromium OS Authors. All rights reserved. |
| 2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
| 3 * found in the LICENSE file. | 3 * found in the LICENSE file. |
| 4 */ | 4 */ |
| 5 | 5 |
| 6 #ifndef VBOOT_REFERENCE_PADDING_H_ | 6 #ifndef VBOOT_REFERENCE_PADDING_H_ |
| 7 #define VBOOT_REFERENCE_PADDING_H_ | 7 #define VBOOT_REFERENCE_PADDING_H_ |
| 8 | 8 |
| 9 #ifndef VBOOT_REFERENCE_CRYPTOLIB_H_ | 9 #ifndef VBOOT_REFERENCE_CRYPTOLIB_H_ |
| 10 #error "Do not include this file directly. Use cryptolib.h instead." | 10 #error "Do not include this file directly. Use cryptolib.h instead." |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 extern const int siglen_map[]; | 31 extern const int siglen_map[]; |
| 32 extern const uint8_t* padding_map[]; | 32 extern const uint8_t* padding_map[]; |
| 33 extern const int padding_size_map[]; | 33 extern const int padding_size_map[]; |
| 34 extern const int hash_type_map[]; | 34 extern const int hash_type_map[]; |
| 35 extern const int hash_size_map[]; | 35 extern const int hash_size_map[]; |
| 36 extern const int hash_blocksize_map[]; | 36 extern const int hash_blocksize_map[]; |
| 37 extern const uint8_t* hash_digestinfo_map[]; | 37 extern const uint8_t* hash_digestinfo_map[]; |
| 38 extern const char* algo_strings[]; | 38 extern const char* algo_strings[]; |
| 39 | 39 |
| 40 #endif /* VBOOT_REFERENCE_PADDING_H_ */ | 40 #endif /* VBOOT_REFERENCE_PADDING_H_ */ |
| OLD | NEW |