diff options
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/libcrypto/Makefile | 151 |
1 files changed, 121 insertions, 30 deletions
diff --git a/src/lib/libcrypto/Makefile b/src/lib/libcrypto/Makefile index 05bcd61e30..b25ea5f948 100644 --- a/src/lib/libcrypto/Makefile +++ b/src/lib/libcrypto/Makefile | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: Makefile,v 1.84 2022/11/10 15:13:52 joshua Exp $ | 1 | # $OpenBSD: Makefile,v 1.85 2022/11/10 16:00:34 joshua Exp $ |
2 | 2 | ||
3 | LIB= crypto | 3 | LIB= crypto |
4 | LIBREBUILD=y | 4 | LIBREBUILD=y |
@@ -468,75 +468,166 @@ SRCS+= pmeth_gn.c | |||
468 | SRCS+= pmeth_lib.c | 468 | SRCS+= pmeth_lib.c |
469 | 469 | ||
470 | # gost/ | 470 | # gost/ |
471 | SRCS+= gost2814789.c gost89_keywrap.c gost89_params.c gost89imit_ameth.c | 471 | SRCS+= gost2814789.c |
472 | SRCS+= gost89imit_pmeth.c gost_asn1.c gost_err.c gostr341001.c | 472 | SRCS+= gost89_keywrap.c |
473 | SRCS+= gostr341001_ameth.c gostr341001_key.c gostr341001_params.c | 473 | SRCS+= gost89_params.c |
474 | SRCS+= gostr341001_pmeth.c gostr341194.c streebog.c | 474 | SRCS+= gost89imit_ameth.c |
475 | SRCS+= gost89imit_pmeth.c | ||
476 | SRCS+= gost_asn1.c | ||
477 | SRCS+= gost_err.c | ||
478 | SRCS+= gostr341001.c | ||
479 | SRCS+= gostr341001_ameth.c | ||
480 | SRCS+= gostr341001_key.c | ||
481 | SRCS+= gostr341001_params.c | ||
482 | SRCS+= gostr341001_pmeth.c | ||
483 | SRCS+= gostr341194.c | ||
484 | SRCS+= streebog.c | ||
475 | 485 | ||
476 | # hkdf/ | 486 | # hkdf/ |
477 | SRCS+= hkdf.c | 487 | SRCS+= hkdf.c |
478 | 488 | ||
479 | # hmac/ | 489 | # hmac/ |
480 | SRCS+= hmac.c hm_ameth.c hm_pmeth.c | 490 | SRCS+= hm_ameth.c |
491 | SRCS+= hm_pmeth.c | ||
492 | SRCS+= hmac.c | ||
481 | 493 | ||
482 | # idea/ | 494 | # idea/ |
483 | SRCS+= i_cbc.c i_cfb64.c i_ofb64.c i_ecb.c i_skey.c | 495 | SRCS+= i_cbc.c |
496 | SRCS+= i_cfb64.c | ||
497 | SRCS+= i_ecb.c | ||
498 | SRCS+= i_ofb64.c | ||
499 | SRCS+= i_skey.c | ||
484 | 500 | ||
485 | # kdf/ | 501 | # kdf/ |
486 | SRCS+= hkdf_evp.c kdf_err.c | 502 | SRCS+= hkdf_evp.c |
503 | SRCS+= kdf_err.c | ||
487 | 504 | ||
488 | # lhash/ | 505 | # lhash/ |
489 | SRCS+= lhash.c lh_stats.c | 506 | SRCS+= lh_stats.c |
507 | SRCS+= lhash.c | ||
490 | 508 | ||
491 | # md4/ | 509 | # md4/ |
492 | SRCS+= md4_dgst.c md4_one.c | 510 | SRCS+= md4_dgst.c |
511 | SRCS+= md4_one.c | ||
493 | 512 | ||
494 | # md5/ | 513 | # md5/ |
495 | SRCS+= md5_dgst.c md5_one.c | 514 | SRCS+= md5_dgst.c |
515 | SRCS+= md5_one.c | ||
496 | 516 | ||
497 | # modes/ | 517 | # modes/ |
498 | SRCS+= cbc128.c ctr128.c cts128.c cfb128.c ofb128.c gcm128.c ccm128.c xts128.c | 518 | SRCS+= cbc128.c |
519 | SRCS+= ccm128.c | ||
520 | SRCS+= cfb128.c | ||
521 | SRCS+= ctr128.c | ||
522 | SRCS+= cts128.c | ||
523 | SRCS+= gcm128.c | ||
524 | SRCS+= ofb128.c | ||
525 | SRCS+= xts128.c | ||
499 | 526 | ||
500 | # objects/ | 527 | # objects/ |
501 | SRCS+= o_names.c obj_dat.c obj_lib.c obj_err.c obj_xref.c | 528 | SRCS+= o_names.c |
529 | SRCS+= obj_dat.c | ||
530 | SRCS+= obj_err.c | ||
531 | SRCS+= obj_lib.c | ||
532 | SRCS+= obj_xref.c | ||
502 | 533 | ||
503 | # ocsp/ | 534 | # ocsp/ |
504 | SRCS+= ocsp_asn.c ocsp_ext.c ocsp_ht.c ocsp_lib.c ocsp_cl.c | 535 | SRCS+= ocsp_asn.c |
505 | SRCS+= ocsp_srv.c ocsp_prn.c ocsp_vfy.c ocsp_err.c | 536 | SRCS+= ocsp_cl.c |
537 | SRCS+= ocsp_err.c | ||
538 | SRCS+= ocsp_ext.c | ||
539 | SRCS+= ocsp_ht.c | ||
540 | SRCS+= ocsp_lib.c | ||
541 | SRCS+= ocsp_prn.c | ||
542 | SRCS+= ocsp_srv.c | ||
543 | SRCS+= ocsp_vfy.c | ||
506 | 544 | ||
507 | # pem/ | 545 | # pem/ |
508 | SRCS+= pem_sign.c pem_info.c pem_lib.c pem_all.c pem_err.c | 546 | SRCS+= pem_all.c |
509 | SRCS+= pem_x509.c pem_xaux.c pem_oth.c pem_pk8.c pem_pkey.c pvkfmt.c | 547 | SRCS+= pem_err.c |
548 | SRCS+= pem_info.c | ||
549 | SRCS+= pem_lib.c | ||
550 | SRCS+= pem_oth.c | ||
551 | SRCS+= pem_pk8.c | ||
552 | SRCS+= pem_pkey.c | ||
553 | SRCS+= pem_sign.c | ||
554 | SRCS+= pem_x509.c | ||
555 | SRCS+= pem_xaux.c | ||
556 | SRCS+= pvkfmt.c | ||
510 | 557 | ||
511 | # pkcs12/ | 558 | # pkcs12/ |
512 | SRCS+= p12_add.c p12_asn.c p12_attr.c p12_crpt.c p12_crt.c p12_decr.c | 559 | SRCS+= p12_add.c |
513 | SRCS+= p12_init.c p12_key.c p12_kiss.c p12_mutl.c p12_sbag.c | 560 | SRCS+= p12_asn.c |
514 | SRCS+= p12_utl.c p12_npas.c pk12err.c p12_p8d.c p12_p8e.c | 561 | SRCS+= p12_attr.c |
562 | SRCS+= p12_crpt.c | ||
563 | SRCS+= p12_crt.c | ||
564 | SRCS+= p12_decr.c | ||
565 | SRCS+= p12_init.c | ||
566 | SRCS+= p12_key.c | ||
567 | SRCS+= p12_kiss.c | ||
568 | SRCS+= p12_mutl.c | ||
569 | SRCS+= p12_npas.c | ||
570 | SRCS+= p12_p8d.c | ||
571 | SRCS+= p12_p8e.c | ||
572 | SRCS+= p12_sbag.c | ||
573 | SRCS+= p12_utl.c | ||
574 | SRCS+= pk12err.c | ||
515 | 575 | ||
516 | # pkcs7/ | 576 | # pkcs7/ |
517 | SRCS+= pk7_asn1.c pk7_lib.c pkcs7err.c pk7_doit.c pk7_smime.c pk7_attr.c | 577 | SRCS+= bio_pk7.c |
518 | SRCS+= pk7_mime.c bio_pk7.c | 578 | SRCS+= pk7_asn1.c |
579 | SRCS+= pk7_attr.c | ||
580 | SRCS+= pk7_doit.c | ||
581 | SRCS+= pk7_lib.c | ||
582 | SRCS+= pk7_mime.c | ||
583 | SRCS+= pk7_smime.c | ||
584 | SRCS+= pkcs7err.c | ||
519 | 585 | ||
520 | # poly1305/ | 586 | # poly1305/ |
521 | SRCS+= poly1305.c | 587 | SRCS+= poly1305.c |
522 | 588 | ||
523 | # rand/ | 589 | # rand/ |
524 | SRCS+= randfile.c rand_lib.c rand_err.c | 590 | SRCS+= rand_err.c |
591 | SRCS+= rand_lib.c | ||
592 | SRCS+= randfile.c | ||
525 | 593 | ||
526 | # rc2/ | 594 | # rc2/ |
527 | SRCS+= rc2_ecb.c rc2_skey.c rc2_cbc.c rc2cfb64.c rc2ofb64.c | 595 | SRCS+= rc2_cbc.c |
596 | SRCS+= rc2_ecb.c | ||
597 | SRCS+= rc2_skey.c | ||
598 | SRCS+= rc2cfb64.c | ||
599 | SRCS+= rc2ofb64.c | ||
528 | 600 | ||
529 | # ripemd/ | 601 | # ripemd/ |
530 | SRCS+= rmd_dgst.c rmd_one.c | 602 | SRCS+= rmd_dgst.c |
603 | SRCS+= rmd_one.c | ||
531 | 604 | ||
532 | # rsa/ | 605 | # rsa/ |
533 | SRCS+= rsa_eay.c rsa_gen.c rsa_lib.c rsa_sign.c rsa_saos.c rsa_err.c | 606 | SRCS+= rsa_ameth.c |
534 | SRCS+= rsa_pk1.c rsa_none.c rsa_oaep.c rsa_chk.c | 607 | SRCS+= rsa_asn1.c |
535 | SRCS+= rsa_pss.c rsa_x931.c rsa_asn1.c rsa_depr.c rsa_ameth.c rsa_prn.c | 608 | SRCS+= rsa_chk.c |
536 | SRCS+= rsa_pmeth.c rsa_crpt.c rsa_meth.c | 609 | SRCS+= rsa_crpt.c |
610 | SRCS+= rsa_depr.c | ||
611 | SRCS+= rsa_eay.c | ||
612 | SRCS+= rsa_err.c | ||
613 | SRCS+= rsa_gen.c | ||
614 | SRCS+= rsa_lib.c | ||
615 | SRCS+= rsa_meth.c | ||
616 | SRCS+= rsa_none.c | ||
617 | SRCS+= rsa_oaep.c | ||
618 | SRCS+= rsa_pk1.c | ||
619 | SRCS+= rsa_pmeth.c | ||
620 | SRCS+= rsa_prn.c | ||
621 | SRCS+= rsa_pss.c | ||
622 | SRCS+= rsa_saos.c | ||
623 | SRCS+= rsa_sign.c | ||
624 | SRCS+= rsa_x931.c | ||
537 | 625 | ||
538 | # sha/ | 626 | # sha/ |
539 | SRCS+= sha1dgst.c sha1_one.c sha256.c sha512.c | 627 | SRCS+= sha1dgst.c |
628 | SRCS+= sha1_one.c | ||
629 | SRCS+= sha256.c | ||
630 | SRCS+= sha512.c | ||
540 | 631 | ||
541 | # sm3/ | 632 | # sm3/ |
542 | SRCS+= sm3.c | 633 | SRCS+= sm3.c |