summaryrefslogtreecommitdiff
path: root/tests/openssl.supp
blob: 78f5b8350762f45f5a54b79a68c9db35b2134fef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
##----------------------------------------------------------------------##
#
# Errors to suppress by default with OpenSSL
#
# Format of this file is:
# {
#     name_of_suppression
#     kind: one of Param Value1 Value2 Value4 Value8
#                   Free Addr1 Addr2 Addr4 Addr8
#                   Cond (previously known as Value0)
#     (if Param: name of system call param, if Free: name of free-ing fn)
#     caller0 name, or /name/of/so/file.so
#     caller1 name, or ditto
#     (optionally: caller2 name)
#     (optionally: caller3 name)
#  }

##----------------------------------------------------------------------##
{
   OpenSSL BN_*(Cond)
   Memcheck:Cond
   fun:BN_*
}

{
   OpenSSL BN_*(Value4)
   Memcheck:Value4
   fun:BN_*
}

{
   OpenSSL bn_*(Cond)
   Memcheck:Cond
   fun:bn_*
}

{
   OpenSSL bn_*(Value4)
   Memcheck:Value4
   fun:bn_*
}

{
   OpenSSL AES_encrypt(Value4)
   Memcheck:Value4
   fun:AES_encrypt
   fun:AES_cbc_encrypt
}

{
   OpenSSL DES_encrypt*(Value4)
   Memcheck:Value4
   fun:DES_encrypt2
   fun:DES_encrypt3
}

{
   OpenSSL RSA_padding_add_PKCS1_type_2(Cond)
   Memcheck:Cond
   fun:RSA_padding_add_PKCS1_type_2
   fun:RSA_eay_public_encrypt
}