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
767200b2
Commit
767200b2
authored
Aug 07, 2019
by
YannGarcia
Browse files
Fix Issue: Errors because of removing trailing 0A and 0D bytes from HTTP responses
parent
4c79dd3f
Changes
2
Show whitespace changes
Inline
Side-by-side
ttcn/Pki/LibItsPki_Functions.ttcn
View file @
767200b2
...
...
@@ -1574,7 +1574,8 @@ module LibItsPki_Functions {
m_publicKeys
(
m_publicVerificationKey_ecdsaNistP256
(
v_eccP256_curve_point
)
),
m_certificateSubjectAttributes
(
m_certificateSubjectAttributes_id_name
(
oct2char
(
PICS_ITS_S_CANONICAL_ID
),
{
// ETSI TS 102 965 Table A.1: ETSI ITS standardized ITS-AIDs
valueof
(
m_appPermissions
(
c_its_aid_SCR
,
{
bitmapSsp
:=
'
01
C0
'
O
}))
},
...
...
ttcn/Pki/LibItsPki_Templates.ttcn
View file @
767200b2
...
...
@@ -258,7 +258,7 @@ module LibItsPki_Templates {
encryptionKey
:=
p_encryptionKey
}
// End of template mw_publicKeys
template
(
omit
)
CertificateSubjectAttributes
m_certificateSubjectAttributes
(
template
(
omit
)
CertificateSubjectAttributes
m_certificateSubjectAttributes
_id_none
(
in
template
(
value
)
SequenceOfPsidSsp
p_appPermissions
,
in
template
(
omit
)
ValidityPeriod
p_validityPeriod
:=
omit
,
in
template
(
omit
)
GeographicRegion
p_region
:=
omit
,
...
...
@@ -270,7 +270,22 @@ module LibItsPki_Templates {
assuranceLevel
:=
p_assuranceLevel
,
appPermissions
:=
p_appPermissions
,
certIssuePermissions
:=
omit
}
// End of template m_certificateSubjectAttributes
}
// End of template m_certificateSubjectAttributes_id_none
template
(
omit
)
CertificateSubjectAttributes
m_certificateSubjectAttributes_id_name
(
in
template
(
value
)
Hostname
p_name
,
in
template
(
value
)
SequenceOfPsidSsp
p_appPermissions
,
in
template
(
omit
)
ValidityPeriod
p_validityPeriod
:=
omit
,
in
template
(
omit
)
GeographicRegion
p_region
:=
omit
,
in
template
(
omit
)
SubjectAssurance
p_assuranceLevel
:=
omit
)
:=
{
id
:=
{
name
:=
p_name
},
validityPeriod
:=
p_validityPeriod
,
region
:=
p_region
,
assuranceLevel
:=
p_assuranceLevel
,
appPermissions
:=
p_appPermissions
,
certIssuePermissions
:=
omit
}
// End of template m_certificateSubjectAttributes_id_name
template
(
value
)
InnerEcResponse
m_innerEcResponse_ok
(
in
template
(
value
)
Oct16
p_requestHash
,
...
...
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