blob: c4bab5b9b39c5ce599884a8e0dea81a7dc1f59c0 [file] [log] [blame]
romanc1d2b092023-02-02 08:58:27 +01001module iana-ssh-key-exchange-algs {
2 yang-version 1.1;
3 namespace "urn:ietf:params:xml:ns:yang:iana-ssh-key-exchange-algs";
4 prefix sshkea;
5
6 organization
7 "Internet Assigned Numbers Authority (IANA)";
8
9 contact
10 "Postal: ICANN
11 12025 Waterfront Drive, Suite 300
12 Los Angeles, CA 90094-2536
13 United States of America
14 Tel: +1 310 301 5800
15 Email: iana@iana.org";
16
17 description
18 "This module defines identities for the key exchange algorithms
19 defined in the 'Key Exchange Method Names' sub-registry of the
20 'Secure Shell (SSH) Protocol Parameters' registry maintained
21 by IANA.
22
23 Copyright (c) 2022 IETF Trust and the persons identified
24 as authors of the code. All rights reserved.
25
26 Redistribution and use in source and binary forms, with
27 or without modification, is permitted pursuant to, and
28 subject to the license terms contained in, the Revised
29 BSD License set forth in Section 4.c of the IETF Trust's
30 Legal Provisions Relating to IETF Documents
31 (https://trustee.ietf.org/license-info).
32
33 The initial version of this YANG module is part of RFC EEEE
34 (https://www.rfc-editor.org/info/rfcEEEE); see the RFC
35 itself for full legal notices.";
36
37 revision 2022-06-16 {
38 description
39 "Updated to reflect contents of the key exchange algorithms
40 registry on June 16, 2022.";
41 }
42
43 revision 2021-06-01 {
44 description
45 "Initial version";
46 reference
47 "RFC EEEE: YANG Groupings for SSH Clients and SSH Servers";
48 }
49
50 // Typedefs
51
52 typedef key-exchange-algorithm-ref {
53 type identityref {
54 base "key-exchange-alg-base";
55 }
56 description
57 "A reference to a SSH key exchange algorithm identifier.";
58 }
59
60 // Identities
61
62 identity key-exchange-alg-base {
63 description
64 "Base identity used to identify key exchange algorithms.";
65 }
66
67 identity diffie-hellman-group-exchange-sha1 {
68 base key-exchange-alg-base;
69 description
70 "DIFFIE-HELLMAN-GROUP-EXCHANGE-SHA1";
71 reference
72 "RFC 4419:
73 Diffie-Hellman Group Exchange for the
74 Secure Shell (SSH) Transport Layer Protocol";
75 }
76
77 identity diffie-hellman-group-exchange-sha256 {
78 base key-exchange-alg-base;
79 description
80 "DIFFIE-HELLMAN-GROUP-EXCHANGE-SHA256";
81 reference
82 "RFC 4419:
83 Diffie-Hellman Group Exchange for the
84 Secure Shell (SSH) Transport Layer Protocol";
85 }
86
87 identity diffie-hellman-group1-sha1 {
88 base key-exchange-alg-base;
89 description
90 "DIFFIE-HELLMAN-GROUP1-SHA1";
91 reference
92 "RFC 4253:
93 The Secure Shell (SSH) Transport Layer Protocol";
94 }
95
96 identity diffie-hellman-group14-sha1 {
97 base key-exchange-alg-base;
98 description
99 "DIFFIE-HELLMAN-GROUP14-SHA1";
100 reference
101 "RFC 4253:
102 The Secure Shell (SSH) Transport Layer Protocol";
103 }
104
105 identity diffie-hellman-group14-sha256 {
106 base key-exchange-alg-base;
107 description
108 "DIFFIE-HELLMAN-GROUP14-SHA256";
109 reference
110 "RFC 8268:
111 More Modular Exponentiation (MODP) Diffie-Hellman (DH)
112 Key Exchange (KEX) Groups for Secure Shell (SSH)";
113 }
114
115 identity diffie-hellman-group15-sha512 {
116 base key-exchange-alg-base;
117 description
118 "DIFFIE-HELLMAN-GROUP15-SHA512";
119 reference
120 "RFC 8268:
121 More Modular Exponentiation (MODP) Diffie-Hellman (DH)
122 Key Exchange (KEX) Groups for Secure Shell (SSH)";
123 }
124
125 identity diffie-hellman-group16-sha512 {
126 base key-exchange-alg-base;
127 description
128 "DIFFIE-HELLMAN-GROUP16-SHA512";
129 reference
130 "RFC 8268:
131 More Modular Exponentiation (MODP) Diffie-Hellman (DH)
132 Key Exchange (KEX) Groups for Secure Shell (SSH)";
133 }
134
135 identity diffie-hellman-group17-sha512 {
136 base key-exchange-alg-base;
137 description
138 "DIFFIE-HELLMAN-GROUP17-SHA512";
139 reference
140 "RFC 8268:
141 More Modular Exponentiation (MODP) Diffie-Hellman (DH)
142 Key Exchange (KEX) Groups for Secure Shell (SSH)";
143 }
144
145 identity diffie-hellman-group18-sha512 {
146 base key-exchange-alg-base;
147 description
148 "DIFFIE-HELLMAN-GROUP18-SHA512";
149 reference
150 "RFC 8268:
151 More Modular Exponentiation (MODP) Diffie-Hellman (DH)
152 Key Exchange (KEX) Groups for Secure Shell (SSH)";
153 }
154
155 identity ecdh-sha2-nistp256 {
156 base key-exchange-alg-base;
157 description
158 "ECDH-SHA2-NISTP256 (secp256r1)";
159 reference
160 "RFC 5656:
161 Elliptic Curve Algorithm Integration in the
162 Secure Shell Transport Layer";
163 }
164
165 identity ecdh-sha2-nistp384 {
166 base key-exchange-alg-base;
167 description
168 "ECDH-SHA2-NISTP384 (secp384r1)";
169 reference
170 "RFC 5656:
171 Elliptic Curve Algorithm Integration in the
172 Secure Shell Transport Layer";
173 }
174
175 identity ecdh-sha2-nistp521 {
176 base key-exchange-alg-base;
177 description
178 "ECDH-SHA2-NISTP521 (secp521r1)";
179 reference
180 "RFC 5656:
181 Elliptic Curve Algorithm Integration in the
182 Secure Shell Transport Layer";
183 }
184
185 identity ecdh-sha2-1.3.132.0.1 {
186 base key-exchange-alg-base;
187 description
188 "ECDH-SHA2-1.3.132.0.1 (nistk163, sect163k1)";
189 reference
190 "RFC 5656:
191 Elliptic Curve Algorithm Integration in the
192 Secure Shell Transport Layer";
193 }
194
195 identity ecdh-sha2-1.2.840.10045.3.1.1 {
196 base key-exchange-alg-base;
197 description
198 "ECDH-SHA2-1.2.840.10045.3.1.1 (nistp192, secp192r1)";
199 reference
200 "RFC 5656:
201 Elliptic Curve Algorithm Integration in the
202 Secure Shell Transport Layer";
203 }
204
205 identity ecdh-sha2-1.3.132.0.33 {
206 base key-exchange-alg-base;
207 description
208 "ECDH-SHA2-1.3.132.0.33 (nistp224, secp224r1)";
209 reference
210 "RFC 5656:
211 Elliptic Curve Algorithm Integration in the
212 Secure Shell Transport Layer";
213 }
214
215 identity ecdh-sha2-1.3.132.0.26 {
216 base key-exchange-alg-base;
217 description
218 "ECDH-SHA2-1.3.132.0.26 (nistk233, sect233k1)";
219 reference
220 "RFC 5656:
221 Elliptic Curve Algorithm Integration in the
222 Secure Shell Transport Layer";
223 }
224
225 identity ecdh-sha2-1.3.132.0.27 {
226 base key-exchange-alg-base;
227 description
228 "ECDH-SHA2-1.3.132.0.27 (nistb233, sect233r1)";
229 reference
230 "RFC 5656:
231 Elliptic Curve Algorithm Integration in the
232 Secure Shell Transport Layer";
233 }
234
235 identity ecdh-sha2-1.3.132.0.16 {
236 base key-exchange-alg-base;
237 description
238 "ECDH-SHA2-1.3.132.0.16 (nistk283, sect283k1)";
239 reference
240 "RFC 5656:
241 Elliptic Curve Algorithm Integration in the
242 Secure Shell Transport Layer";
243 }
244
245 identity ecdh-sha2-1.3.132.0.36 {
246 base key-exchange-alg-base;
247 description
248 "ECDH-SHA2-1.3.132.0.36 (nistk409, sect409k1)";
249 reference
250 "RFC 5656:
251 Elliptic Curve Algorithm Integration in the
252 Secure Shell Transport Layer";
253 }
254
255 identity ecdh-sha2-1.3.132.0.37 {
256 base key-exchange-alg-base;
257 description
258 "ECDH-SHA2-1.3.132.0.37 (nistb409, sect409r1)";
259 reference
260 "RFC 5656:
261 Elliptic Curve Algorithm Integration in the
262 Secure Shell Transport Layer";
263 }
264
265 identity ecdh-sha2-1.3.132.0.38 {
266 base key-exchange-alg-base;
267 description
268 "ECDH-SHA2-1.3.132.0.38 (nistt571, sect571k1)";
269 reference
270 "RFC 5656:
271 Elliptic Curve Algorithm Integration in the
272 Secure Shell Transport Layer";
273 }
274
275 identity ecmqv-sha2 {
276 base key-exchange-alg-base;
277 description
278 "ECMQV-SHA2";
279 reference
280 "RFC 5656:
281 Elliptic Curve Algorithm Integration in the
282 Secure Shell Transport Layer";
283 }
284
285 identity gss-group1-sha1-nistp256 {
286 base key-exchange-alg-base;
287 status deprecated;
288 description
289 "GSS-GROUP1-SHA1-NISTP256 (secp256r1)";
290 reference
291 "RFC 8732:
292 Generic Security Service Application Program Interface
293 (GSS-API) Key Exchange with SHA-2";
294 }
295
296 identity gss-group1-sha1-nistp384 {
297 base key-exchange-alg-base;
298 status deprecated;
299 description
300 "GSS-GROUP1-SHA1-NISTP384 (secp384r1)";
301 reference
302 "RFC 8732:
303 Generic Security Service Application Program Interface
304 (GSS-API) Key Exchange with SHA-2";
305 }
306
307 identity gss-group1-sha1-nistp521 {
308 base key-exchange-alg-base;
309 status deprecated;
310 description
311 "GSS-GROUP1-SHA1-NISTP521 (secp521r1)";
312 reference
313 "RFC 8732:
314 Generic Security Service Application Program Interface
315 (GSS-API) Key Exchange with SHA-2";
316 }
317
318 identity gss-group1-sha1-1.3.132.0.1 {
319 base key-exchange-alg-base;
320 status deprecated;
321 description
322 "GSS-GROUP1-SHA1-1.3.132.0.1 (nistk163, sect163k1)";
323 reference
324 "RFC 8732:
325 Generic Security Service Application Program Interface
326 (GSS-API) Key Exchange with SHA-2";
327 }
328
329 identity gss-group1-sha1-1.2.840.10045.3.1.1 {
330 base key-exchange-alg-base;
331 status deprecated;
332 description
333 "GSS-GROUP1-SHA1-1.2.840.10045.3.1.1 (nistp192, secp192r1)";
334 reference
335 "RFC 8732:
336 Generic Security Service Application Program Interface
337 (GSS-API) Key Exchange with SHA-2";
338 }
339
340 identity gss-group1-sha1-1.3.132.0.33 {
341 base key-exchange-alg-base;
342 status deprecated;
343 description
344 "GSS-GROUP1-SHA1-1.3.132.0.33 (nistp224, secp224r1)";
345 reference
346 "RFC 8732:
347 Generic Security Service Application Program Interface
348 (GSS-API) Key Exchange with SHA-2";
349 }
350
351 identity gss-group1-sha1-1.3.132.0.26 {
352 base key-exchange-alg-base;
353 status deprecated;
354 description
355 "GSS-GROUP1-SHA1-1.3.132.0.26 (nistk233, sect233k1)";
356 reference
357 "RFC 8732:
358 Generic Security Service Application Program Interface
359 (GSS-API) Key Exchange with SHA-2";
360 }
361
362 identity gss-group1-sha1-1.3.132.0.27 {
363 base key-exchange-alg-base;
364 status deprecated;
365 description
366 "GSS-GROUP1-SHA1-1.3.132.0.27 (nistb233, sect233r1)";
367 reference
368 "RFC 8732:
369 Generic Security Service Application Program Interface
370 (GSS-API) Key Exchange with SHA-2";
371 }
372
373 identity gss-group1-sha1-1.3.132.0.16 {
374 base key-exchange-alg-base;
375 status deprecated;
376 description
377 "GSS-GROUP1-SHA1-1.3.132.0.16 (nistk283, sect283k1)";
378 reference
379 "RFC 8732:
380 Generic Security Service Application Program Interface
381 (GSS-API) Key Exchange with SHA-2";
382 }
383
384 identity gss-group1-sha1-1.3.132.0.36 {
385 base key-exchange-alg-base;
386 status deprecated;
387 description
388 "GSS-GROUP1-SHA1-1.3.132.0.36 (nistk409, sect409k1)";
389 reference
390 "RFC 8732:
391 Generic Security Service Application Program Interface
392 (GSS-API) Key Exchange with SHA-2";
393 }
394
395 identity gss-group1-sha1-1.3.132.0.37 {
396 base key-exchange-alg-base;
397 status deprecated;
398 description
399 "GSS-GROUP1-SHA1-1.3.132.0.37 (nistb409, sect409r1)";
400 reference
401 "RFC 8732:
402 Generic Security Service Application Program Interface
403 (GSS-API) Key Exchange with SHA-2";
404 }
405
406 identity gss-group1-sha1-1.3.132.0.38 {
407 base key-exchange-alg-base;
408 status deprecated;
409 description
410 "GSS-GROUP1-SHA1-1.3.132.0.38 (nistt571, sect571k1)";
411 reference
412 "RFC 8732:
413 Generic Security Service Application Program Interface
414 (GSS-API) Key Exchange with SHA-2";
415 }
416
417 identity gss-group1-sha1-curve25519-sha256 {
418 base key-exchange-alg-base;
419 status deprecated;
420 description
421 "GSS-GROUP1-SHA1-CURVE25519-SHA256";
422 reference
423 "RFC 8732:
424 Generic Security Service Application Program Interface
425 (GSS-API) Key Exchange with SHA-2";
426 }
427
428 identity gss-group1-sha1-curve448-sha512 {
429 base key-exchange-alg-base;
430 status deprecated;
431 description
432 "GSS-GROUP1-SHA1-CURVE448-SHA512";
433 reference
434 "RFC 8732:
435 Generic Security Service Application Program Interface
436 (GSS-API) Key Exchange with SHA-2";
437 }
438
439 identity gss-group14-sha1-nistp256 {
440 base key-exchange-alg-base;
441 status deprecated;
442 description
443 "GSS-GROUP14-SHA1-NISTP256 (secp256r1)";
444 reference
445 "RFC 8732:
446 Generic Security Service Application Program Interface
447 (GSS-API) Key Exchange with SHA-2";
448 }
449
450 identity gss-group14-sha1-nistp384 {
451 base key-exchange-alg-base;
452 status deprecated;
453 description
454 "GSS-GROUP14-SHA1-NISTP384 (secp384r1)";
455 reference
456 "RFC 8732:
457 Generic Security Service Application Program Interface
458 (GSS-API) Key Exchange with SHA-2";
459 }
460
461 identity gss-group14-sha1-nistp521 {
462 base key-exchange-alg-base;
463 status deprecated;
464 description
465 "GSS-GROUP14-SHA1-NISTP521 (secp521r1)";
466 reference
467 "RFC 8732:
468 Generic Security Service Application Program Interface
469 (GSS-API) Key Exchange with SHA-2";
470 }
471
472 identity gss-group14-sha1-1.3.132.0.1 {
473 base key-exchange-alg-base;
474 status deprecated;
475 description
476 "GSS-GROUP14-SHA1-1.3.132.0.1 (nistk163, sect163k1)";
477 reference
478 "RFC 8732:
479 Generic Security Service Application Program Interface
480 (GSS-API) Key Exchange with SHA-2";
481 }
482
483 identity gss-group14-sha1-1.2.840.10045.3.1.1 {
484 base key-exchange-alg-base;
485 status deprecated;
486 description
487 "GSS-GROUP14-SHA1-1.2.840.10045.3.1.1 (nistp192, secp192r1)";
488 reference
489 "RFC 8732:
490 Generic Security Service Application Program Interface
491 (GSS-API) Key Exchange with SHA-2";
492 }
493
494 identity gss-group14-sha1-1.3.132.0.33 {
495 base key-exchange-alg-base;
496 status deprecated;
497 description
498 "GSS-GROUP14-SHA1-1.3.132.0.33 (nistp224, secp224r1)";
499 reference
500 "RFC 8732:
501 Generic Security Service Application Program Interface
502 (GSS-API) Key Exchange with SHA-2";
503 }
504
505 identity gss-group14-sha1-1.3.132.0.26 {
506 base key-exchange-alg-base;
507 status deprecated;
508 description
509 "GSS-GROUP14-SHA1-1.3.132.0.26 (nistk233, sect233k1)";
510 reference
511 "RFC 8732:
512 Generic Security Service Application Program Interface
513 (GSS-API) Key Exchange with SHA-2";
514 }
515
516 identity gss-group14-sha1-1.3.132.0.27 {
517 base key-exchange-alg-base;
518 status deprecated;
519 description
520 "GSS-GROUP14-SHA1-1.3.132.0.27 (nistb233, sect233r1)";
521 reference
522 "RFC 8732:
523 Generic Security Service Application Program Interface
524 (GSS-API) Key Exchange with SHA-2";
525 }
526
527 identity gss-group14-sha1-1.3.132.0.16 {
528 base key-exchange-alg-base;
529 status deprecated;
530 description
531 "GSS-GROUP14-SHA1-1.3.132.0.16 (nistk283, sect283k1)";
532 reference
533 "RFC 8732:
534 Generic Security Service Application Program Interface
535 (GSS-API) Key Exchange with SHA-2";
536 }
537 identity gss-group14-sha1-1.3.132.0.36 {
538 base key-exchange-alg-base;
539 status deprecated;
540 description
541 "GSS-GROUP14-SHA1-1.3.132.0.36 (nistk409, sect409k1)";
542 reference
543 "RFC 8732:
544 Generic Security Service Application Program Interface
545 (GSS-API) Key Exchange with SHA-2";
546 }
547
548 identity gss-group14-sha1-1.3.132.0.37 {
549 base key-exchange-alg-base;
550 status deprecated;
551 description
552 "GSS-GROUP14-SHA1-1.3.132.0.37 (nistb409, sect409r1)";
553 reference
554 "RFC 8732:
555 Generic Security Service Application Program Interface
556 (GSS-API) Key Exchange with SHA-2";
557 }
558
559 identity gss-group14-sha1-1.3.132.0.38 {
560 base key-exchange-alg-base;
561 status deprecated;
562 description
563 "GSS-GROUP14-SHA1-1.3.132.0.38 (nistt571, sect571k1)";
564 reference
565 "RFC 8732:
566 Generic Security Service Application Program Interface
567 (GSS-API) Key Exchange with SHA-2";
568 }
569
570 identity gss-group14-sha1-curve25519-sha256 {
571 base key-exchange-alg-base;
572 status deprecated;
573 description
574 "GSS-GROUP14-SHA1-CURVE25519-SHA256";
575 reference
576 "RFC 8732:
577 Generic Security Service Application Program Interface
578 (GSS-API) Key Exchange with SHA-2";
579 }
580
581 identity gss-group14-sha1-curve448-sha512 {
582 base key-exchange-alg-base;
583 status deprecated;
584 description
585 "GSS-GROUP14-SHA1-CURVE448-SHA512";
586 reference
587 "RFC 8732:
588 Generic Security Service Application Program Interface
589 (GSS-API) Key Exchange with SHA-2";
590 }
591
592 identity gss-gex-sha1-nistp256 {
593 base key-exchange-alg-base;
594 status deprecated;
595 description
596 "GSS-GEX-SHA1-NISTP256 (secp256r1)";
597 reference
598 "RFC 8732:
599 Generic Security Service Application Program Interface
600 (GSS-API) Key Exchange with SHA-2";
601 }
602
603 identity gss-gex-sha1-nistp384 {
604 base key-exchange-alg-base;
605 status deprecated;
606 description
607 "GSS-GEX-SHA1-NISTP384 (secp384r1)";
608 reference
609 "RFC 8732:
610 Generic Security Service Application Program Interface
611 (GSS-API) Key Exchange with SHA-2";
612 }
613
614 identity gss-gex-sha1-nistp521 {
615 base key-exchange-alg-base;
616 status deprecated;
617 description
618 "GSS-GEX-SHA1-NISTP521 (secp521r1)";
619 reference
620 "RFC 8732:
621 Generic Security Service Application Program Interface
622 (GSS-API) Key Exchange with SHA-2";
623 }
624
625 identity gss-gex-sha1-1.3.132.0.1 {
626 base key-exchange-alg-base;
627 status deprecated;
628 description
629 "GSS-GEX-SHA1-1.3.132.0.1 (nistk163, sect163k1)";
630 reference
631 "RFC 8732:
632 Generic Security Service Application Program Interface
633 (GSS-API) Key Exchange with SHA-2";
634 }
635
636 identity gss-gex-sha1-1.2.840.10045.3.1.1 {
637 base key-exchange-alg-base;
638 status deprecated;
639 description
640 "GSS-GEX-SHA1-1.2.840.10045.3.1.1 (nistp192, secp192r1)";
641 reference
642 "RFC 8732:
643 Generic Security Service Application Program Interface
644 (GSS-API) Key Exchange with SHA-2";
645 }
646
647 identity gss-gex-sha1-1.3.132.0.33 {
648 base key-exchange-alg-base;
649 status deprecated;
650 description
651 "GSS-GEX-SHA1-1.3.132.0.33 (nistp224, secp224r1)";
652 reference
653 "RFC 8732:
654 Generic Security Service Application Program Interface
655 (GSS-API) Key Exchange with SHA-2";
656 }
657
658 identity gss-gex-sha1-1.3.132.0.26 {
659 base key-exchange-alg-base;
660 status deprecated;
661 description
662 "GSS-GEX-SHA1-1.3.132.0.26 (nistk233, sect233k1)";
663 reference
664 "RFC 8732:
665 Generic Security Service Application Program Interface
666 (GSS-API) Key Exchange with SHA-2";
667 }
668
669 identity gss-gex-sha1-1.3.132.0.27 {
670 base key-exchange-alg-base;
671 status deprecated;
672 description
673 "GSS-GEX-SHA1-1.3.132.0.27 (nistb233, sect233r1)";
674 reference
675 "RFC 8732:
676 Generic Security Service Application Program Interface
677 (GSS-API) Key Exchange with SHA-2";
678 }
679
680 identity gss-gex-sha1-1.3.132.0.16 {
681 base key-exchange-alg-base;
682 status deprecated;
683 description
684 "GSS-GEX-SHA1-1.3.132.0.16 (nistk283, sect283k1)";
685 reference
686 "RFC 8732:
687 Generic Security Service Application Program Interface
688 (GSS-API) Key Exchange with SHA-2";
689 }
690
691 identity gss-gex-sha1-1.3.132.0.36 {
692 base key-exchange-alg-base;
693 status deprecated;
694 description
695 "GSS-GEX-SHA1-1.3.132.0.36 (nistk409, sect409k1)";
696 reference
697 "RFC 8732:
698 Generic Security Service Application Program Interface
699 (GSS-API) Key Exchange with SHA-2";
700 }
701
702 identity gss-gex-sha1-1.3.132.0.37 {
703 base key-exchange-alg-base;
704 status deprecated;
705 description
706 "GSS-GEX-SHA1-1.3.132.0.37 (nistb409, sect409r1)";
707 reference
708 "RFC 8732:
709 Generic Security Service Application Program Interface
710 (GSS-API) Key Exchange with SHA-2";
711 }
712
713 identity gss-gex-sha1-1.3.132.0.38 {
714 base key-exchange-alg-base;
715 status deprecated;
716 description
717 "GSS-GEX-SHA1-1.3.132.0.38 (nistt571, sect571k1)";
718 reference
719 "RFC 8732:
720 Generic Security Service Application Program Interface
721 (GSS-API) Key Exchange with SHA-2";
722 }
723
724 identity gss-gex-sha1-curve25519-sha256 {
725 base key-exchange-alg-base;
726 status deprecated;
727 description
728 "GSS-GEX-SHA1-CURVE25519-SHA256";
729 reference
730 "RFC 8732:
731 Generic Security Service Application Program Interface
732 (GSS-API) Key Exchange with SHA-2";
733 }
734
735 identity gss-gex-sha1-curve448-sha512 {
736 base key-exchange-alg-base;
737 status deprecated;
738 description
739 "GSS-GEX-SHA1-CURVE448-SHA512";
740 reference
741 "RFC 8732:
742 Generic Security Service Application Program Interface
743 (GSS-API) Key Exchange with SHA-2";
744 }
745
746 identity rsa1024-sha1 {
747 base key-exchange-alg-base;
748 status obsolete;
749 description
750 "RSA1024-SHA1";
751 reference
752 "RFC 4432:
753 RSA Key Exchange for the Secure Shell (SSH)
754 Transport Layer Protocol";
755 }
756
757 identity rsa2048-sha256 {
758 base key-exchange-alg-base;
759 description
760 "RSA2048-SHA256";
761 reference
762 "RFC 4432:
763 RSA Key Exchange for the Secure Shell (SSH)
764 Transport Layer Protocol";
765 }
766
767 identity ext-info-s {
768 base key-exchange-alg-base;
769 description
770 "EXT-INFO-S";
771 reference
772 "RFC 8308:
773 Extension Negotiation in the Secure Shell (SSH) Protocol";
774 }
775
776 identity ext-info-c {
777 base key-exchange-alg-base;
778 description
779 "EXT-INFO-C";
780 reference
781 "RFC 8308:
782 Extension Negotiation in the Secure Shell (SSH) Protocol";
783 }
784
785 identity gss-group14-sha256-nistp256 {
786 base key-exchange-alg-base;
787 description
788 "GSS-GROUP14-SHA256-NISTP256 (secp256r1)";
789 reference
790 "RFC 8732:
791 Generic Security Service Application Program Interface
792 (GSS-API) Key Exchange with SHA-2";
793 }
794
795 identity gss-group14-sha256-nistp384 {
796 base key-exchange-alg-base;
797 description
798 "GSS-GROUP14-SHA256-NISTP384 (secp384r1)";
799 reference
800 "RFC 8732:
801 Generic Security Service Application Program Interface
802 (GSS-API) Key Exchange with SHA-2";
803 }
804
805 identity gss-group14-sha256-nistp521 {
806 base key-exchange-alg-base;
807 description
808 "GSS-GROUP14-SHA256-NISTP521 (secp521r1)";
809 reference
810 "RFC 8732:
811 Generic Security Service Application Program Interface
812 (GSS-API) Key Exchange with SHA-2";
813 }
814
815 identity gss-group14-sha256-1.3.132.0.1 {
816 base key-exchange-alg-base;
817 description
818 "GSS-GROUP14-SHA256-1.3.132.0.1 (nistk163, sect163k1)";
819 reference
820 "RFC 8732:
821 Generic Security Service Application Program Interface
822 (GSS-API) Key Exchange with SHA-2";
823 }
824
825 identity gss-group14-sha256-1.2.840.10045.3.1.1 {
826 base key-exchange-alg-base;
827 description
828 "GSS-GROUP14-SHA256-1.2.840.10045.3.1.1 (nistp192, secp192r1)";
829 reference
830 "RFC 8732:
831 Generic Security Service Application Program Interface
832 (GSS-API) Key Exchange with SHA-2";
833 }
834
835 identity gss-group14-sha256-1.3.132.0.33 {
836 base key-exchange-alg-base;
837 description
838 "GSS-GROUP14-SHA256-1.3.132.0.33 (nistp224, secp224r1)";
839 reference
840 "RFC 8732:
841 Generic Security Service Application Program Interface
842 (GSS-API) Key Exchange with SHA-2";
843 }
844
845 identity gss-group14-sha256-1.3.132.0.26 {
846 base key-exchange-alg-base;
847 description
848 "GSS-GROUP14-SHA256-1.3.132.0.26 (nistk233, sect233k1)";
849 reference
850 "RFC 8732:
851 Generic Security Service Application Program Interface
852 (GSS-API) Key Exchange with SHA-2";
853 }
854
855 identity gss-group14-sha256-1.3.132.0.27 {
856 base key-exchange-alg-base;
857 description
858 "GSS-GROUP14-SHA256-1.3.132.0.27 (nistb233, sect233r1)";
859 reference
860 "RFC 8732:
861 Generic Security Service Application Program Interface
862 (GSS-API) Key Exchange with SHA-2";
863 }
864
865 identity gss-group14-sha256-1.3.132.0.16 {
866 base key-exchange-alg-base;
867 description
868 "GSS-GROUP14-SHA256-1.3.132.0.16 (nistk283, sect283k1)";
869 reference
870 "RFC 8732:
871 Generic Security Service Application Program Interface
872 (GSS-API) Key Exchange with SHA-2";
873 }
874
875 identity gss-group14-sha256-1.3.132.0.36 {
876 base key-exchange-alg-base;
877 description
878 "GSS-GROUP14-SHA256-1.3.132.0.36 (nistk409, sect409k1)";
879 reference
880 "RFC 8732:
881 Generic Security Service Application Program Interface
882 (GSS-API) Key Exchange with SHA-2";
883 }
884
885 identity gss-group14-sha256-1.3.132.0.37 {
886 base key-exchange-alg-base;
887 description
888 "GSS-GROUP14-SHA256-1.3.132.0.37 (nistb409, sect409r1)";
889 reference
890 "RFC 8732:
891 Generic Security Service Application Program Interface
892 (GSS-API) Key Exchange with SHA-2";
893 }
894
895 identity gss-group14-sha256-1.3.132.0.38 {
896 base key-exchange-alg-base;
897 description
898 "GSS-GROUP14-SHA256-1.3.132.0.38 (nistt571, sect571k1)";
899 reference
900 "RFC 8732:
901 Generic Security Service Application Program Interface
902 (GSS-API) Key Exchange with SHA-2";
903 }
904
905 identity gss-group14-sha256-curve25519-sha256 {
906 base key-exchange-alg-base;
907 description
908 "GSS-GROUP14-SHA256-CURVE25519-SHA256";
909 reference
910 "RFC 8732:
911 Generic Security Service Application Program Interface
912 (GSS-API) Key Exchange with SHA-2";
913 }
914
915 identity gss-group14-sha256-curve448-sha512 {
916 base key-exchange-alg-base;
917 description
918 "GSS-GROUP14-SHA256-CURVE448-SHA512";
919 reference
920 "RFC 8732:
921 Generic Security Service Application Program Interface
922 (GSS-API) Key Exchange with SHA-2";
923 }
924
925 identity gss-group15-sha512-nistp256 {
926 base key-exchange-alg-base;
927 description
928 "GSS-GROUP15-SHA512-NISTP256 (secp256r1)";
929 reference
930 "RFC 8732:
931 Generic Security Service Application Program Interface
932 (GSS-API) Key Exchange with SHA-2";
933 }
934
935 identity gss-group15-sha512-nistp384 {
936 base key-exchange-alg-base;
937 description
938 "GSS-GROUP15-SHA512-NISTP384 (secp384r1)";
939 reference
940 "RFC 8732:
941 Generic Security Service Application Program Interface
942 (GSS-API) Key Exchange with SHA-2";
943 }
944
945 identity gss-group15-sha512-nistp521 {
946 base key-exchange-alg-base;
947 description
948 "GSS-GROUP15-SHA512-NISTP521 (secp521r1)";
949 reference
950 "RFC 8732:
951 Generic Security Service Application Program Interface
952 (GSS-API) Key Exchange with SHA-2";
953 }
954
955 identity gss-group15-sha512-1.3.132.0.1 {
956 base key-exchange-alg-base;
957 description
958 "GSS-GROUP15-SHA512-1.3.132.0.1 (nistk163, sect163k1)";
959 reference
960 "RFC 8732:
961 Generic Security Service Application Program Interface
962 (GSS-API) Key Exchange with SHA-2";
963 }
964
965 identity gss-group15-sha512-1.2.840.10045.3.1.1 {
966 base key-exchange-alg-base;
967 description
968 "GSS-GROUP15-SHA512-1.2.840.10045.3.1.1 (nistp192, secp192r1)";
969 reference
970 "RFC 8732:
971 Generic Security Service Application Program Interface
972 (GSS-API) Key Exchange with SHA-2";
973 }
974
975 identity gss-group15-sha512-1.3.132.0.33 {
976 base key-exchange-alg-base;
977 description
978 "GSS-GROUP15-SHA512-1.3.132.0.33 (nistp224, secp224r1)";
979 reference
980 "RFC 8732:
981 Generic Security Service Application Program Interface
982 (GSS-API) Key Exchange with SHA-2";
983 }
984
985 identity gss-group15-sha512-1.3.132.0.26 {
986 base key-exchange-alg-base;
987 description
988 "GSS-GROUP15-SHA512-1.3.132.0.26 (nistk233, sect233k1)";
989 reference
990 "RFC 8732:
991 Generic Security Service Application Program Interface
992 (GSS-API) Key Exchange with SHA-2";
993 }
994
995 identity gss-group15-sha512-1.3.132.0.27 {
996 base key-exchange-alg-base;
997 description
998 "GSS-GROUP15-SHA512-1.3.132.0.27 (nistb233, sect233r1)";
999 reference
1000 "RFC 8732:
1001 Generic Security Service Application Program Interface
1002 (GSS-API) Key Exchange with SHA-2";
1003 }
1004
1005 identity gss-group15-sha512-1.3.132.0.16 {
1006 base key-exchange-alg-base;
1007 description
1008 "GSS-GROUP15-SHA512-1.3.132.0.16 (nistk283, sect283k1)";
1009 reference
1010 "RFC 8732:
1011 Generic Security Service Application Program Interface
1012 (GSS-API) Key Exchange with SHA-2";
1013 }
1014
1015 identity gss-group15-sha512-1.3.132.0.36 {
1016 base key-exchange-alg-base;
1017 description
1018 "GSS-GROUP15-SHA512-1.3.132.0.36 (nistk409, sect409k1)";
1019 reference
1020 "RFC 8732:
1021 Generic Security Service Application Program Interface
1022 (GSS-API) Key Exchange with SHA-2";
1023 }
1024
1025 identity gss-group15-sha512-1.3.132.0.37 {
1026 base key-exchange-alg-base;
1027 description
1028 "GSS-GROUP15-SHA512-1.3.132.0.37 (nistb409, sect409r1)";
1029 reference
1030 "RFC 8732:
1031 Generic Security Service Application Program Interface
1032 (GSS-API) Key Exchange with SHA-2";
1033 }
1034
1035 identity gss-group15-sha512-1.3.132.0.38 {
1036 base key-exchange-alg-base;
1037 description
1038 "GSS-GROUP15-SHA512-1.3.132.0.38 (nistt571, sect571k1)";
1039 reference
1040 "RFC 8732:
1041 Generic Security Service Application Program Interface
1042 (GSS-API) Key Exchange with SHA-2";
1043 }
1044
1045 identity gss-group15-sha512-curve25519-sha256 {
1046 base key-exchange-alg-base;
1047 description
1048 "GSS-GROUP15-SHA512-CURVE25519-SHA256";
1049 reference
1050 "RFC 8732:
1051 Generic Security Service Application Program Interface
1052 (GSS-API) Key Exchange with SHA-2";
1053 }
1054
1055 identity gss-group15-sha512-curve448-sha512 {
1056 base key-exchange-alg-base;
1057 description
1058 "GSS-GROUP15-SHA512-CURVE448-SHA512";
1059 reference
1060 "RFC 8732:
1061 Generic Security Service Application Program Interface
1062 (GSS-API) Key Exchange with SHA-2";
1063 }
1064
1065 identity gss-group16-sha512-nistp256 {
1066 base key-exchange-alg-base;
1067 description
1068 "GSS-GROUP16-SHA512-NISTP256 (secp256r1)";
1069 reference
1070 "RFC 8732:
1071 Generic Security Service Application Program Interface
1072 (GSS-API) Key Exchange with SHA-2";
1073 }
1074
1075 identity gss-group16-sha512-nistp384 {
1076 base key-exchange-alg-base;
1077 description
1078 "GSS-GROUP16-SHA512-NISTP384 (secp384r1)";
1079 reference
1080 "RFC 8732:
1081 Generic Security Service Application Program Interface
1082 (GSS-API) Key Exchange with SHA-2";
1083 }
1084
1085 identity gss-group16-sha512-nistp521 {
1086 base key-exchange-alg-base;
1087 description
1088 "GSS-GROUP16-SHA512-NISTP521 (secp521r1)";
1089 reference
1090 "RFC 8732:
1091 Generic Security Service Application Program Interface
1092 (GSS-API) Key Exchange with SHA-2";
1093 }
1094
1095 identity gss-group16-sha512-1.3.132.0.1 {
1096 base key-exchange-alg-base;
1097 description
1098 "GSS-GROUP16-SHA512-1.3.132.0.1 (nistk163, sect163k1)";
1099 reference
1100 "RFC 8732:
1101 Generic Security Service Application Program Interface
1102 (GSS-API) Key Exchange with SHA-2";
1103 }
1104
1105 identity gss-group16-sha512-1.2.840.10045.3.1.1 {
1106 base key-exchange-alg-base;
1107 description
1108 "GSS-GROUP16-SHA512-1.2.840.10045.3.1.1 (nistp192, secp192r1)";
1109 reference
1110 "RFC 8732:
1111 Generic Security Service Application Program Interface
1112 (GSS-API) Key Exchange with SHA-2";
1113 }
1114
1115 identity gss-group16-sha512-1.3.132.0.33 {
1116 base key-exchange-alg-base;
1117 description
1118 "GSS-GROUP16-SHA512-1.3.132.0.33 (nistp224, secp224r1)";
1119 reference
1120 "RFC 8732:
1121 Generic Security Service Application Program Interface
1122 (GSS-API) Key Exchange with SHA-2";
1123 }
1124
1125 identity gss-group16-sha512-1.3.132.0.26 {
1126 base key-exchange-alg-base;
1127 description
1128 "GSS-GROUP16-SHA512-1.3.132.0.26 (nistk233, sect233k1)";
1129 reference
1130 "RFC 8732:
1131 Generic Security Service Application Program Interface
1132 (GSS-API) Key Exchange with SHA-2";
1133 }
1134
1135 identity gss-group16-sha512-1.3.132.0.27 {
1136 base key-exchange-alg-base;
1137 description
1138 "GSS-GROUP16-SHA512-1.3.132.0.27 (nistb233, sect233r1)";
1139 reference
1140 "RFC 8732:
1141 Generic Security Service Application Program Interface
1142 (GSS-API) Key Exchange with SHA-2";
1143 }
1144
1145 identity gss-group16-sha512-1.3.132.0.16 {
1146 base key-exchange-alg-base;
1147 description
1148 "GSS-GROUP16-SHA512-1.3.132.0.16 (nistk283, sect283k1)";
1149 reference
1150 "RFC 8732:
1151 Generic Security Service Application Program Interface
1152 (GSS-API) Key Exchange with SHA-2";
1153 }
1154
1155 identity gss-group16-sha512-1.3.132.0.36 {
1156 base key-exchange-alg-base;
1157 description
1158 "GSS-GROUP16-SHA512-1.3.132.0.36 (nistk409, sect409k1)";
1159 reference
1160 "RFC 8732:
1161 Generic Security Service Application Program Interface
1162 (GSS-API) Key Exchange with SHA-2";
1163 }
1164
1165 identity gss-group16-sha512-1.3.132.0.37 {
1166 base key-exchange-alg-base;
1167 description
1168 "GSS-GROUP16-SHA512-1.3.132.0.37 (nistb409, sect409r1)";
1169 reference
1170 "RFC 8732:
1171 Generic Security Service Application Program Interface
1172 (GSS-API) Key Exchange with SHA-2";
1173 }
1174
1175 identity gss-group16-sha512-1.3.132.0.38 {
1176 base key-exchange-alg-base;
1177 description
1178 "GSS-GROUP16-SHA512-1.3.132.0.38 (nistt571, sect571k1)";
1179 reference
1180 "RFC 8732:
1181 Generic Security Service Application Program Interface
1182 (GSS-API) Key Exchange with SHA-2";
1183 }
1184
1185 identity gss-group16-sha512-curve25519-sha256 {
1186 base key-exchange-alg-base;
1187 description
1188 "GSS-GROUP16-SHA512-CURVE25519-SHA256";
1189 reference
1190 "RFC 8732:
1191 Generic Security Service Application Program Interface
1192 (GSS-API) Key Exchange with SHA-2";
1193 }
1194
1195 identity gss-group16-sha512-curve448-sha512 {
1196 base key-exchange-alg-base;
1197 description
1198 "GSS-GROUP16-SHA512-CURVE448-SHA512";
1199 reference
1200 "RFC 8732:
1201 Generic Security Service Application Program Interface
1202 (GSS-API) Key Exchange with SHA-2";
1203 }
1204
1205 identity gss-group17-sha512-nistp256 {
1206 base key-exchange-alg-base;
1207 description
1208 "GSS-GROUP17-SHA512-NISTP256 (secp256r1)";
1209 reference
1210 "RFC 8732:
1211 Generic Security Service Application Program Interface
1212 (GSS-API) Key Exchange with SHA-2";
1213 }
1214
1215 identity gss-group17-sha512-nistp384 {
1216 base key-exchange-alg-base;
1217 description
1218 "GSS-GROUP17-SHA512-NISTP384 (secp384r1)";
1219 reference
1220 "RFC 8732:
1221 Generic Security Service Application Program Interface
1222 (GSS-API) Key Exchange with SHA-2";
1223 }
1224
1225 identity gss-group17-sha512-nistp521 {
1226 base key-exchange-alg-base;
1227 description
1228 "GSS-GROUP17-SHA512-NISTP521 (secp521r1)";
1229 reference
1230 "RFC 8732:
1231 Generic Security Service Application Program Interface
1232 (GSS-API) Key Exchange with SHA-2";
1233 }
1234
1235 identity gss-group17-sha512-1.3.132.0.1 {
1236 base key-exchange-alg-base;
1237 description
1238 "GSS-GROUP17-SHA512-1.3.132.0.1 (nistk163, sect163k1)";
1239 reference
1240 "RFC 8732:
1241 Generic Security Service Application Program Interface
1242 (GSS-API) Key Exchange with SHA-2";
1243 }
1244
1245 identity gss-group17-sha512-1.2.840.10045.3.1.1 {
1246 base key-exchange-alg-base;
1247 description
1248 "GSS-GROUP17-SHA512-1.2.840.10045.3.1.1 (nistp192, secp192r1)";
1249 reference
1250 "RFC 8732:
1251 Generic Security Service Application Program Interface
1252 (GSS-API) Key Exchange with SHA-2";
1253 }
1254
1255 identity gss-group17-sha512-1.3.132.0.33 {
1256 base key-exchange-alg-base;
1257 description
1258 "GSS-GROUP17-SHA512-1.3.132.0.33 (nistp224, secp224r1)";
1259 reference
1260 "RFC 8732:
1261 Generic Security Service Application Program Interface
1262 (GSS-API) Key Exchange with SHA-2";
1263 }
1264
1265 identity gss-group17-sha512-1.3.132.0.26 {
1266 base key-exchange-alg-base;
1267 description
1268 "GSS-GROUP17-SHA512-1.3.132.0.26 (nistk233, sect233k1)";
1269 reference
1270 "RFC 8732:
1271 Generic Security Service Application Program Interface
1272 (GSS-API) Key Exchange with SHA-2";
1273 }
1274
1275 identity gss-group17-sha512-1.3.132.0.27 {
1276 base key-exchange-alg-base;
1277 description
1278 "GSS-GROUP17-SHA512-1.3.132.0.27 (nistb233, sect233r1)";
1279 reference
1280 "RFC 8732:
1281 Generic Security Service Application Program Interface
1282 (GSS-API) Key Exchange with SHA-2";
1283 }
1284
1285 identity gss-group17-sha512-1.3.132.0.16 {
1286 base key-exchange-alg-base;
1287 description
1288 "GSS-GROUP17-SHA512-1.3.132.0.16 (nistk283, sect283k1)";
1289 reference
1290 "RFC 8732:
1291 Generic Security Service Application Program Interface
1292 (GSS-API) Key Exchange with SHA-2";
1293 }
1294
1295 identity gss-group17-sha512-1.3.132.0.36 {
1296 base key-exchange-alg-base;
1297 description
1298 "GSS-GROUP17-SHA512-1.3.132.0.36 (nistk409, sect409k1)";
1299 reference
1300 "RFC 8732:
1301 Generic Security Service Application Program Interface
1302 (GSS-API) Key Exchange with SHA-2";
1303 }
1304
1305 identity gss-group17-sha512-1.3.132.0.37 {
1306 base key-exchange-alg-base;
1307 description
1308 "GSS-GROUP17-SHA512-1.3.132.0.37 (nistb409, sect409r1)";
1309 reference
1310 "RFC 8732:
1311 Generic Security Service Application Program Interface
1312 (GSS-API) Key Exchange with SHA-2";
1313 }
1314
1315 identity gss-group17-sha512-1.3.132.0.38 {
1316 base key-exchange-alg-base;
1317 description
1318 "GSS-GROUP17-SHA512-1.3.132.0.38 (nistt571, sect571k1)";
1319 reference
1320 "RFC 8732:
1321 Generic Security Service Application Program Interface
1322 (GSS-API) Key Exchange with SHA-2";
1323 }
1324
1325 identity gss-group17-sha512-curve25519-sha256 {
1326 base key-exchange-alg-base;
1327 description
1328 "GSS-GROUP17-SHA512-CURVE25519-SHA256";
1329 reference
1330 "RFC 8732:
1331 Generic Security Service Application Program Interface
1332 (GSS-API) Key Exchange with SHA-2";
1333 }
1334
1335 identity gss-group17-sha512-curve448-sha512 {
1336 base key-exchange-alg-base;
1337 description
1338 "GSS-GROUP17-SHA512-CURVE448-SHA512";
1339 reference
1340 "RFC 8732:
1341 Generic Security Service Application Program Interface
1342 (GSS-API) Key Exchange with SHA-2";
1343 }
1344
1345 identity gss-group18-sha512-nistp256 {
1346 base key-exchange-alg-base;
1347 description
1348 "GSS-GROUP18-SHA512-NISTP256 (secp256r1)";
1349 reference
1350 "RFC 8732:
1351 Generic Security Service Application Program Interface
1352 (GSS-API) Key Exchange with SHA-2";
1353 }
1354
1355 identity gss-group18-sha512-nistp384 {
1356 base key-exchange-alg-base;
1357 description
1358 "GSS-GROUP18-SHA512-NISTP384 (secp384r1)";
1359 reference
1360 "RFC 8732:
1361 Generic Security Service Application Program Interface
1362 (GSS-API) Key Exchange with SHA-2";
1363 }
1364
1365 identity gss-group18-sha512-nistp521 {
1366 base key-exchange-alg-base;
1367 description
1368 "GSS-GROUP18-SHA512-NISTP521 (secp521r1)";
1369 reference
1370 "RFC 8732:
1371 Generic Security Service Application Program Interface
1372 (GSS-API) Key Exchange with SHA-2";
1373 }
1374
1375 identity gss-group18-sha512-1.3.132.0.1 {
1376 base key-exchange-alg-base;
1377 description
1378 "GSS-GROUP18-SHA512-1.3.132.0.1 (nistk163, sect163k1)";
1379 reference
1380 "RFC 8732:
1381 Generic Security Service Application Program Interface
1382 (GSS-API) Key Exchange with SHA-2";
1383 }
1384
1385 identity gss-group18-sha512-1.2.840.10045.3.1.1 {
1386 base key-exchange-alg-base;
1387 description
1388 "GSS-GROUP18-SHA512-1.2.840.10045.3.1.1 (nistp192, secp192r1)";
1389 reference
1390 "RFC 8732:
1391 Generic Security Service Application Program Interface
1392 (GSS-API) Key Exchange with SHA-2";
1393 }
1394
1395 identity gss-group18-sha512-1.3.132.0.33 {
1396 base key-exchange-alg-base;
1397 description
1398 "GSS-GROUP18-SHA512-1.3.132.0.33 (nistp224, secp224r1)";
1399 reference
1400 "RFC 8732:
1401 Generic Security Service Application Program Interface
1402 (GSS-API) Key Exchange with SHA-2";
1403 }
1404
1405 identity gss-group18-sha512-1.3.132.0.26 {
1406 base key-exchange-alg-base;
1407 description
1408 "GSS-GROUP18-SHA512-1.3.132.0.26 (nistk233, sect233k1)";
1409 reference
1410 "RFC 8732:
1411 Generic Security Service Application Program Interface
1412 (GSS-API) Key Exchange with SHA-2";
1413 }
1414
1415 identity gss-group18-sha512-1.3.132.0.27 {
1416 base key-exchange-alg-base;
1417 description
1418 "GSS-GROUP18-SHA512-1.3.132.0.27 (nistb233, sect233r1)";
1419 reference
1420 "RFC 8732:
1421 Generic Security Service Application Program Interface
1422 (GSS-API) Key Exchange with SHA-2";
1423 }
1424
1425 identity gss-group18-sha512-1.3.132.0.16 {
1426 base key-exchange-alg-base;
1427 description
1428 "GSS-GROUP18-SHA512-1.3.132.0.16 (nistk283, sect283k1)";
1429 reference
1430 "RFC 8732:
1431 Generic Security Service Application Program Interface
1432 (GSS-API) Key Exchange with SHA-2";
1433 }
1434
1435 identity gss-group18-sha512-1.3.132.0.36 {
1436 base key-exchange-alg-base;
1437 description
1438 "GSS-GROUP18-SHA512-1.3.132.0.36 (nistk409, sect409k1)";
1439 reference
1440 "RFC 8732:
1441 Generic Security Service Application Program Interface
1442 (GSS-API) Key Exchange with SHA-2";
1443 }
1444
1445 identity gss-group18-sha512-1.3.132.0.37 {
1446 base key-exchange-alg-base;
1447 description
1448 "GSS-GROUP18-SHA512-1.3.132.0.37 (nistb409, sect409r1)";
1449 reference
1450 "RFC 8732:
1451 Generic Security Service Application Program Interface
1452 (GSS-API) Key Exchange with SHA-2";
1453 }
1454
1455 identity gss-group18-sha512-1.3.132.0.38 {
1456 base key-exchange-alg-base;
1457 description
1458 "GSS-GROUP18-SHA512-1.3.132.0.38 (nistt571, sect571k1)";
1459 reference
1460 "RFC 8732:
1461 Generic Security Service Application Program Interface
1462 (GSS-API) Key Exchange with SHA-2";
1463 }
1464
1465 identity gss-group18-sha512-curve25519-sha256 {
1466 base key-exchange-alg-base;
1467 description
1468 "GSS-GROUP18-SHA512-CURVE25519-SHA256";
1469 reference
1470 "RFC 8732:
1471 Generic Security Service Application Program Interface
1472 (GSS-API) Key Exchange with SHA-2";
1473 }
1474
1475 identity gss-group18-sha512-curve448-sha512 {
1476 base key-exchange-alg-base;
1477 description
1478 "GSS-GROUP18-SHA512-CURVE448-SHA512";
1479 reference
1480 "RFC 8732:
1481 Generic Security Service Application Program Interface
1482 (GSS-API) Key Exchange with SHA-2";
1483 }
1484
1485 identity gss-nistp256-sha256-nistp256 {
1486 base key-exchange-alg-base;
1487 description
1488 "GSS-NISTP256-SHA256-NISTP256 (secp256r1)";
1489 reference
1490 "RFC 8732:
1491 Generic Security Service Application Program Interface
1492 (GSS-API) Key Exchange with SHA-2";
1493 }
1494
1495 identity gss-nistp256-sha256-nistp384 {
1496 base key-exchange-alg-base;
1497 description
1498 "GSS-NISTP256-SHA256-NISTP384 (secp384r1)";
1499 reference
1500 "RFC 8732:
1501 Generic Security Service Application Program Interface
1502 (GSS-API) Key Exchange with SHA-2";
1503 }
1504
1505 identity gss-nistp256-sha256-nistp521 {
1506 base key-exchange-alg-base;
1507 description
1508 "GSS-NISTP256-SHA256-NISTP521 (secp521r1)";
1509 reference
1510 "RFC 8732:
1511 Generic Security Service Application Program Interface
1512 (GSS-API) Key Exchange with SHA-2";
1513 }
1514
1515 identity gss-nistp256-sha256-1.3.132.0.1 {
1516 base key-exchange-alg-base;
1517 description
1518 "GSS-NISTP256-SHA256-1.3.132.0.1 (nistk163, sect163k1)";
1519 reference
1520 "RFC 8732:
1521 Generic Security Service Application Program Interface
1522 (GSS-API) Key Exchange with SHA-2";
1523 }
1524
1525 identity gss-nistp256-sha256-1.2.840.10045.3.1.1 {
1526 base key-exchange-alg-base;
1527 description
1528 "GSS-NISTP256-SHA256-1.2.840.10045.3.1.1 (nistp192, secp192r1)";
1529 reference
1530 "RFC 8732:
1531 Generic Security Service Application Program Interface
1532 (GSS-API) Key Exchange with SHA-2";
1533 }
1534
1535 identity gss-nistp256-sha256-1.3.132.0.33 {
1536 base key-exchange-alg-base;
1537 description
1538 "GSS-NISTP256-SHA256-1.3.132.0.33 (nistp224, secp224r1)";
1539 reference
1540 "RFC 8732:
1541 Generic Security Service Application Program Interface
1542 (GSS-API) Key Exchange with SHA-2";
1543 }
1544
1545 identity gss-nistp256-sha256-1.3.132.0.26 {
1546 base key-exchange-alg-base;
1547 description
1548 "GSS-NISTP256-SHA256-1.3.132.0.26 (nistk233, sect233k1)";
1549 reference
1550 "RFC 8732:
1551 Generic Security Service Application Program Interface
1552 (GSS-API) Key Exchange with SHA-2";
1553 }
1554
1555 identity gss-nistp256-sha256-1.3.132.0.27 {
1556 base key-exchange-alg-base;
1557 description
1558 "GSS-NISTP256-SHA256-1.3.132.0.27 (nistb233, sect233r1)";
1559 reference
1560 "RFC 8732:
1561 Generic Security Service Application Program Interface
1562 (GSS-API) Key Exchange with SHA-2";
1563 }
1564
1565 identity gss-nistp256-sha256-1.3.132.0.16 {
1566 base key-exchange-alg-base;
1567 description
1568 "GSS-NISTP256-SHA256-1.3.132.0.16 (nistk283, sect283k1)";
1569 reference
1570 "RFC 8732:
1571 Generic Security Service Application Program Interface
1572 (GSS-API) Key Exchange with SHA-2";
1573 }
1574
1575 identity gss-nistp256-sha256-1.3.132.0.36 {
1576 base key-exchange-alg-base;
1577 description
1578 "GSS-NISTP256-SHA256-1.3.132.0.36 (nistk409, sect409k1)";
1579 reference
1580 "RFC 8732:
1581 Generic Security Service Application Program Interface
1582 (GSS-API) Key Exchange with SHA-2";
1583 }
1584
1585 identity gss-nistp256-sha256-1.3.132.0.37 {
1586 base key-exchange-alg-base;
1587 description
1588 "GSS-NISTP256-SHA256-1.3.132.0.37 (nistb409, sect409r1)";
1589 reference
1590 "RFC 8732:
1591 Generic Security Service Application Program Interface
1592 (GSS-API) Key Exchange with SHA-2";
1593 }
1594
1595 identity gss-nistp256-sha256-1.3.132.0.38 {
1596 base key-exchange-alg-base;
1597 description
1598 "GSS-NISTP256-SHA256-1.3.132.0.38 (nistt571, sect571k1)";
1599 reference
1600 "RFC 8732:
1601 Generic Security Service Application Program Interface
1602 (GSS-API) Key Exchange with SHA-2";
1603 }
1604
1605 identity gss-nistp256-sha256-curve25519-sha256 {
1606 base key-exchange-alg-base;
1607 description
1608 "GSS-NISTP256-SHA256-CURVE25519-SHA256";
1609 reference
1610 "RFC 8732:
1611 Generic Security Service Application Program Interface
1612 (GSS-API) Key Exchange with SHA-2";
1613 }
1614
1615 identity gss-nistp256-sha256-curve448-sha512 {
1616 base key-exchange-alg-base;
1617 description
1618 "GSS-NISTP256-SHA256-CURVE448-SHA512";
1619 reference
1620 "RFC 8732:
1621 Generic Security Service Application Program Interface
1622 (GSS-API) Key Exchange with SHA-2";
1623 }
1624
1625 identity gss-nistp384-sha384-nistp256 {
1626 base key-exchange-alg-base;
1627 description
1628 "GSS-NISTP384-SHA384-NISTP256 (secp256r1)";
1629 reference
1630 "RFC 8732:
1631 Generic Security Service Application Program Interface
1632 (GSS-API) Key Exchange with SHA-2";
1633 }
1634
1635 identity gss-nistp384-sha384-nistp384 {
1636 base key-exchange-alg-base;
1637 description
1638 "GSS-NISTP384-SHA384-NISTP384 (secp384r1)";
1639 reference
1640 "RFC 8732:
1641 Generic Security Service Application Program Interface
1642 (GSS-API) Key Exchange with SHA-2";
1643 }
1644
1645 identity gss-nistp384-sha384-nistp521 {
1646 base key-exchange-alg-base;
1647 description
1648 "GSS-NISTP384-SHA384-NISTP521 (secp521r1)";
1649 reference
1650 "RFC 8732:
1651 Generic Security Service Application Program Interface
1652 (GSS-API) Key Exchange with SHA-2";
1653 }
1654
1655 identity gss-nistp384-sha384-1.3.132.0.1 {
1656 base key-exchange-alg-base;
1657 description
1658 "GSS-NISTP384-SHA384-1.3.132.0.1 (nistk163, sect163k1)";
1659 reference
1660 "RFC 8732:
1661 Generic Security Service Application Program Interface
1662 (GSS-API) Key Exchange with SHA-2";
1663 }
1664
1665 identity gss-nistp384-sha384-1.2.840.10045.3.1.1 {
1666 base key-exchange-alg-base;
1667 description
1668 "GSS-NISTP384-SHA384-1.2.840.10045.3.1.1 (nistp192, secp192r1)";
1669 reference
1670 "RFC 8732:
1671 Generic Security Service Application Program Interface
1672 (GSS-API) Key Exchange with SHA-2";
1673 }
1674
1675 identity gss-nistp384-sha384-1.3.132.0.33 {
1676 base key-exchange-alg-base;
1677 description
1678 "GSS-NISTP384-SHA384-1.3.132.0.33 (nistp224, secp224r1)";
1679 reference
1680 "RFC 8732:
1681 Generic Security Service Application Program Interface
1682 (GSS-API) Key Exchange with SHA-2";
1683 }
1684
1685 identity gss-nistp384-sha384-1.3.132.0.26 {
1686 base key-exchange-alg-base;
1687 description
1688 "GSS-NISTP384-SHA384-1.3.132.0.26 (nistk233, sect233k1)";
1689 reference
1690 "RFC 8732:
1691 Generic Security Service Application Program Interface
1692 (GSS-API) Key Exchange with SHA-2";
1693 }
1694
1695 identity gss-nistp384-sha384-1.3.132.0.27 {
1696 base key-exchange-alg-base;
1697 description
1698 "GSS-NISTP384-SHA384-1.3.132.0.27 (nistb233, sect233r1)";
1699 reference
1700 "RFC 8732:
1701 Generic Security Service Application Program Interface
1702 (GSS-API) Key Exchange with SHA-2";
1703 }
1704
1705 identity gss-nistp384-sha384-1.3.132.0.16 {
1706 base key-exchange-alg-base;
1707 description
1708 "GSS-NISTP384-SHA384-1.3.132.0.16 (nistk283, sect283k1)";
1709 reference
1710 "RFC 8732:
1711 Generic Security Service Application Program Interface
1712 (GSS-API) Key Exchange with SHA-2";
1713 }
1714
1715 identity gss-nistp384-sha384-1.3.132.0.36 {
1716 base key-exchange-alg-base;
1717 description
1718 "GSS-NISTP384-SHA384-1.3.132.0.36 (nistk409, sect409k1)";
1719 reference
1720 "RFC 8732:
1721 Generic Security Service Application Program Interface
1722 (GSS-API) Key Exchange with SHA-2";
1723 }
1724
1725 identity gss-nistp384-sha384-1.3.132.0.37 {
1726 base key-exchange-alg-base;
1727 description
1728 "GSS-NISTP384-SHA384-1.3.132.0.37 (nistb409, sect409r1)";
1729 reference
1730 "RFC 8732:
1731 Generic Security Service Application Program Interface
1732 (GSS-API) Key Exchange with SHA-2";
1733 }
1734
1735 identity gss-nistp384-sha384-1.3.132.0.38 {
1736 base key-exchange-alg-base;
1737 description
1738 "GSS-NISTP384-SHA384-1.3.132.0.38 (nistt571, sect571k1)";
1739 reference
1740 "RFC 8732:
1741 Generic Security Service Application Program Interface
1742 (GSS-API) Key Exchange with SHA-2";
1743 }
1744
1745 identity gss-nistp384-sha384-curve25519-sha256 {
1746 base key-exchange-alg-base;
1747 description
1748 "GSS-NISTP384-SHA384-CURVE25519-SHA256";
1749 reference
1750 "RFC 8732:
1751 Generic Security Service Application Program Interface
1752 (GSS-API) Key Exchange with SHA-2";
1753 }
1754
1755 identity gss-nistp384-sha384-curve448-sha512 {
1756 base key-exchange-alg-base;
1757 description
1758 "GSS-NISTP384-SHA384-CURVE448-SHA512";
1759 reference
1760 "RFC 8732:
1761 Generic Security Service Application Program Interface
1762 (GSS-API) Key Exchange with SHA-2";
1763 }
1764
1765 identity gss-nistp521-sha512-nistp256 {
1766 base key-exchange-alg-base;
1767 description
1768 "GSS-NISTP521-SHA512-NISTP256 (secp256r1)";
1769 reference
1770 "RFC 8732:
1771 Generic Security Service Application Program Interface
1772 (GSS-API) Key Exchange with SHA-2";
1773 }
1774
1775 identity gss-nistp521-sha512-nistp384 {
1776 base key-exchange-alg-base;
1777 description
1778 "GSS-NISTP521-SHA512-NISTP384 (secp384r1)";
1779 reference
1780 "RFC 8732:
1781 Generic Security Service Application Program Interface
1782 (GSS-API) Key Exchange with SHA-2";
1783 }
1784
1785 identity gss-nistp521-sha512-nistp521 {
1786 base key-exchange-alg-base;
1787 description
1788 "GSS-NISTP521-SHA512-NISTP521 (secp521r1)";
1789 reference
1790 "RFC 8732:
1791 Generic Security Service Application Program Interface
1792 (GSS-API) Key Exchange with SHA-2";
1793 }
1794
1795 identity gss-nistp521-sha512-1.3.132.0.1 {
1796 base key-exchange-alg-base;
1797 description
1798 "GSS-NISTP521-SHA512-1.3.132.0.1 (nistk163, sect163k1)";
1799 reference
1800 "RFC 8732:
1801 Generic Security Service Application Program Interface
1802 (GSS-API) Key Exchange with SHA-2";
1803 }
1804
1805 identity gss-nistp521-sha512-1.2.840.10045.3.1.1 {
1806 base key-exchange-alg-base;
1807 description
1808 "GSS-NISTP521-SHA512-1.2.840.10045.3.1.1 (nistp192, secp192r1)";
1809 reference
1810 "RFC 8732:
1811 Generic Security Service Application Program Interface
1812 (GSS-API) Key Exchange with SHA-2";
1813 }
1814
1815 identity gss-nistp521-sha512-1.3.132.0.33 {
1816 base key-exchange-alg-base;
1817 description
1818 "GSS-NISTP521-SHA512-1.3.132.0.33 (nistp224, secp224r1)";
1819 reference
1820 "RFC 8732:
1821 Generic Security Service Application Program Interface
1822 (GSS-API) Key Exchange with SHA-2";
1823 }
1824
1825 identity gss-nistp521-sha512-1.3.132.0.26 {
1826 base key-exchange-alg-base;
1827 description
1828 "GSS-NISTP521-SHA512-1.3.132.0.26 (nistk233, sect233k1)";
1829 reference
1830 "RFC 8732:
1831 Generic Security Service Application Program Interface
1832 (GSS-API) Key Exchange with SHA-2";
1833 }
1834
1835 identity gss-nistp521-sha512-1.3.132.0.27 {
1836 base key-exchange-alg-base;
1837 description
1838 "GSS-NISTP521-SHA512-1.3.132.0.27 (nistb233, sect233r1)";
1839 reference
1840 "RFC 8732:
1841 Generic Security Service Application Program Interface
1842 (GSS-API) Key Exchange with SHA-2";
1843 }
1844
1845 identity gss-nistp521-sha512-1.3.132.0.16 {
1846 base key-exchange-alg-base;
1847 description
1848 "GSS-NISTP521-SHA512-1.3.132.0.16 (nistk283, sect283k1)";
1849 reference
1850 "RFC 8732:
1851 Generic Security Service Application Program Interface
1852 (GSS-API) Key Exchange with SHA-2";
1853 }
1854
1855 identity gss-nistp521-sha512-1.3.132.0.36 {
1856 base key-exchange-alg-base;
1857 description
1858 "GSS-NISTP521-SHA512-1.3.132.0.36 (nistk409, sect409k1)";
1859 reference
1860 "RFC 8732:
1861 Generic Security Service Application Program Interface
1862 (GSS-API) Key Exchange with SHA-2";
1863 }
1864
1865 identity gss-nistp521-sha512-1.3.132.0.37 {
1866 base key-exchange-alg-base;
1867 description
1868 "GSS-NISTP521-SHA512-1.3.132.0.37 (nistb409, sect409r1)";
1869 reference
1870 "RFC 8732:
1871 Generic Security Service Application Program Interface
1872 (GSS-API) Key Exchange with SHA-2";
1873 }
1874
1875 identity gss-nistp521-sha512-1.3.132.0.38 {
1876 base key-exchange-alg-base;
1877 description
1878 "GSS-NISTP521-SHA512-1.3.132.0.38 (nistt571, sect571k1)";
1879 reference
1880 "RFC 8732:
1881 Generic Security Service Application Program Interface
1882 (GSS-API) Key Exchange with SHA-2";
1883 }
1884
1885 identity gss-nistp521-sha512-curve25519-sha256 {
1886 base key-exchange-alg-base;
1887 description
1888 "GSS-NISTP521-SHA512-CURVE25519-SHA256";
1889 reference
1890 "RFC 8732:
1891 Generic Security Service Application Program Interface
1892 (GSS-API) Key Exchange with SHA-2";
1893 }
1894
1895 identity gss-nistp521-sha512-curve448-sha512 {
1896 base key-exchange-alg-base;
1897 description
1898 "GSS-NISTP521-SHA512-CURVE448-SHA512";
1899 reference
1900 "RFC 8732:
1901 Generic Security Service Application Program Interface
1902 (GSS-API) Key Exchange with SHA-2";
1903 }
1904
1905 identity gss-curve25519-sha256-nistp256 {
1906 base key-exchange-alg-base;
1907 description
1908 "GSS-CURVE25519-SHA256-NISTP256 (secp256r1)";
1909 reference
1910 "RFC 8732:
1911 Generic Security Service Application Program Interface
1912 (GSS-API) Key Exchange with SHA-2";
1913 }
1914
1915 identity gss-curve25519-sha256-nistp384 {
1916 base key-exchange-alg-base;
1917 description
1918 "GSS-CURVE25519-SHA256-NISTP384 (secp384r1)";
1919 reference
1920 "RFC 8732:
1921 Generic Security Service Application Program Interface
1922 (GSS-API) Key Exchange with SHA-2";
1923 }
1924
1925 identity gss-curve25519-sha256-nistp521 {
1926 base key-exchange-alg-base;
1927 description
1928 "GSS-CURVE25519-SHA256-NISTP521 (secp521r1)";
1929 reference
1930 "RFC 8732:
1931 Generic Security Service Application Program Interface
1932 (GSS-API) Key Exchange with SHA-2";
1933 }
1934
1935 identity gss-curve25519-sha256-1.3.132.0.1 {
1936 base key-exchange-alg-base;
1937 description
1938 "GSS-CURVE25519-SHA256-1.3.132.0.1 (nistk163, sect163k1)";
1939 reference
1940 "RFC 8732:
1941 Generic Security Service Application Program Interface
1942 (GSS-API) Key Exchange with SHA-2";
1943 }
1944
1945 identity gss-curve25519-sha256-1.2.840.10045.3.1.1 {
1946 base key-exchange-alg-base;
1947 description
1948 "GSS-CURVE25519-SHA256-1.2.840.10045.3.1.1 (nistp192,
1949 secp192r1)";
1950 reference
1951 "RFC 8732:
1952 Generic Security Service Application Program Interface
1953 (GSS-API) Key Exchange with SHA-2";
1954 }
1955
1956 identity gss-curve25519-sha256-1.3.132.0.33 {
1957 base key-exchange-alg-base;
1958 description
1959 "GSS-CURVE25519-SHA256-1.3.132.0.33 (nistp224, secp224r1)";
1960 reference
1961 "RFC 8732:
1962 Generic Security Service Application Program Interface
1963 (GSS-API) Key Exchange with SHA-2";
1964 }
1965
1966 identity gss-curve25519-sha256-1.3.132.0.26 {
1967 base key-exchange-alg-base;
1968 description
1969 "GSS-CURVE25519-SHA256-1.3.132.0.26 (nistk233, sect233k1)";
1970 reference
1971 "RFC 8732:
1972 Generic Security Service Application Program Interface
1973 (GSS-API) Key Exchange with SHA-2";
1974 }
1975
1976 identity gss-curve25519-sha256-1.3.132.0.27 {
1977 base key-exchange-alg-base;
1978 description
1979 "GSS-CURVE25519-SHA256-1.3.132.0.27 (nistb233, sect233r1)";
1980 reference
1981 "RFC 8732:
1982 Generic Security Service Application Program Interface
1983 (GSS-API) Key Exchange with SHA-2";
1984 }
1985
1986 identity gss-curve25519-sha256-1.3.132.0.16 {
1987 base key-exchange-alg-base;
1988 description
1989 "GSS-CURVE25519-SHA256-1.3.132.0.16 (nistk283, sect283k1)";
1990 reference
1991 "RFC 8732:
1992 Generic Security Service Application Program Interface
1993 (GSS-API) Key Exchange with SHA-2";
1994 }
1995
1996 identity gss-curve25519-sha256-1.3.132.0.36 {
1997 base key-exchange-alg-base;
1998 description
1999 "GSS-CURVE25519-SHA256-1.3.132.0.36 (nistk409, sect409k1)";
2000 reference
2001 "RFC 8732:
2002 Generic Security Service Application Program Interface
2003 (GSS-API) Key Exchange with SHA-2";
2004 }
2005
2006 identity gss-curve25519-sha256-1.3.132.0.37 {
2007 base key-exchange-alg-base;
2008 description
2009 "GSS-CURVE25519-SHA256-1.3.132.0.37 (nistb409, sect409r1)";
2010 reference
2011 "RFC 8732:
2012 Generic Security Service Application Program Interface
2013 (GSS-API) Key Exchange with SHA-2";
2014 }
2015
2016 identity gss-curve25519-sha256-1.3.132.0.38 {
2017 base key-exchange-alg-base;
2018 description
2019 "GSS-CURVE25519-SHA256-1.3.132.0.38 (nistt571, sect571k1)";
2020 reference
2021 "RFC 8732:
2022 Generic Security Service Application Program Interface
2023 (GSS-API) Key Exchange with SHA-2";
2024 }
2025 identity gss-curve25519-sha256-curve25519-sha256 {
2026 base key-exchange-alg-base;
2027 description
2028 "GSS-CURVE25519-SHA256-CURVE25519-SHA256";
2029 reference
2030 "RFC 8732:
2031 Generic Security Service Application Program Interface
2032 (GSS-API) Key Exchange with SHA-2";
2033 }
2034
2035 identity gss-curve25519-sha256-curve448-sha512 {
2036 base key-exchange-alg-base;
2037 description
2038 "GSS-CURVE25519-SHA256-CURVE448-SHA512";
2039 reference
2040 "RFC 8732:
2041 Generic Security Service Application Program Interface
2042 (GSS-API) Key Exchange with SHA-2";
2043 }
2044
2045 identity gss-curve448-sha512-nistp256 {
2046 base key-exchange-alg-base;
2047 description
2048 "GSS-CURVE448-SHA512-NISTP256 (secp256r1)";
2049 reference
2050 "RFC 8732:
2051 Generic Security Service Application Program Interface
2052 (GSS-API) Key Exchange with SHA-2";
2053 }
2054
2055 identity gss-curve448-sha512-nistp384 {
2056 base key-exchange-alg-base;
2057 description
2058 "GSS-CURVE448-SHA512-NISTP384 (secp384r1)";
2059 reference
2060 "RFC 8732:
2061 Generic Security Service Application Program Interface
2062 (GSS-API) Key Exchange with SHA-2";
2063 }
2064
2065 identity gss-curve448-sha512-nistp521 {
2066 base key-exchange-alg-base;
2067 description
2068 "GSS-CURVE448-SHA512-NISTP521 (secp521r1)";
2069 reference
2070 "RFC 8732:
2071 Generic Security Service Application Program Interface
2072 (GSS-API) Key Exchange with SHA-2";
2073 }
2074
2075 identity gss-curve448-sha512-1.3.132.0.1 {
2076 base key-exchange-alg-base;
2077 description
2078 "GSS-CURVE448-SHA512-1.3.132.0.1 (nistk163, sect163k1)";
2079 reference
2080 "RFC 8732:
2081 Generic Security Service Application Program Interface
2082 (GSS-API) Key Exchange with SHA-2";
2083 }
2084
2085 identity gss-curve448-sha512-1.2.840.10045.3.1.1 {
2086 base key-exchange-alg-base;
2087 description
2088 "GSS-CURVE448-SHA512-1.2.840.10045.3.1.1 (nistp192, secp192r1)";
2089 reference
2090 "RFC 8732:
2091 Generic Security Service Application Program Interface
2092 (GSS-API) Key Exchange with SHA-2";
2093 }
2094
2095 identity gss-curve448-sha512-1.3.132.0.33 {
2096 base key-exchange-alg-base;
2097 description
2098 "GSS-CURVE448-SHA512-1.3.132.0.33 (nistp224, secp224r1)";
2099 reference
2100 "RFC 8732:
2101 Generic Security Service Application Program Interface
2102 (GSS-API) Key Exchange with SHA-2";
2103 }
2104
2105 identity gss-curve448-sha512-1.3.132.0.26 {
2106 base key-exchange-alg-base;
2107 description
2108 "GSS-CURVE448-SHA512-1.3.132.0.26 (nistk233, sect233k1)";
2109 reference
2110 "RFC 8732:
2111 Generic Security Service Application Program Interface
2112 (GSS-API) Key Exchange with SHA-2";
2113 }
2114
2115 identity gss-curve448-sha512-1.3.132.0.27 {
2116 base key-exchange-alg-base;
2117 description
2118 "GSS-CURVE448-SHA512-1.3.132.0.27 (nistb233, sect233r1)";
2119 reference
2120 "RFC 8732:
2121 Generic Security Service Application Program Interface
2122 (GSS-API) Key Exchange with SHA-2";
2123 }
2124
2125 identity gss-curve448-sha512-1.3.132.0.16 {
2126 base key-exchange-alg-base;
2127 description
2128 "GSS-CURVE448-SHA512-1.3.132.0.16 (nistk283, sect283k1)";
2129 reference
2130 "RFC 8732:
2131 Generic Security Service Application Program Interface
2132 (GSS-API) Key Exchange with SHA-2";
2133 }
2134
2135 identity gss-curve448-sha512-1.3.132.0.36 {
2136 base key-exchange-alg-base;
2137 description
2138 "GSS-CURVE448-SHA512-1.3.132.0.36 (nistk409, sect409k1)";
2139 reference
2140 "RFC 8732:
2141 Generic Security Service Application Program Interface
2142 (GSS-API) Key Exchange with SHA-2";
2143 }
2144
2145 identity gss-curve448-sha512-1.3.132.0.37 {
2146 base key-exchange-alg-base;
2147 description
2148 "GSS-CURVE448-SHA512-1.3.132.0.37 (nistb409, sect409r1)";
2149 reference
2150 "RFC 8732:
2151 Generic Security Service Application Program Interface
2152 (GSS-API) Key Exchange with SHA-2";
2153 }
2154
2155 identity gss-curve448-sha512-1.3.132.0.38 {
2156 base key-exchange-alg-base;
2157 description
2158 "GSS-CURVE448-SHA512-1.3.132.0.38 (nistt571, sect571k1)";
2159 reference
2160 "RFC 8732:
2161 Generic Security Service Application Program Interface
2162 (GSS-API) Key Exchange with SHA-2";
2163 }
2164
2165 identity gss-curve448-sha512-curve25519-sha256 {
2166 base key-exchange-alg-base;
2167 description
2168 "GSS-CURVE448-SHA512-CURVE25519-SHA256";
2169 reference
2170 "RFC 8732:
2171 Generic Security Service Application Program Interface
2172 (GSS-API) Key Exchange with SHA-2";
2173 }
2174
2175 identity gss-curve448-sha512-curve448-sha512 {
2176 base key-exchange-alg-base;
2177 description
2178 "GSS-CURVE448-SHA512-CURVE448-SHA512";
2179 reference
2180 "RFC 8732:
2181 Generic Security Service Application Program Interface
2182 (GSS-API) Key Exchange with SHA-2";
2183 }
2184
2185 identity curve25519-sha256 {
2186 base key-exchange-alg-base;
2187 description
2188 "CURVE25519-SHA256";
2189 reference
2190 "RFC 8731:
2191 Secure Shell (SSH) Key Exchange Method
2192 Using Curve25519 and Curve448";
2193 }
2194
2195 identity curve448-sha512 {
2196 base key-exchange-alg-base;
2197 description
2198 "CURVE448-SHA512";
2199 reference
2200 "RFC 8731:
2201 Secure Shell (SSH) Key Exchange Method
2202 Using Curve25519 and Curve448";
2203 }
2204
2205 // Protocol-accessible Nodes
2206
2207 container supported-algorithms {
2208 config false;
2209 description
2210 "A container for a list of key exchange algorithms
2211 supported by the server.";
2212 leaf-list supported-algorithm {
2213 type key-exchange-algorithm-ref;
2214 description
2215 "A key exchange algorithm supported by the server.";
2216 }
2217 }
2218
2219}