Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TTCN-3 Libraries
LibIts
Commits
debeafe4
Commit
debeafe4
authored
Aug 14, 2018
by
garciay
Browse files
Add missing parameter
parent
5dde00a3
Changes
1
Hide whitespace changes
Inline
Side-by-side
ttcn/Security/LibItsSecurity_Functions.ttcn
View file @
debeafe4
...
...
@@ -2494,7 +2494,7 @@ module LibItsSecurity_Functions {
* @return true on success, false otherwise
*/
external
function
fx_loadCertificates
(
in
charstring
p_rootDirectory
,
in
charstring
p_configId
)
return
boolean
;
external
function
fx_store_certificate
(
in
charstring
p_cert_id
,
in
octetstring
p_cert
,
in
octetstring
p_private_key
,
in
octetstring
p_public_key_x
,
in
octetstring
p_public_key_y
,
in
octetstring
p_public_key_compressed
,
in
integer
p_public_key_compressed_mode
,
in
octetstring
p_hashid8
,
in
octetstring
p_issuer
,
in
template
(
omit
)
octetstring
p_private_enc_key
,
in
template
(
omit
)
octetstring
p_public_enc_key_x
,
in
template
(
omit
)
octetstring
p_public_enc_key_y
,
in
template
(
omit
)
octetstring
p_public_enc_compressed_key
,
in
template
(
omit
)
integer
p_public_enc_key_compressed_mode
)
return
boolean
;
external
function
fx_store_certificate
(
in
charstring
p_cert_id
,
in
octetstring
p_cert
,
in
octetstring
p_private_key
,
in
octetstring
p_public_key_x
,
in
octetstring
p_public_key_y
,
in
octetstring
p_public_key_compressed
,
in
integer
p_public_key_compressed_mode
,
in
octetstring
p_hash
,
in
octetstring
p_hashid8
,
in
octetstring
p_issuer
,
in
template
(
omit
)
octetstring
p_private_enc_key
,
in
template
(
omit
)
octetstring
p_public_enc_key_x
,
in
template
(
omit
)
octetstring
p_public_enc_key_y
,
in
template
(
omit
)
octetstring
p_public_enc_compressed_key
,
in
template
(
omit
)
integer
p_public_enc_key_compressed_mode
)
return
boolean
;
/**
* @desc Unload from memory cache the certificates
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment