File tree Expand file tree Collapse file tree 5 files changed +23
-0
lines changed Expand file tree Collapse file tree 5 files changed +23
-0
lines changed Original file line number Diff line number Diff line change @@ -591,6 +591,9 @@ void dds_domain_examples()
591
591
pqos.properties ().properties ().emplace_back (
592
592
" dds.sec.auth.builtin.PKI-DH.preferred_key_agreement" ,
593
593
" ECDH" );
594
+ pqos.properties ().properties ().emplace_back (
595
+ " dds.sec.auth.builtin.PKI-DH.transmit_algorithms_as_legacy" ,
596
+ " true" );
594
597
// !--
595
598
}
596
599
{
@@ -626,6 +629,9 @@ void dds_domain_examples()
626
629
pqos.properties ().properties ().emplace_back (
627
630
" dds.sec.access.builtin.Access-Permissions.permissions" ,
628
631
" file://certs/permissions.smime" );
632
+ pqos.properties ().properties ().emplace_back (
633
+ " dds.sec.access.builtin.Access-Permissions.transmit_algorithms_as_legacy" ,
634
+ " true" );
629
635
// !--
630
636
}
631
637
{
Original file line number Diff line number Diff line change 2645
2645
<name >dds.sec.auth.builtin.PKI-DH.preferred_key_agreement</name >
2646
2646
<value >ECDH</value >
2647
2647
</property >
2648
+ <property >
2649
+ <name >dds.sec.auth.builtin.PKI-DH.transmit_algorithms_as_legacy</name >
2650
+ <value >true</value >
2651
+ </property >
2648
2652
</properties >
2649
2653
</propertiesPolicy >
2650
2654
</rtps >
2697
2701
<name >dds.sec.access.builtin.Access-Permissions.permissions</name >
2698
2702
<value >file://permissions.smime</value >
2699
2703
</property >
2704
+ <property >
2705
+ <name >dds.sec.access.builtin.Access-Permissions.transmit_algorithms_as_legacy</name >
2706
+ <value >true</value >
2707
+ </property >
2700
2708
</properties >
2701
2709
</propertiesPolicy >
2702
2710
</rtps >
Original file line number Diff line number Diff line change @@ -49,6 +49,9 @@ The following table outlines the properties used for the :ref:`DDS\:Auth\:PKI-DH
49
49
b) ``ECDH ``, ``ECDH+prime256v1-CEUM `` for Elliptic Curve Diffie-Hellman Ephemeral with the NIST P-256 curve. |br |
50
50
c) ``AUTO `` for selecting the key agreement based on the signature algorithm in the Identity CA's certificate. |br |
51
51
Will default to ``DH `` if the property is not present.
52
+ * - ``transmit_algorithms_as_legacy `` *(optional) *
53
+ - Whether to transmit algorithm identifiers in non-standard legacy format. |br |
54
+ Will default to ``true `` if the property is not present.
52
55
53
56
.. note ::
54
57
All properties listed above have the ``dds.sec.auth.builtin.PKI-DH." `` prefix.
Original file line number Diff line number Diff line change @@ -55,6 +55,9 @@ The following table outlines the properties used for the DDS\:Access\:Permission
55
55
* - permissions
56
56
- URI to the Participant permissions document signed by the |br | Permissions CA in S/MIME format. |br |
57
57
Supported URI schemes: file.
58
+ * - transmit_algorithms_as_legacy *(optional) *
59
+ - Whether to transmit algorithm identifiers in non-standard legacy format. |br |
60
+ Will default to ``true `` if the property is not present.
58
61
59
62
.. note ::
60
63
All listed properties have "dds.sec.access.builtin.Access-Permissions." prefix.
Original file line number Diff line number Diff line change @@ -64,6 +64,9 @@ The following table outlines the properties used for the DDS:\Auth\:PKI-DH plugi
64
64
b) ``ECDH ``, ``ECDH+prime256v1-CEUM `` for Elliptic Curve Diffie-Hellman Ephemeral with the NIST P-256 curve. |br |
65
65
c) ``AUTO `` for selecting the key agreement based on the signature algorithm in the Identity CA's certificate. |br |
66
66
Will default to ``DH `` if the property is not present.
67
+ * - transmit_algorithms_as_legacy *(optional) *
68
+ - Whether to transmit algorithm identifiers in non-standard legacy format. |br |
69
+ Will default to ``true `` if the property is not present.
67
70
68
71
.. note ::
69
72
All listed properties have "dds.sec.auth.builtin.PKI-DH." prefix.
You can’t perform that action at this time.
0 commit comments