aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ssl/src/ssl_internal.hrl
diff options
context:
space:
mode:
authorIngela Anderton Andin <[email protected]>2019-02-18 16:59:41 +0100
committerIngela Anderton Andin <[email protected]>2019-02-18 17:35:07 +0100
commit90885d08ccfc2cad4ba87f5a85decc979de56702 (patch)
tree8ec8bbb822610bd98e3a9e933e2dd8873f8e7f7e /lib/ssl/src/ssl_internal.hrl
parentfde162310c3fab0fea924b005a383129acf569c9 (diff)
downloadotp-90885d08ccfc2cad4ba87f5a85decc979de56702.tar.gz
otp-90885d08ccfc2cad4ba87f5a85decc979de56702.tar.bz2
otp-90885d08ccfc2cad4ba87f5a85decc979de56702.zip
ssl: Correct merge commit thanks to dialyzer
Also make a weaker spec in ssl_internal.hrl for now as it creates a conflict between error handling and dialyzer warnings.
Diffstat (limited to 'lib/ssl/src/ssl_internal.hrl')
-rw-r--r--lib/ssl/src/ssl_internal.hrl3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/ssl/src/ssl_internal.hrl b/lib/ssl/src/ssl_internal.hrl
index 085a045169..3d117a655f 100644
--- a/lib/ssl/src/ssl_internal.hrl
+++ b/lib/ssl/src/ssl_internal.hrl
@@ -122,7 +122,8 @@
cert :: public_key:der_encoded() | secret_printout() | 'undefined',
keyfile :: binary(),
key :: {'RSAPrivateKey' | 'DSAPrivateKey' | 'ECPrivateKey' | 'PrivateKeyInfo',
- public_key:der_encoded()} | ssl:key() | secret_printout() | 'undefined',
+ public_key:der_encoded()} | map() %%map() -> ssl:key() how to handle dialyzer?
+ | secret_printout() | 'undefined',
password :: string() | secret_printout() | 'undefined',
cacerts :: [public_key:der_encoded()] | secret_printout() | 'undefined',
cacertfile :: binary(),