File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed
regression/goto-cc-goto-analyzer/instrument_preconditions_locations Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change
1
+ // This file is highly reduced from some open source projects.
2
+ // The following four lines are adapted from the openssl library
3
+ // Full repository here:
4
+ // Exact file adapted from here: https://github.com/openssl/openssl/tree/master
5
+ // https://github.com/openssl/openssl/blob/master/crypto/evp/evp_local.h
1
6
struct evp_md_ctx_st
2
7
{
3
8
const void * digest ;
4
9
};
10
+ // The rest of this file is adapted from, various files in the
11
+ // AWS s2n library. Full repository and licence information is
12
+ // available here: https://github.com/aws/s2n-tls
13
+ // Note that this is a highly cut down synthesis of many files
14
+ // with most of their content and structure reduced.
5
15
struct s2n_evp_digest
6
16
{
7
17
const void * ctx ;
Original file line number Diff line number Diff line change
1
+ // This is highly adapted from the AWS s2n library.
2
+ // Full repository and information here: https://github.com/aws/s2n-tls
1
3
void s2n_hash_free_harness ()
2
4
{
3
5
}
You can’t perform that action at this time.
0 commit comments