File tree 5 files changed +2
-372
lines changed
test/sanitizer_common/TestCases/FreeBSD
5 files changed +2
-372
lines changed Original file line number Diff line number Diff line change 552
552
#define SANITIZER_INTERCEPT_SHA1 SI_NETBSD
553
553
#define SANITIZER_INTERCEPT_MD4 SI_NETBSD
554
554
#define SANITIZER_INTERCEPT_RMD160 SI_NETBSD
555
- #define SANITIZER_INTERCEPT_MD5 ( SI_NETBSD || SI_FREEBSD)
555
+ #define SANITIZER_INTERCEPT_MD5 SI_NETBSD
556
556
#define SANITIZER_INTERCEPT_FSEEK (SI_NETBSD || SI_FREEBSD)
557
557
#define SANITIZER_INTERCEPT_MD2 SI_NETBSD
558
- #define SANITIZER_INTERCEPT_SHA2 ( SI_NETBSD || SI_FREEBSD)
558
+ #define SANITIZER_INTERCEPT_SHA2 SI_NETBSD
559
559
#define SANITIZER_INTERCEPT_CDB SI_NETBSD
560
560
#define SANITIZER_INTERCEPT_VIS (SI_NETBSD || SI_FREEBSD)
561
561
#define SANITIZER_INTERCEPT_POPEN SI_POSIX
Original file line number Diff line number Diff line change 69
69
#include < semaphore.h>
70
70
#include < signal.h>
71
71
#include < stddef.h>
72
- #include < md5.h>
73
- #include < sha224.h>
74
- #include < sha256.h>
75
- #include < sha384.h>
76
- #include < sha512.h>
77
72
#include < stdio.h>
78
73
#include < stringlist.h>
79
74
#include < term.h>
@@ -366,22 +361,6 @@ const int si_SEGV_MAPERR = SEGV_MAPERR;
366
361
const int si_SEGV_ACCERR = SEGV_ACCERR;
367
362
const int unvis_valid = UNVIS_VALID;
368
363
const int unvis_validpush = UNVIS_VALIDPUSH;
369
-
370
- const unsigned MD5_CTX_sz = sizeof (MD5_CTX);
371
- const unsigned MD5_return_length = MD5_DIGEST_STRING_LENGTH;
372
-
373
- #define SHA2_CONST (LEN ) \
374
- const unsigned SHA##LEN##_CTX_sz = sizeof (SHA##LEN##_CTX); \
375
- const unsigned SHA##LEN##_return_length = SHA##LEN##_DIGEST_STRING_LENGTH; \
376
- const unsigned SHA##LEN##_block_length = SHA##LEN##_BLOCK_LENGTH; \
377
- const unsigned SHA##LEN##_digest_length = SHA##LEN##_DIGEST_LENGTH
378
-
379
- SHA2_CONST (224 );
380
- SHA2_CONST (256 );
381
- SHA2_CONST (384 );
382
- SHA2_CONST (512 );
383
-
384
- #undef SHA2_CONST
385
364
} // namespace __sanitizer
386
365
387
366
using namespace __sanitizer ;
Original file line number Diff line number Diff line change @@ -647,22 +647,6 @@ extern unsigned IOCTL_KDSKBMODE;
647
647
extern const int si_SEGV_MAPERR;
648
648
extern const int si_SEGV_ACCERR;
649
649
650
- extern const unsigned MD5_CTX_sz;
651
- extern const unsigned MD5_return_length;
652
-
653
- #define SHA2_EXTERN (LEN ) \
654
- extern const unsigned SHA##LEN##_CTX_sz; \
655
- extern const unsigned SHA##LEN##_return_length; \
656
- extern const unsigned SHA##LEN##_block_length; \
657
- extern const unsigned SHA##LEN##_digest_length
658
-
659
- SHA2_EXTERN (224 );
660
- SHA2_EXTERN (256 );
661
- SHA2_EXTERN (384 );
662
- SHA2_EXTERN (512 );
663
-
664
- #undef SHA2_EXTERN
665
-
666
650
struct __sanitizer_cap_rights {
667
651
u64 cr_rights[2 ];
668
652
};
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments