Last change
on this file was 109052, checked in by vboxsync, 3 weeks ago |
openssl-3.4.1: Applied our changes, regenerated files, added missing files and functions. This time with a three way merge. bugref:10890
|
-
Property svn:eol-style
set to
native
-
Property svn:keywords
set to
Author Date Id Revision
|
File size:
902 bytes
|
Line | |
---|
1 | /*
|
---|
2 | * {- join("\n * ", @autowarntext) -}
|
---|
3 | *
|
---|
4 | * Copyright 2020-2024 The OpenSSL Project Authors. All Rights Reserved.
|
---|
5 | *
|
---|
6 | * Licensed under the Apache License 2.0 (the "License"). You may not use
|
---|
7 | * this file except in compliance with the License. You can obtain a copy
|
---|
8 | * in the file LICENSE in the source distribution or at
|
---|
9 | * https://www.openssl.org/source/license.html
|
---|
10 | */
|
---|
11 |
|
---|
12 | #ifndef OPENSSL_FIPSKEY_H
|
---|
13 | # define OPENSSL_FIPSKEY_H
|
---|
14 | # pragma once
|
---|
15 |
|
---|
16 | # ifdef __cplusplus
|
---|
17 | extern "C" {
|
---|
18 | # endif
|
---|
19 |
|
---|
20 | /*
|
---|
21 | * The FIPS validation HMAC key, usable as an array initializer.
|
---|
22 | */
|
---|
23 | #define FIPS_KEY_ELEMENTS \
|
---|
24 | {- join(', ', map { "0x$_" } unpack("(A2)*", $config{FIPSKEY})) -}
|
---|
25 |
|
---|
26 | /*
|
---|
27 | * The FIPS validation key, as a string.
|
---|
28 | */
|
---|
29 | #define FIPS_KEY_STRING "{- $config{FIPSKEY} -}"
|
---|
30 |
|
---|
31 | /*
|
---|
32 | * The FIPS provider vendor name, as a string.
|
---|
33 | */
|
---|
34 | #define FIPS_VENDOR "{- $config{FIPS_VENDOR} -}"
|
---|
35 |
|
---|
36 | # ifdef __cplusplus
|
---|
37 | }
|
---|
38 | # endif
|
---|
39 |
|
---|
40 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.