evp_extra_test2.c 49 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120
  1. /*
  2. * Copyright 2015-2022 The OpenSSL Project Authors. All Rights Reserved.
  3. *
  4. * Licensed under the Apache License 2.0 (the "License"). You may not use
  5. * this file except in compliance with the License. You can obtain a copy
  6. * in the file LICENSE in the source distribution or at
  7. * https://www.openssl.org/source/license.html
  8. */
  9. /* We need to use some deprecated APIs */
  10. #define OPENSSL_SUPPRESS_DEPRECATED
  11. /*
  12. * Really these tests should be in evp_extra_test - but that doesn't
  13. * yet support testing with a non-default libctx. Once it does we should move
  14. * everything into one file. Consequently some things are duplicated between
  15. * the two files.
  16. */
  17. #include <openssl/evp.h>
  18. #include <openssl/pem.h>
  19. #include <openssl/provider.h>
  20. #include <openssl/rsa.h>
  21. #include <openssl/core_names.h>
  22. #include "testutil.h"
  23. #include "internal/nelem.h"
  24. static OSSL_LIB_CTX *mainctx = NULL;
  25. static OSSL_PROVIDER *nullprov = NULL;
  26. /*
  27. * kExampleRSAKeyDER is an RSA private key in ASN.1, DER format. Of course, you
  28. * should never use this key anywhere but in an example.
  29. */
  30. static const unsigned char kExampleRSAKeyDER[] = {
  31. 0x30, 0x82, 0x02, 0x5c, 0x02, 0x01, 0x00, 0x02, 0x81, 0x81, 0x00, 0xf8,
  32. 0xb8, 0x6c, 0x83, 0xb4, 0xbc, 0xd9, 0xa8, 0x57, 0xc0, 0xa5, 0xb4, 0x59,
  33. 0x76, 0x8c, 0x54, 0x1d, 0x79, 0xeb, 0x22, 0x52, 0x04, 0x7e, 0xd3, 0x37,
  34. 0xeb, 0x41, 0xfd, 0x83, 0xf9, 0xf0, 0xa6, 0x85, 0x15, 0x34, 0x75, 0x71,
  35. 0x5a, 0x84, 0xa8, 0x3c, 0xd2, 0xef, 0x5a, 0x4e, 0xd3, 0xde, 0x97, 0x8a,
  36. 0xdd, 0xff, 0xbb, 0xcf, 0x0a, 0xaa, 0x86, 0x92, 0xbe, 0xb8, 0x50, 0xe4,
  37. 0xcd, 0x6f, 0x80, 0x33, 0x30, 0x76, 0x13, 0x8f, 0xca, 0x7b, 0xdc, 0xec,
  38. 0x5a, 0xca, 0x63, 0xc7, 0x03, 0x25, 0xef, 0xa8, 0x8a, 0x83, 0x58, 0x76,
  39. 0x20, 0xfa, 0x16, 0x77, 0xd7, 0x79, 0x92, 0x63, 0x01, 0x48, 0x1a, 0xd8,
  40. 0x7b, 0x67, 0xf1, 0x52, 0x55, 0x49, 0x4e, 0xd6, 0x6e, 0x4a, 0x5c, 0xd7,
  41. 0x7a, 0x37, 0x36, 0x0c, 0xde, 0xdd, 0x8f, 0x44, 0xe8, 0xc2, 0xa7, 0x2c,
  42. 0x2b, 0xb5, 0xaf, 0x64, 0x4b, 0x61, 0x07, 0x02, 0x03, 0x01, 0x00, 0x01,
  43. 0x02, 0x81, 0x80, 0x74, 0x88, 0x64, 0x3f, 0x69, 0x45, 0x3a, 0x6d, 0xc7,
  44. 0x7f, 0xb9, 0xa3, 0xc0, 0x6e, 0xec, 0xdc, 0xd4, 0x5a, 0xb5, 0x32, 0x85,
  45. 0x5f, 0x19, 0xd4, 0xf8, 0xd4, 0x3f, 0x3c, 0xfa, 0xc2, 0xf6, 0x5f, 0xee,
  46. 0xe6, 0xba, 0x87, 0x74, 0x2e, 0xc7, 0x0c, 0xd4, 0x42, 0xb8, 0x66, 0x85,
  47. 0x9c, 0x7b, 0x24, 0x61, 0xaa, 0x16, 0x11, 0xf6, 0xb5, 0xb6, 0xa4, 0x0a,
  48. 0xc9, 0x55, 0x2e, 0x81, 0xa5, 0x47, 0x61, 0xcb, 0x25, 0x8f, 0xc2, 0x15,
  49. 0x7b, 0x0e, 0x7c, 0x36, 0x9f, 0x3a, 0xda, 0x58, 0x86, 0x1c, 0x5b, 0x83,
  50. 0x79, 0xe6, 0x2b, 0xcc, 0xe6, 0xfa, 0x2c, 0x61, 0xf2, 0x78, 0x80, 0x1b,
  51. 0xe2, 0xf3, 0x9d, 0x39, 0x2b, 0x65, 0x57, 0x91, 0x3d, 0x71, 0x99, 0x73,
  52. 0xa5, 0xc2, 0x79, 0x20, 0x8c, 0x07, 0x4f, 0xe5, 0xb4, 0x60, 0x1f, 0x99,
  53. 0xa2, 0xb1, 0x4f, 0x0c, 0xef, 0xbc, 0x59, 0x53, 0x00, 0x7d, 0xb1, 0x02,
  54. 0x41, 0x00, 0xfc, 0x7e, 0x23, 0x65, 0x70, 0xf8, 0xce, 0xd3, 0x40, 0x41,
  55. 0x80, 0x6a, 0x1d, 0x01, 0xd6, 0x01, 0xff, 0xb6, 0x1b, 0x3d, 0x3d, 0x59,
  56. 0x09, 0x33, 0x79, 0xc0, 0x4f, 0xde, 0x96, 0x27, 0x4b, 0x18, 0xc6, 0xd9,
  57. 0x78, 0xf1, 0xf4, 0x35, 0x46, 0xe9, 0x7c, 0x42, 0x7a, 0x5d, 0x9f, 0xef,
  58. 0x54, 0xb8, 0xf7, 0x9f, 0xc4, 0x33, 0x6c, 0xf3, 0x8c, 0x32, 0x46, 0x87,
  59. 0x67, 0x30, 0x7b, 0xa7, 0xac, 0xe3, 0x02, 0x41, 0x00, 0xfc, 0x2c, 0xdf,
  60. 0x0c, 0x0d, 0x88, 0xf5, 0xb1, 0x92, 0xa8, 0x93, 0x47, 0x63, 0x55, 0xf5,
  61. 0xca, 0x58, 0x43, 0xba, 0x1c, 0xe5, 0x9e, 0xb6, 0x95, 0x05, 0xcd, 0xb5,
  62. 0x82, 0xdf, 0xeb, 0x04, 0x53, 0x9d, 0xbd, 0xc2, 0x38, 0x16, 0xb3, 0x62,
  63. 0xdd, 0xa1, 0x46, 0xdb, 0x6d, 0x97, 0x93, 0x9f, 0x8a, 0xc3, 0x9b, 0x64,
  64. 0x7e, 0x42, 0xe3, 0x32, 0x57, 0x19, 0x1b, 0xd5, 0x6e, 0x85, 0xfa, 0xb8,
  65. 0x8d, 0x02, 0x41, 0x00, 0xbc, 0x3d, 0xde, 0x6d, 0xd6, 0x97, 0xe8, 0xba,
  66. 0x9e, 0x81, 0x37, 0x17, 0xe5, 0xa0, 0x64, 0xc9, 0x00, 0xb7, 0xe7, 0xfe,
  67. 0xf4, 0x29, 0xd9, 0x2e, 0x43, 0x6b, 0x19, 0x20, 0xbd, 0x99, 0x75, 0xe7,
  68. 0x76, 0xf8, 0xd3, 0xae, 0xaf, 0x7e, 0xb8, 0xeb, 0x81, 0xf4, 0x9d, 0xfe,
  69. 0x07, 0x2b, 0x0b, 0x63, 0x0b, 0x5a, 0x55, 0x90, 0x71, 0x7d, 0xf1, 0xdb,
  70. 0xd9, 0xb1, 0x41, 0x41, 0x68, 0x2f, 0x4e, 0x39, 0x02, 0x40, 0x5a, 0x34,
  71. 0x66, 0xd8, 0xf5, 0xe2, 0x7f, 0x18, 0xb5, 0x00, 0x6e, 0x26, 0x84, 0x27,
  72. 0x14, 0x93, 0xfb, 0xfc, 0xc6, 0x0f, 0x5e, 0x27, 0xe6, 0xe1, 0xe9, 0xc0,
  73. 0x8a, 0xe4, 0x34, 0xda, 0xe9, 0xa2, 0x4b, 0x73, 0xbc, 0x8c, 0xb9, 0xba,
  74. 0x13, 0x6c, 0x7a, 0x2b, 0x51, 0x84, 0xa3, 0x4a, 0xe0, 0x30, 0x10, 0x06,
  75. 0x7e, 0xed, 0x17, 0x5a, 0x14, 0x00, 0xc9, 0xef, 0x85, 0xea, 0x52, 0x2c,
  76. 0xbc, 0x65, 0x02, 0x40, 0x51, 0xe3, 0xf2, 0x83, 0x19, 0x9b, 0xc4, 0x1e,
  77. 0x2f, 0x50, 0x3d, 0xdf, 0x5a, 0xa2, 0x18, 0xca, 0x5f, 0x2e, 0x49, 0xaf,
  78. 0x6f, 0xcc, 0xfa, 0x65, 0x77, 0x94, 0xb5, 0xa1, 0x0a, 0xa9, 0xd1, 0x8a,
  79. 0x39, 0x37, 0xf4, 0x0b, 0xa0, 0xd7, 0x82, 0x27, 0x5e, 0xae, 0x17, 0x17,
  80. 0xa1, 0x1e, 0x54, 0x34, 0xbf, 0x6e, 0xc4, 0x8e, 0x99, 0x5d, 0x08, 0xf1,
  81. 0x2d, 0x86, 0x9d, 0xa5, 0x20, 0x1b, 0xe5, 0xdf,
  82. };
  83. /*
  84. * kExampleRSAKeyPKCS8 is kExampleRSAKeyDER encoded in a PKCS #8
  85. * PrivateKeyInfo.
  86. */
  87. static const unsigned char kExampleRSAKeyPKCS8[] = {
  88. 0x30, 0x82, 0x02, 0x76, 0x02, 0x01, 0x00, 0x30, 0x0d, 0x06, 0x09, 0x2a,
  89. 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x04, 0x82,
  90. 0x02, 0x60, 0x30, 0x82, 0x02, 0x5c, 0x02, 0x01, 0x00, 0x02, 0x81, 0x81,
  91. 0x00, 0xf8, 0xb8, 0x6c, 0x83, 0xb4, 0xbc, 0xd9, 0xa8, 0x57, 0xc0, 0xa5,
  92. 0xb4, 0x59, 0x76, 0x8c, 0x54, 0x1d, 0x79, 0xeb, 0x22, 0x52, 0x04, 0x7e,
  93. 0xd3, 0x37, 0xeb, 0x41, 0xfd, 0x83, 0xf9, 0xf0, 0xa6, 0x85, 0x15, 0x34,
  94. 0x75, 0x71, 0x5a, 0x84, 0xa8, 0x3c, 0xd2, 0xef, 0x5a, 0x4e, 0xd3, 0xde,
  95. 0x97, 0x8a, 0xdd, 0xff, 0xbb, 0xcf, 0x0a, 0xaa, 0x86, 0x92, 0xbe, 0xb8,
  96. 0x50, 0xe4, 0xcd, 0x6f, 0x80, 0x33, 0x30, 0x76, 0x13, 0x8f, 0xca, 0x7b,
  97. 0xdc, 0xec, 0x5a, 0xca, 0x63, 0xc7, 0x03, 0x25, 0xef, 0xa8, 0x8a, 0x83,
  98. 0x58, 0x76, 0x20, 0xfa, 0x16, 0x77, 0xd7, 0x79, 0x92, 0x63, 0x01, 0x48,
  99. 0x1a, 0xd8, 0x7b, 0x67, 0xf1, 0x52, 0x55, 0x49, 0x4e, 0xd6, 0x6e, 0x4a,
  100. 0x5c, 0xd7, 0x7a, 0x37, 0x36, 0x0c, 0xde, 0xdd, 0x8f, 0x44, 0xe8, 0xc2,
  101. 0xa7, 0x2c, 0x2b, 0xb5, 0xaf, 0x64, 0x4b, 0x61, 0x07, 0x02, 0x03, 0x01,
  102. 0x00, 0x01, 0x02, 0x81, 0x80, 0x74, 0x88, 0x64, 0x3f, 0x69, 0x45, 0x3a,
  103. 0x6d, 0xc7, 0x7f, 0xb9, 0xa3, 0xc0, 0x6e, 0xec, 0xdc, 0xd4, 0x5a, 0xb5,
  104. 0x32, 0x85, 0x5f, 0x19, 0xd4, 0xf8, 0xd4, 0x3f, 0x3c, 0xfa, 0xc2, 0xf6,
  105. 0x5f, 0xee, 0xe6, 0xba, 0x87, 0x74, 0x2e, 0xc7, 0x0c, 0xd4, 0x42, 0xb8,
  106. 0x66, 0x85, 0x9c, 0x7b, 0x24, 0x61, 0xaa, 0x16, 0x11, 0xf6, 0xb5, 0xb6,
  107. 0xa4, 0x0a, 0xc9, 0x55, 0x2e, 0x81, 0xa5, 0x47, 0x61, 0xcb, 0x25, 0x8f,
  108. 0xc2, 0x15, 0x7b, 0x0e, 0x7c, 0x36, 0x9f, 0x3a, 0xda, 0x58, 0x86, 0x1c,
  109. 0x5b, 0x83, 0x79, 0xe6, 0x2b, 0xcc, 0xe6, 0xfa, 0x2c, 0x61, 0xf2, 0x78,
  110. 0x80, 0x1b, 0xe2, 0xf3, 0x9d, 0x39, 0x2b, 0x65, 0x57, 0x91, 0x3d, 0x71,
  111. 0x99, 0x73, 0xa5, 0xc2, 0x79, 0x20, 0x8c, 0x07, 0x4f, 0xe5, 0xb4, 0x60,
  112. 0x1f, 0x99, 0xa2, 0xb1, 0x4f, 0x0c, 0xef, 0xbc, 0x59, 0x53, 0x00, 0x7d,
  113. 0xb1, 0x02, 0x41, 0x00, 0xfc, 0x7e, 0x23, 0x65, 0x70, 0xf8, 0xce, 0xd3,
  114. 0x40, 0x41, 0x80, 0x6a, 0x1d, 0x01, 0xd6, 0x01, 0xff, 0xb6, 0x1b, 0x3d,
  115. 0x3d, 0x59, 0x09, 0x33, 0x79, 0xc0, 0x4f, 0xde, 0x96, 0x27, 0x4b, 0x18,
  116. 0xc6, 0xd9, 0x78, 0xf1, 0xf4, 0x35, 0x46, 0xe9, 0x7c, 0x42, 0x7a, 0x5d,
  117. 0x9f, 0xef, 0x54, 0xb8, 0xf7, 0x9f, 0xc4, 0x33, 0x6c, 0xf3, 0x8c, 0x32,
  118. 0x46, 0x87, 0x67, 0x30, 0x7b, 0xa7, 0xac, 0xe3, 0x02, 0x41, 0x00, 0xfc,
  119. 0x2c, 0xdf, 0x0c, 0x0d, 0x88, 0xf5, 0xb1, 0x92, 0xa8, 0x93, 0x47, 0x63,
  120. 0x55, 0xf5, 0xca, 0x58, 0x43, 0xba, 0x1c, 0xe5, 0x9e, 0xb6, 0x95, 0x05,
  121. 0xcd, 0xb5, 0x82, 0xdf, 0xeb, 0x04, 0x53, 0x9d, 0xbd, 0xc2, 0x38, 0x16,
  122. 0xb3, 0x62, 0xdd, 0xa1, 0x46, 0xdb, 0x6d, 0x97, 0x93, 0x9f, 0x8a, 0xc3,
  123. 0x9b, 0x64, 0x7e, 0x42, 0xe3, 0x32, 0x57, 0x19, 0x1b, 0xd5, 0x6e, 0x85,
  124. 0xfa, 0xb8, 0x8d, 0x02, 0x41, 0x00, 0xbc, 0x3d, 0xde, 0x6d, 0xd6, 0x97,
  125. 0xe8, 0xba, 0x9e, 0x81, 0x37, 0x17, 0xe5, 0xa0, 0x64, 0xc9, 0x00, 0xb7,
  126. 0xe7, 0xfe, 0xf4, 0x29, 0xd9, 0x2e, 0x43, 0x6b, 0x19, 0x20, 0xbd, 0x99,
  127. 0x75, 0xe7, 0x76, 0xf8, 0xd3, 0xae, 0xaf, 0x7e, 0xb8, 0xeb, 0x81, 0xf4,
  128. 0x9d, 0xfe, 0x07, 0x2b, 0x0b, 0x63, 0x0b, 0x5a, 0x55, 0x90, 0x71, 0x7d,
  129. 0xf1, 0xdb, 0xd9, 0xb1, 0x41, 0x41, 0x68, 0x2f, 0x4e, 0x39, 0x02, 0x40,
  130. 0x5a, 0x34, 0x66, 0xd8, 0xf5, 0xe2, 0x7f, 0x18, 0xb5, 0x00, 0x6e, 0x26,
  131. 0x84, 0x27, 0x14, 0x93, 0xfb, 0xfc, 0xc6, 0x0f, 0x5e, 0x27, 0xe6, 0xe1,
  132. 0xe9, 0xc0, 0x8a, 0xe4, 0x34, 0xda, 0xe9, 0xa2, 0x4b, 0x73, 0xbc, 0x8c,
  133. 0xb9, 0xba, 0x13, 0x6c, 0x7a, 0x2b, 0x51, 0x84, 0xa3, 0x4a, 0xe0, 0x30,
  134. 0x10, 0x06, 0x7e, 0xed, 0x17, 0x5a, 0x14, 0x00, 0xc9, 0xef, 0x85, 0xea,
  135. 0x52, 0x2c, 0xbc, 0x65, 0x02, 0x40, 0x51, 0xe3, 0xf2, 0x83, 0x19, 0x9b,
  136. 0xc4, 0x1e, 0x2f, 0x50, 0x3d, 0xdf, 0x5a, 0xa2, 0x18, 0xca, 0x5f, 0x2e,
  137. 0x49, 0xaf, 0x6f, 0xcc, 0xfa, 0x65, 0x77, 0x94, 0xb5, 0xa1, 0x0a, 0xa9,
  138. 0xd1, 0x8a, 0x39, 0x37, 0xf4, 0x0b, 0xa0, 0xd7, 0x82, 0x27, 0x5e, 0xae,
  139. 0x17, 0x17, 0xa1, 0x1e, 0x54, 0x34, 0xbf, 0x6e, 0xc4, 0x8e, 0x99, 0x5d,
  140. 0x08, 0xf1, 0x2d, 0x86, 0x9d, 0xa5, 0x20, 0x1b, 0xe5, 0xdf,
  141. };
  142. #ifndef OPENSSL_NO_DH
  143. static const unsigned char kExampleDHPrivateKeyDER[] = {
  144. 0x30, 0x82, 0x02, 0x26, 0x02, 0x01, 0x00, 0x30, 0x82, 0x01, 0x17, 0x06,
  145. 0x09, 0x2A, 0x86, 0x48, 0x86, 0xF7, 0x0D, 0x01, 0x03, 0x01, 0x30, 0x82,
  146. 0x01, 0x08, 0x02, 0x82, 0x01, 0x01, 0x00, 0xD8, 0x4B, 0x0F, 0x0E, 0x6B,
  147. 0x79, 0xE9, 0x23, 0x4E, 0xE4, 0xBE, 0x9A, 0x8F, 0x7A, 0x5C, 0xA3, 0x20,
  148. 0xD0, 0x86, 0x6B, 0x95, 0x78, 0x39, 0x59, 0x7A, 0x11, 0x2A, 0x5B, 0x87,
  149. 0xA4, 0xFB, 0x2F, 0x99, 0xD0, 0x57, 0xF5, 0xE1, 0xA3, 0xAF, 0x41, 0xD1,
  150. 0xCD, 0xA3, 0x94, 0xBB, 0xE5, 0x5A, 0x68, 0xE2, 0xEE, 0x69, 0x56, 0x51,
  151. 0xB2, 0xEE, 0xF2, 0xFE, 0x10, 0xC9, 0x55, 0xE3, 0x82, 0x3C, 0x50, 0x0D,
  152. 0xF5, 0x82, 0x73, 0xE4, 0xD6, 0x3E, 0x45, 0xB4, 0x89, 0x80, 0xE4, 0xF0,
  153. 0x99, 0x85, 0x2B, 0x4B, 0xF9, 0xB8, 0xFD, 0x2C, 0x3C, 0x49, 0x2E, 0xB3,
  154. 0x56, 0x7E, 0x99, 0x07, 0xD3, 0xF7, 0xD9, 0xE4, 0x0C, 0x64, 0xC5, 0x7D,
  155. 0x03, 0x8E, 0x05, 0x3C, 0x0A, 0x40, 0x17, 0xAD, 0xA8, 0x0F, 0x9B, 0xF4,
  156. 0x8B, 0xA7, 0xDB, 0x16, 0x4F, 0x4A, 0x57, 0x0B, 0x89, 0x80, 0x0B, 0x9F,
  157. 0x26, 0x56, 0x3F, 0x1D, 0xFA, 0x52, 0x2D, 0x1A, 0x9E, 0xDC, 0x42, 0xA3,
  158. 0x2E, 0xA9, 0x87, 0xE3, 0x8B, 0x45, 0x5E, 0xEE, 0x99, 0xB8, 0x30, 0x15,
  159. 0x58, 0xA3, 0x5F, 0xB5, 0x69, 0xD8, 0x0C, 0xE8, 0x6B, 0x36, 0xD8, 0xAB,
  160. 0xD8, 0xE4, 0x77, 0x46, 0x13, 0xA2, 0x15, 0xB3, 0x9C, 0xAD, 0x99, 0x91,
  161. 0xE5, 0xA3, 0x30, 0x7D, 0x40, 0x70, 0xB3, 0x32, 0x5E, 0xAF, 0x96, 0x8D,
  162. 0xE6, 0x3F, 0x47, 0xA3, 0x18, 0xDA, 0xE1, 0x9A, 0x20, 0x11, 0xE1, 0x49,
  163. 0x51, 0x45, 0xE3, 0x8C, 0xA5, 0x56, 0x39, 0x67, 0xCB, 0x9D, 0xCF, 0xBA,
  164. 0xF4, 0x46, 0x4E, 0x0A, 0xB6, 0x0B, 0xA9, 0xB4, 0xF6, 0xF1, 0x6A, 0xC8,
  165. 0x63, 0xE2, 0xB4, 0xB2, 0x9F, 0x44, 0xAA, 0x0A, 0xDA, 0x53, 0xF7, 0x52,
  166. 0x14, 0x57, 0xEE, 0x2C, 0x5D, 0x31, 0x9C, 0x27, 0x03, 0x64, 0x9E, 0xC0,
  167. 0x1E, 0x4B, 0x1B, 0x4F, 0xEE, 0xA6, 0x3F, 0xC1, 0x3E, 0x61, 0x93, 0x02,
  168. 0x01, 0x02, 0x04, 0x82, 0x01, 0x04, 0x02, 0x82, 0x01, 0x00, 0x7E, 0xC2,
  169. 0x04, 0xF9, 0x95, 0xC7, 0xEF, 0x96, 0xBE, 0xA0, 0x9D, 0x2D, 0xC3, 0x0C,
  170. 0x3A, 0x67, 0x02, 0x7C, 0x7D, 0x3B, 0xC9, 0xB1, 0xDE, 0x13, 0x97, 0x64,
  171. 0xEF, 0x87, 0x80, 0x4F, 0xBF, 0xA2, 0xAC, 0x18, 0x6B, 0xD5, 0xB2, 0x42,
  172. 0x0F, 0xDA, 0x28, 0x40, 0x93, 0x40, 0xB2, 0x1E, 0x80, 0xB0, 0x6C, 0xDE,
  173. 0x9C, 0x54, 0xA4, 0xB4, 0x68, 0x29, 0xE0, 0x13, 0x57, 0x1D, 0xC9, 0x87,
  174. 0xC0, 0xDE, 0x2F, 0x1D, 0x72, 0xF0, 0xC0, 0xE4, 0x4E, 0x04, 0x48, 0xF5,
  175. 0x2D, 0x8D, 0x9A, 0x1B, 0xE5, 0xEB, 0x06, 0xAB, 0x7C, 0x74, 0x10, 0x3C,
  176. 0xA8, 0x2D, 0x39, 0xBC, 0xE3, 0x15, 0x3E, 0x63, 0x37, 0x8C, 0x1B, 0xF1,
  177. 0xB3, 0x99, 0xB6, 0xAE, 0x5A, 0xEB, 0xB3, 0x3D, 0x30, 0x39, 0x69, 0xDB,
  178. 0xF2, 0x4F, 0x94, 0xB7, 0x71, 0xAF, 0xBA, 0x5C, 0x1F, 0xF8, 0x6B, 0xE5,
  179. 0xD1, 0xB1, 0x00, 0x81, 0xE2, 0x6D, 0xEC, 0x65, 0xF7, 0x7E, 0xCE, 0x03,
  180. 0x84, 0x68, 0x42, 0x6A, 0x8B, 0x47, 0x8E, 0x4A, 0x88, 0xDE, 0x82, 0xDD,
  181. 0xAF, 0xA9, 0x6F, 0x18, 0xF7, 0xC6, 0xE2, 0xB9, 0x97, 0xCE, 0x47, 0x8F,
  182. 0x85, 0x19, 0x61, 0x42, 0x67, 0x21, 0x7D, 0x13, 0x6E, 0xB5, 0x5A, 0x62,
  183. 0xF3, 0x08, 0xE2, 0x70, 0x3B, 0x0E, 0x85, 0x3C, 0xA1, 0xD3, 0xED, 0x7A,
  184. 0x43, 0xD6, 0xDE, 0x30, 0x5C, 0x48, 0xB2, 0x99, 0xAB, 0x3E, 0x65, 0xA6,
  185. 0x66, 0x80, 0x22, 0xFF, 0x92, 0xC1, 0x42, 0x1C, 0x30, 0x87, 0x74, 0x1E,
  186. 0x53, 0x57, 0x7C, 0xF8, 0x77, 0x51, 0xF1, 0x74, 0x16, 0xF4, 0x45, 0x26,
  187. 0x77, 0x0A, 0x05, 0x96, 0x13, 0x12, 0x06, 0x86, 0x2B, 0xB8, 0x49, 0x82,
  188. 0x69, 0x43, 0x0A, 0x57, 0xA7, 0x30, 0x19, 0x4C, 0xB8, 0x47, 0x82, 0x6E,
  189. 0x64, 0x7A, 0x06, 0x13, 0x5A, 0x82, 0x98, 0xD6, 0x7A, 0x09, 0xEC, 0x03,
  190. 0x8D, 0x03
  191. };
  192. #endif /* OPENSSL_NO_DH */
  193. #ifndef OPENSSL_NO_EC
  194. /*
  195. * kExampleECKeyDER is a sample EC private key encoded as an ECPrivateKey
  196. * structure.
  197. */
  198. static const unsigned char kExampleECKeyDER[] = {
  199. 0x30, 0x77, 0x02, 0x01, 0x01, 0x04, 0x20, 0x07, 0x0f, 0x08, 0x72, 0x7a,
  200. 0xd4, 0xa0, 0x4a, 0x9c, 0xdd, 0x59, 0xc9, 0x4d, 0x89, 0x68, 0x77, 0x08,
  201. 0xb5, 0x6f, 0xc9, 0x5d, 0x30, 0x77, 0x0e, 0xe8, 0xd1, 0xc9, 0xce, 0x0a,
  202. 0x8b, 0xb4, 0x6a, 0xa0, 0x0a, 0x06, 0x08, 0x2a, 0x86, 0x48, 0xce, 0x3d,
  203. 0x03, 0x01, 0x07, 0xa1, 0x44, 0x03, 0x42, 0x00, 0x04, 0xe6, 0x2b, 0x69,
  204. 0xe2, 0xbf, 0x65, 0x9f, 0x97, 0xbe, 0x2f, 0x1e, 0x0d, 0x94, 0x8a, 0x4c,
  205. 0xd5, 0x97, 0x6b, 0xb7, 0xa9, 0x1e, 0x0d, 0x46, 0xfb, 0xdd, 0xa9, 0xa9,
  206. 0x1e, 0x9d, 0xdc, 0xba, 0x5a, 0x01, 0xe7, 0xd6, 0x97, 0xa8, 0x0a, 0x18,
  207. 0xf9, 0xc3, 0xc4, 0xa3, 0x1e, 0x56, 0xe2, 0x7c, 0x83, 0x48, 0xdb, 0x16,
  208. 0x1a, 0x1c, 0xf5, 0x1d, 0x7e, 0xf1, 0x94, 0x2d, 0x4b, 0xcf, 0x72, 0x22,
  209. 0xc1,
  210. };
  211. /* P-384 sample EC private key in PKCS8 format (no public key) */
  212. static const unsigned char kExampleECKey2DER[] = {
  213. 0x30, 0x4E, 0x02, 0x01, 0x00, 0x30, 0x10, 0x06, 0x07, 0x2A, 0x86, 0x48,
  214. 0xCE, 0x3D, 0x02, 0x01, 0x06, 0x05, 0x2B, 0x81, 0x04, 0x00, 0x22, 0x04,
  215. 0x37, 0x30, 0x35, 0x02, 0x01, 0x01, 0x04, 0x30, 0x73, 0xE3, 0x3A, 0x05,
  216. 0xF2, 0xB6, 0x99, 0x6D, 0x0C, 0x33, 0x7F, 0x15, 0x9E, 0x10, 0xA9, 0x17,
  217. 0x4C, 0x0A, 0x82, 0x57, 0x71, 0x13, 0x7A, 0xAC, 0x46, 0xA2, 0x5E, 0x1C,
  218. 0xE0, 0xC7, 0xB2, 0xF8, 0x20, 0x40, 0xC2, 0x27, 0xC8, 0xBE, 0x02, 0x7E,
  219. 0x96, 0x69, 0xE0, 0x04, 0xCB, 0x89, 0x0B, 0x42
  220. };
  221. static const unsigned char kExampleECXKey2DER[] = {
  222. 0x30, 0x2E, 0x02, 0x01, 0x00, 0x30, 0x05, 0x06, 0x03, 0x2b, 0x65, 0x6e,
  223. 0x04, 0x22, 0x04, 0x20, 0xc8, 0xa9, 0xd5, 0xa9, 0x10, 0x91, 0xad, 0x85,
  224. 0x1c, 0x66, 0x8b, 0x07, 0x36, 0xc1, 0xc9, 0xa0, 0x29, 0x36, 0xc0, 0xd3,
  225. 0xad, 0x62, 0x67, 0x08, 0x58, 0x08, 0x80, 0x47, 0xba, 0x05, 0x74, 0x75
  226. };
  227. #endif
  228. typedef struct APK_DATA_st {
  229. const unsigned char *kder;
  230. size_t size;
  231. int evptype;
  232. } APK_DATA;
  233. static APK_DATA keydata[] = {
  234. {kExampleRSAKeyDER, sizeof(kExampleRSAKeyDER), EVP_PKEY_RSA},
  235. {kExampleRSAKeyPKCS8, sizeof(kExampleRSAKeyPKCS8), EVP_PKEY_RSA},
  236. #ifndef OPENSSL_NO_EC
  237. {kExampleECXKey2DER, sizeof(kExampleECXKey2DER), EVP_PKEY_X25519},
  238. {kExampleECKeyDER, sizeof(kExampleECKeyDER), EVP_PKEY_EC},
  239. {kExampleECKey2DER, sizeof(kExampleECKey2DER), EVP_PKEY_EC},
  240. #endif
  241. #ifndef OPENSSL_NO_DH
  242. {kExampleDHPrivateKeyDER, sizeof(kExampleDHPrivateKeyDER), EVP_PKEY_DH},
  243. #endif
  244. };
  245. static int pkey_has_private(EVP_PKEY *key, const char *privtag,
  246. int use_octstring)
  247. {
  248. int ret = 0;
  249. if (use_octstring) {
  250. unsigned char buf[64];
  251. ret = EVP_PKEY_get_octet_string_param(key, privtag, buf, sizeof(buf),
  252. NULL);
  253. } else {
  254. BIGNUM *bn = NULL;
  255. ret = EVP_PKEY_get_bn_param(key, privtag, &bn);
  256. BN_free(bn);
  257. }
  258. return ret;
  259. }
  260. static int do_pkey_tofrom_data_select(EVP_PKEY *key, const char *keytype)
  261. {
  262. int ret = 0;
  263. OSSL_PARAM *pub_params = NULL, *keypair_params = NULL;
  264. EVP_PKEY *fromkey = NULL, *fromkeypair = NULL;
  265. EVP_PKEY_CTX *fromctx = NULL;
  266. const char *privtag = strcmp(keytype, "RSA") == 0 ? "d" : "priv";
  267. const int use_octstring = strcmp(keytype, "X25519") == 0;
  268. /*
  269. * Select only the public key component when using EVP_PKEY_todata() and
  270. * check that the resulting param array does not contain a private key.
  271. */
  272. if (!TEST_int_eq(EVP_PKEY_todata(key, EVP_PKEY_PUBLIC_KEY, &pub_params), 1)
  273. || !TEST_ptr_null(OSSL_PARAM_locate(pub_params, privtag)))
  274. goto end;
  275. /*
  276. * Select the keypair when using EVP_PKEY_todata() and check that
  277. * the param array contains a private key.
  278. */
  279. if (!TEST_int_eq(EVP_PKEY_todata(key, EVP_PKEY_KEYPAIR, &keypair_params), 1)
  280. || !TEST_ptr(OSSL_PARAM_locate(keypair_params, privtag)))
  281. goto end;
  282. /*
  283. * Select only the public key when using EVP_PKEY_fromdata() and check that
  284. * the resulting key does not contain a private key.
  285. */
  286. if (!TEST_ptr(fromctx = EVP_PKEY_CTX_new_from_name(mainctx, keytype, NULL))
  287. || !TEST_int_eq(EVP_PKEY_fromdata_init(fromctx), 1)
  288. || !TEST_int_eq(EVP_PKEY_fromdata(fromctx, &fromkey, EVP_PKEY_PUBLIC_KEY,
  289. keypair_params), 1)
  290. || !TEST_false(pkey_has_private(fromkey, privtag, use_octstring)))
  291. goto end;
  292. /*
  293. * Select the keypair when using EVP_PKEY_fromdata() and check that
  294. * the resulting key contains a private key.
  295. */
  296. if (!TEST_int_eq(EVP_PKEY_fromdata(fromctx, &fromkeypair,
  297. EVP_PKEY_KEYPAIR, keypair_params), 1)
  298. || !TEST_true(pkey_has_private(fromkeypair, privtag, use_octstring)))
  299. goto end;
  300. ret = 1;
  301. end:
  302. EVP_PKEY_free(fromkeypair);
  303. EVP_PKEY_free(fromkey);
  304. EVP_PKEY_CTX_free(fromctx);
  305. OSSL_PARAM_free(keypair_params);
  306. OSSL_PARAM_free(pub_params);
  307. return ret;
  308. }
  309. #ifndef OPENSSL_NO_DH
  310. static int test_dh_tofrom_data_select(void)
  311. {
  312. int ret;
  313. OSSL_PARAM params[2];
  314. EVP_PKEY *key = NULL;
  315. EVP_PKEY_CTX *gctx = NULL;
  316. # ifndef OPENSSL_NO_DEPRECATED_3_0
  317. const DH *dhkey;
  318. const BIGNUM *privkey;
  319. # endif
  320. params[0] = OSSL_PARAM_construct_utf8_string("group", "ffdhe2048", 0);
  321. params[1] = OSSL_PARAM_construct_end();
  322. ret = TEST_ptr(gctx = EVP_PKEY_CTX_new_from_name(mainctx, "DHX", NULL))
  323. && TEST_int_gt(EVP_PKEY_keygen_init(gctx), 0)
  324. && TEST_true(EVP_PKEY_CTX_set_params(gctx, params))
  325. && TEST_int_gt(EVP_PKEY_generate(gctx, &key), 0)
  326. && TEST_true(do_pkey_tofrom_data_select(key, "DHX"));
  327. # ifndef OPENSSL_NO_DEPRECATED_3_0
  328. ret = ret && TEST_ptr(dhkey = EVP_PKEY_get0_DH(key))
  329. && TEST_ptr(privkey = DH_get0_priv_key(dhkey))
  330. && TEST_int_le(BN_num_bits(privkey), 225);
  331. # endif
  332. EVP_PKEY_free(key);
  333. EVP_PKEY_CTX_free(gctx);
  334. return ret;
  335. }
  336. #endif
  337. #ifndef OPENSSL_NO_EC
  338. static int test_ec_tofrom_data_select(void)
  339. {
  340. int ret;
  341. EVP_PKEY *key = NULL;
  342. ret = TEST_ptr(key = EVP_PKEY_Q_keygen(mainctx, NULL, "EC", "P-256"))
  343. && TEST_true(do_pkey_tofrom_data_select(key, "EC"));
  344. EVP_PKEY_free(key);
  345. return ret;
  346. }
  347. static int test_ecx_tofrom_data_select(void)
  348. {
  349. int ret;
  350. EVP_PKEY *key = NULL;
  351. ret = TEST_ptr(key = EVP_PKEY_Q_keygen(mainctx, NULL, "X25519"))
  352. && TEST_true(do_pkey_tofrom_data_select(key, "X25519"));
  353. EVP_PKEY_free(key);
  354. return ret;
  355. }
  356. #endif
  357. static int test_rsa_tofrom_data_select(void)
  358. {
  359. int ret;
  360. EVP_PKEY *key = NULL;
  361. const unsigned char *pdata = kExampleRSAKeyDER;
  362. int pdata_len = sizeof(kExampleRSAKeyDER);
  363. ret = TEST_ptr(key = d2i_AutoPrivateKey_ex(NULL, &pdata, pdata_len,
  364. mainctx, NULL))
  365. && TEST_true(do_pkey_tofrom_data_select(key, "RSA"));
  366. EVP_PKEY_free(key);
  367. return ret;
  368. }
  369. /* This is the equivalent of test_d2i_AutoPrivateKey in evp_extra_test */
  370. static int test_d2i_AutoPrivateKey_ex(int i)
  371. {
  372. int ret = 0;
  373. const unsigned char *p;
  374. EVP_PKEY *pkey = NULL;
  375. const APK_DATA *ak = &keydata[i];
  376. const unsigned char *input = ak->kder;
  377. size_t input_len = ak->size;
  378. int expected_id = ak->evptype;
  379. BIGNUM *p_bn = NULL;
  380. BIGNUM *g_bn = NULL;
  381. BIGNUM *priv_bn = NULL;
  382. p = input;
  383. if (!TEST_ptr(pkey = d2i_AutoPrivateKey_ex(NULL, &p, input_len, mainctx,
  384. NULL))
  385. || !TEST_ptr_eq(p, input + input_len)
  386. || !TEST_int_eq(EVP_PKEY_get_id(pkey), expected_id))
  387. goto done;
  388. if (ak->evptype == EVP_PKEY_RSA) {
  389. if (!TEST_true(EVP_PKEY_get_bn_param(pkey, OSSL_PKEY_PARAM_RSA_D,
  390. &priv_bn)))
  391. goto done;
  392. } else if (ak->evptype == EVP_PKEY_X25519) {
  393. unsigned char buffer[32];
  394. size_t len;
  395. if (!TEST_true(EVP_PKEY_get_octet_string_param(pkey,
  396. OSSL_PKEY_PARAM_PRIV_KEY,
  397. buffer, sizeof(buffer),
  398. &len)))
  399. goto done;
  400. } else {
  401. if (!TEST_true(EVP_PKEY_get_bn_param(pkey, OSSL_PKEY_PARAM_PRIV_KEY,
  402. &priv_bn)))
  403. goto done;
  404. }
  405. if (ak->evptype == EVP_PKEY_DH) {
  406. if (!TEST_true(EVP_PKEY_get_bn_param(pkey, OSSL_PKEY_PARAM_FFC_P, &p_bn))
  407. || !TEST_true(EVP_PKEY_get_bn_param(pkey, OSSL_PKEY_PARAM_FFC_G,
  408. &g_bn)))
  409. goto done;
  410. }
  411. ret = 1;
  412. done:
  413. BN_free(p_bn);
  414. BN_free(g_bn);
  415. BN_free(priv_bn);
  416. EVP_PKEY_free(pkey);
  417. return ret;
  418. }
  419. #ifndef OPENSSL_NO_DES
  420. static int test_pkcs8key_nid_bio(void)
  421. {
  422. int ret;
  423. const int nid = NID_pbe_WithSHA1And3_Key_TripleDES_CBC;
  424. static const char pwd[] = "PASSWORD";
  425. EVP_PKEY *pkey = NULL, *pkey_dec = NULL;
  426. BIO *in = NULL, *enc_bio = NULL;
  427. char *enc_data = NULL;
  428. long enc_datalen = 0;
  429. OSSL_PROVIDER *provider = NULL;
  430. ret = TEST_ptr(provider = OSSL_PROVIDER_load(NULL, "default"))
  431. && TEST_ptr(enc_bio = BIO_new(BIO_s_mem()))
  432. && TEST_ptr(in = BIO_new_mem_buf(kExampleRSAKeyPKCS8,
  433. sizeof(kExampleRSAKeyPKCS8)))
  434. && TEST_ptr(pkey = d2i_PrivateKey_ex_bio(in, NULL, NULL, NULL))
  435. && TEST_int_eq(i2d_PKCS8PrivateKey_nid_bio(enc_bio, pkey, nid,
  436. pwd, sizeof(pwd) - 1,
  437. NULL, NULL), 1)
  438. && TEST_int_gt(enc_datalen = BIO_get_mem_data(enc_bio, &enc_data), 0)
  439. && TEST_ptr(pkey_dec = d2i_PKCS8PrivateKey_bio(enc_bio, NULL, NULL,
  440. (void *)pwd))
  441. && TEST_true(EVP_PKEY_eq(pkey, pkey_dec));
  442. EVP_PKEY_free(pkey_dec);
  443. EVP_PKEY_free(pkey);
  444. BIO_free(in);
  445. BIO_free(enc_bio);
  446. OSSL_PROVIDER_unload(provider);
  447. return ret;
  448. }
  449. #endif /* OPENSSL_NO_DES */
  450. static int test_alternative_default(void)
  451. {
  452. OSSL_LIB_CTX *oldctx;
  453. EVP_MD *sha256;
  454. int ok = 0;
  455. /*
  456. * setup_tests() loaded the "null" provider in the current default, so
  457. * we know this fetch should fail.
  458. */
  459. if (!TEST_ptr_null(sha256 = EVP_MD_fetch(NULL, "SHA2-256", NULL)))
  460. goto err;
  461. /*
  462. * Now we switch to our main library context, and try again. Since no
  463. * providers are loaded in this one, it should fall back to the default.
  464. */
  465. if (!TEST_ptr(oldctx = OSSL_LIB_CTX_set0_default(mainctx))
  466. || !TEST_ptr(sha256 = EVP_MD_fetch(NULL, "SHA2-256", NULL)))
  467. goto err;
  468. EVP_MD_free(sha256);
  469. sha256 = NULL;
  470. /*
  471. * Switching back should give us our main library context back, and
  472. * fetching SHA2-256 should fail again.
  473. */
  474. if (!TEST_ptr_eq(OSSL_LIB_CTX_set0_default(oldctx), mainctx)
  475. || !TEST_ptr_null(sha256 = EVP_MD_fetch(NULL, "SHA2-256", NULL)))
  476. goto err;
  477. ok = 1;
  478. err:
  479. EVP_MD_free(sha256);
  480. return ok;
  481. }
  482. static int test_provider_unload_effective(int testid)
  483. {
  484. EVP_MD *sha256 = NULL;
  485. OSSL_PROVIDER *provider = NULL;
  486. int ok = 0;
  487. if (!TEST_ptr(provider = OSSL_PROVIDER_load(NULL, "default"))
  488. || !TEST_ptr(sha256 = EVP_MD_fetch(NULL, "SHA2-256", NULL)))
  489. goto err;
  490. if (testid > 0) {
  491. OSSL_PROVIDER_unload(provider);
  492. provider = NULL;
  493. EVP_MD_free(sha256);
  494. sha256 = NULL;
  495. } else {
  496. EVP_MD_free(sha256);
  497. sha256 = NULL;
  498. OSSL_PROVIDER_unload(provider);
  499. provider = NULL;
  500. }
  501. /*
  502. * setup_tests() loaded the "null" provider in the current default, and
  503. * we unloaded it above after the load so we know this fetch should fail.
  504. */
  505. if (!TEST_ptr_null(sha256 = EVP_MD_fetch(NULL, "SHA2-256", NULL)))
  506. goto err;
  507. ok = 1;
  508. err:
  509. EVP_MD_free(sha256);
  510. OSSL_PROVIDER_unload(provider);
  511. return ok;
  512. }
  513. static int test_d2i_PrivateKey_ex(int testid)
  514. {
  515. int ok = 0;
  516. OSSL_PROVIDER *provider = NULL;
  517. BIO *key_bio = NULL;
  518. EVP_PKEY *pkey = NULL;
  519. int id = (testid == 0) ? 0 : 2;
  520. if (!TEST_ptr(provider = OSSL_PROVIDER_load(NULL, "default")))
  521. goto err;
  522. if (!TEST_ptr(key_bio = BIO_new_mem_buf(keydata[id].kder, keydata[id].size)))
  523. goto err;
  524. if (!TEST_ptr_null(pkey = PEM_read_bio_PrivateKey(key_bio, NULL, NULL, NULL)))
  525. goto err;
  526. ERR_clear_error();
  527. if (!TEST_int_ge(BIO_seek(key_bio, 0), 0))
  528. goto err;
  529. ok = TEST_ptr(pkey = d2i_PrivateKey_bio(key_bio, NULL));
  530. TEST_int_eq(ERR_peek_error(), 0);
  531. test_openssl_errors();
  532. err:
  533. EVP_PKEY_free(pkey);
  534. BIO_free(key_bio);
  535. OSSL_PROVIDER_unload(provider);
  536. return ok;
  537. }
  538. static int test_PEM_read_bio_negative(int testid)
  539. {
  540. int ok = 0;
  541. OSSL_PROVIDER *provider = NULL;
  542. BIO *key_bio = NULL;
  543. EVP_PKEY *pkey = NULL;
  544. if (!TEST_ptr(key_bio = BIO_new_mem_buf(keydata[testid].kder, keydata[testid].size)))
  545. goto err;
  546. ERR_clear_error();
  547. if (!TEST_ptr_null(pkey = PEM_read_bio_PrivateKey(key_bio, NULL, NULL, NULL)))
  548. goto err;
  549. if (!TEST_int_ne(ERR_peek_error(), 0))
  550. goto err;
  551. if (!TEST_ptr(provider = OSSL_PROVIDER_load(NULL, "default")))
  552. goto err;
  553. if (!TEST_int_ge(BIO_seek(key_bio, 0), 0))
  554. goto err;
  555. ERR_clear_error();
  556. if (!TEST_ptr_null(pkey = PEM_read_bio_PrivateKey(key_bio, NULL, NULL, NULL)))
  557. goto err;
  558. if (!TEST_int_ne(ERR_peek_error(), 0))
  559. goto err;
  560. ok = 1;
  561. err:
  562. test_openssl_errors();
  563. EVP_PKEY_free(pkey);
  564. BIO_free(key_bio);
  565. OSSL_PROVIDER_unload(provider);
  566. return ok;
  567. }
  568. static int do_fromdata_key_is_equal(const OSSL_PARAM params[],
  569. const EVP_PKEY *expected, const char *type)
  570. {
  571. EVP_PKEY_CTX *ctx = NULL;
  572. EVP_PKEY *pkey = NULL;
  573. int ret;
  574. ret = TEST_ptr(ctx = EVP_PKEY_CTX_new_from_name(mainctx, type, NULL))
  575. && TEST_int_eq(EVP_PKEY_fromdata_init(ctx), 1)
  576. && TEST_int_eq(EVP_PKEY_fromdata(ctx, &pkey,
  577. EVP_PKEY_KEYPAIR,
  578. (OSSL_PARAM *)params), 1)
  579. && TEST_true(EVP_PKEY_eq(pkey, expected));
  580. EVP_PKEY_CTX_free(ctx);
  581. EVP_PKEY_free(pkey);
  582. return ret;
  583. }
  584. #ifndef OPENSSL_NO_DSA
  585. /*
  586. * This data was generated using:
  587. * > openssl genpkey \
  588. * -genparam -algorithm DSA -pkeyopt type:fips186_4 -text \
  589. * -pkeyopt gindex:5 -out dsa_param.pem
  590. * > openssl genpkey \
  591. * -paramfile dsa_param.pem -pkeyopt type:fips186_4 -out dsa_priv.pem
  592. */
  593. static const unsigned char dsa_key[] = {
  594. 0x30, 0x82, 0x03, 0x4e, 0x02, 0x01, 0x00, 0x02, 0x82, 0x01, 0x01, 0x00,
  595. 0xda, 0xb3, 0x46, 0x4d, 0x54, 0x57, 0xc7, 0xb4, 0x61, 0xa0, 0x6f, 0x66,
  596. 0x17, 0xda, 0xeb, 0x90, 0xf0, 0xa3, 0xd1, 0x29, 0xc9, 0x5f, 0xf2, 0x21,
  597. 0x3d, 0x85, 0xa3, 0x4a, 0xf0, 0xf8, 0x36, 0x39, 0x1b, 0xe3, 0xee, 0x37,
  598. 0x70, 0x06, 0x9b, 0xe8, 0xe3, 0x0a, 0xd2, 0xf1, 0xf6, 0xc4, 0x42, 0x23,
  599. 0x1f, 0x74, 0x78, 0xc2, 0x16, 0xf5, 0xce, 0xd6, 0xab, 0xa0, 0xc6, 0xe8,
  600. 0x99, 0x3d, 0xf8, 0x8b, 0xfb, 0x47, 0xf8, 0x5e, 0x05, 0x68, 0x6d, 0x8b,
  601. 0xa8, 0xad, 0xa1, 0xc2, 0x3a, 0x4e, 0xe0, 0xad, 0xec, 0x38, 0x75, 0x21,
  602. 0x55, 0x22, 0xce, 0xa2, 0xe9, 0xe5, 0x3b, 0xd7, 0x44, 0xeb, 0x5a, 0x03,
  603. 0x59, 0xa0, 0xc5, 0x7a, 0x92, 0x59, 0x7d, 0x7a, 0x07, 0x80, 0xfc, 0x4e,
  604. 0xf8, 0x56, 0x7e, 0xf1, 0x06, 0xe0, 0xba, 0xb2, 0xe7, 0x5b, 0x22, 0x55,
  605. 0xee, 0x4b, 0x42, 0x61, 0x67, 0x2c, 0x43, 0x9a, 0x38, 0x2b, 0x17, 0xc2,
  606. 0x62, 0x12, 0x8b, 0x0b, 0x22, 0x8c, 0x0c, 0x1c, 0x1c, 0x92, 0xb1, 0xec,
  607. 0x70, 0xce, 0x0f, 0x8c, 0xff, 0x8d, 0x21, 0xf9, 0x19, 0x68, 0x4d, 0x32,
  608. 0x59, 0x78, 0x42, 0x1d, 0x0c, 0xc5, 0x1a, 0xcb, 0x28, 0xe2, 0xc1, 0x1a,
  609. 0x35, 0xf1, 0x42, 0x0a, 0x19, 0x39, 0xfa, 0x83, 0xd1, 0xb4, 0xaa, 0x69,
  610. 0x0f, 0xc2, 0x8e, 0xf9, 0x59, 0x2c, 0xee, 0x11, 0xfc, 0x3e, 0x4b, 0x44,
  611. 0xfb, 0x9a, 0x32, 0xc8, 0x78, 0x23, 0x56, 0x85, 0x49, 0x21, 0x43, 0x12,
  612. 0x79, 0xbd, 0xa0, 0x70, 0x47, 0x2f, 0xae, 0xb6, 0xd7, 0x6c, 0xc6, 0x07,
  613. 0x76, 0xa9, 0x8a, 0xa2, 0x16, 0x02, 0x89, 0x1f, 0x1a, 0xd1, 0xa2, 0x96,
  614. 0x56, 0xd1, 0x1f, 0x10, 0xe1, 0xe5, 0x9f, 0x3f, 0xdd, 0x09, 0x0c, 0x40,
  615. 0x90, 0x71, 0xef, 0x14, 0x41, 0x02, 0x82, 0x3a, 0x6b, 0xe1, 0xf8, 0x2c,
  616. 0x5d, 0xbe, 0xfd, 0x1b, 0x02, 0x1d, 0x00, 0xe0, 0x20, 0xe0, 0x7c, 0x02,
  617. 0x16, 0xa7, 0x6c, 0x6a, 0x19, 0xba, 0xd5, 0x83, 0x73, 0xf3, 0x7d, 0x31,
  618. 0xef, 0xa7, 0xe1, 0x5d, 0x5b, 0x7f, 0xf3, 0xfc, 0xda, 0x84, 0x31, 0x02,
  619. 0x82, 0x01, 0x01, 0x00, 0x83, 0xdb, 0xa1, 0xbc, 0x3e, 0xc7, 0x29, 0xa5,
  620. 0x6a, 0x5c, 0x2c, 0xe8, 0x7a, 0x8c, 0x7e, 0xe8, 0xb8, 0x3e, 0x13, 0x47,
  621. 0xcd, 0x36, 0x7e, 0x79, 0x30, 0x7a, 0x28, 0x03, 0xd3, 0xd4, 0xd2, 0xe3,
  622. 0xee, 0x3b, 0x46, 0xda, 0xe0, 0x71, 0xe6, 0xcf, 0x46, 0x86, 0x0a, 0x37,
  623. 0x57, 0xb6, 0xe9, 0xcf, 0xa1, 0x78, 0x19, 0xb8, 0x72, 0x9f, 0x30, 0x8c,
  624. 0x2a, 0x04, 0x7c, 0x2f, 0x0c, 0x27, 0xa7, 0xb3, 0x23, 0xe0, 0x46, 0xf2,
  625. 0x75, 0x0c, 0x03, 0x4c, 0xad, 0xfb, 0xc1, 0xcb, 0x28, 0xcd, 0xa0, 0x63,
  626. 0xdb, 0x44, 0x88, 0xe0, 0xda, 0x6c, 0x5b, 0x89, 0xb2, 0x5b, 0x40, 0x6d,
  627. 0xeb, 0x78, 0x7a, 0xd5, 0xaf, 0x40, 0x52, 0x46, 0x63, 0x92, 0x13, 0x0d,
  628. 0xee, 0xee, 0xf9, 0x53, 0xca, 0x2d, 0x4e, 0x3b, 0x13, 0xd8, 0x0f, 0x50,
  629. 0xd0, 0x44, 0x57, 0x67, 0x0f, 0x45, 0x8f, 0x21, 0x30, 0x97, 0x9e, 0x80,
  630. 0xd9, 0xd0, 0x91, 0xb7, 0xc9, 0x5a, 0x69, 0xda, 0xeb, 0xd5, 0xea, 0x37,
  631. 0xf6, 0xb3, 0xbe, 0x1f, 0x24, 0xf1, 0x55, 0x14, 0x28, 0x05, 0xb5, 0xd8,
  632. 0x84, 0x0f, 0x62, 0x85, 0xaa, 0xec, 0x77, 0x64, 0xfd, 0x80, 0x7c, 0x41,
  633. 0x00, 0x88, 0xa3, 0x79, 0x7d, 0x4f, 0x6f, 0xe3, 0x76, 0xf4, 0xb5, 0x97,
  634. 0xb7, 0xeb, 0x67, 0x28, 0xba, 0x07, 0x1a, 0x59, 0x32, 0xc1, 0x53, 0xd9,
  635. 0x05, 0x6b, 0x63, 0x93, 0xce, 0xa1, 0xd9, 0x7a, 0xb2, 0xff, 0x1c, 0x12,
  636. 0x0a, 0x9a, 0xe5, 0x51, 0x1e, 0xba, 0xfc, 0x95, 0x2e, 0x28, 0xa9, 0xfc,
  637. 0x4c, 0xed, 0x7b, 0x05, 0xca, 0x67, 0xe0, 0x2d, 0xd7, 0x54, 0xb3, 0x05,
  638. 0x1c, 0x23, 0x2b, 0x35, 0x2e, 0x19, 0x48, 0x59, 0x0e, 0x58, 0xa8, 0x01,
  639. 0x56, 0xfb, 0x78, 0x90, 0xba, 0x08, 0x77, 0x94, 0x45, 0x05, 0x13, 0xc7,
  640. 0x6b, 0x96, 0xd2, 0xa3, 0xa6, 0x01, 0x9f, 0x34, 0x02, 0x82, 0x01, 0x00,
  641. 0x16, 0x1a, 0xb4, 0x6d, 0x9f, 0x16, 0x6c, 0xcc, 0x91, 0x66, 0xfe, 0x30,
  642. 0xeb, 0x8e, 0x44, 0xba, 0x2b, 0x7a, 0xc9, 0xa8, 0x95, 0xf2, 0xa6, 0x38,
  643. 0xd8, 0xaf, 0x3e, 0x91, 0x68, 0xe8, 0x52, 0xf3, 0x97, 0x37, 0x70, 0xf2,
  644. 0x47, 0xa3, 0xf4, 0x62, 0x26, 0xf5, 0x3b, 0x71, 0x52, 0x50, 0x15, 0x9c,
  645. 0x6d, 0xa6, 0x6d, 0x92, 0x4c, 0x48, 0x76, 0x31, 0x54, 0x48, 0xa5, 0x99,
  646. 0x7a, 0xd4, 0x61, 0xf7, 0x21, 0x44, 0xe7, 0xd8, 0x82, 0xc3, 0x50, 0xd3,
  647. 0xd9, 0xd4, 0x66, 0x20, 0xab, 0x70, 0x4c, 0x97, 0x9b, 0x8d, 0xac, 0x1f,
  648. 0x78, 0x27, 0x1e, 0x47, 0xf8, 0x3b, 0xd1, 0x55, 0x73, 0xf3, 0xb4, 0x8e,
  649. 0x6d, 0x45, 0x40, 0x54, 0xc6, 0xd8, 0x95, 0x15, 0x27, 0xb7, 0x5f, 0x65,
  650. 0xaa, 0xcb, 0x24, 0xc9, 0x49, 0x87, 0x32, 0xad, 0xcb, 0xf8, 0x35, 0x63,
  651. 0x56, 0x72, 0x7c, 0x4e, 0x6c, 0xad, 0x5f, 0x26, 0x8c, 0xd2, 0x80, 0x41,
  652. 0xaf, 0x88, 0x23, 0x20, 0x03, 0xa4, 0xd5, 0x3c, 0x53, 0x54, 0xb0, 0x3d,
  653. 0xed, 0x0e, 0x9e, 0x53, 0x0a, 0x63, 0x5f, 0xfd, 0x28, 0x57, 0x09, 0x07,
  654. 0x73, 0xf4, 0x0c, 0xd4, 0x71, 0x5d, 0x6b, 0xa0, 0xd7, 0x86, 0x99, 0x29,
  655. 0x9b, 0xca, 0xfb, 0xcc, 0xd6, 0x2f, 0xfe, 0xbe, 0x94, 0xef, 0x1a, 0x0e,
  656. 0x55, 0x84, 0xa7, 0xaf, 0x7b, 0xfa, 0xed, 0x77, 0x61, 0x28, 0x22, 0xee,
  657. 0x6b, 0x11, 0xdd, 0xb0, 0x17, 0x1e, 0x06, 0xe4, 0x29, 0x4c, 0xc2, 0x3f,
  658. 0xd6, 0x75, 0xb6, 0x08, 0x04, 0x55, 0x13, 0x48, 0x4f, 0x44, 0xea, 0x8d,
  659. 0xaf, 0xcb, 0xac, 0x22, 0xc4, 0x6a, 0xb3, 0x86, 0xe5, 0x47, 0xa9, 0xb5,
  660. 0x72, 0x17, 0x23, 0x11, 0x81, 0x7f, 0x00, 0x00, 0x67, 0x5c, 0xf4, 0x58,
  661. 0xcc, 0xe2, 0x46, 0xce, 0xf5, 0x6d, 0xd8, 0x18, 0x91, 0xc4, 0x20, 0xbf,
  662. 0x07, 0x48, 0x45, 0xfd, 0x02, 0x1c, 0x2f, 0x68, 0x44, 0xcb, 0xfb, 0x6b,
  663. 0xcb, 0x8d, 0x02, 0x49, 0x7c, 0xee, 0xd2, 0xa6, 0xd3, 0x43, 0xb8, 0xa4,
  664. 0x09, 0xb7, 0xc1, 0xd4, 0x4b, 0xc3, 0x66, 0xa7, 0xe0, 0x21,
  665. };
  666. static const unsigned char dsa_p[] = {
  667. 0x00, 0xda, 0xb3, 0x46, 0x4d, 0x54, 0x57, 0xc7, 0xb4, 0x61, 0xa0, 0x6f, 0x66, 0x17, 0xda,
  668. 0xeb, 0x90, 0xf0, 0xa3, 0xd1, 0x29, 0xc9, 0x5f, 0xf2, 0x21, 0x3d, 0x85, 0xa3, 0x4a, 0xf0,
  669. 0xf8, 0x36, 0x39, 0x1b, 0xe3, 0xee, 0x37, 0x70, 0x06, 0x9b, 0xe8, 0xe3, 0x0a, 0xd2, 0xf1,
  670. 0xf6, 0xc4, 0x42, 0x23, 0x1f, 0x74, 0x78, 0xc2, 0x16, 0xf5, 0xce, 0xd6, 0xab, 0xa0, 0xc6,
  671. 0xe8, 0x99, 0x3d, 0xf8, 0x8b, 0xfb, 0x47, 0xf8, 0x5e, 0x05, 0x68, 0x6d, 0x8b, 0xa8, 0xad,
  672. 0xa1, 0xc2, 0x3a, 0x4e, 0xe0, 0xad, 0xec, 0x38, 0x75, 0x21, 0x55, 0x22, 0xce, 0xa2, 0xe9,
  673. 0xe5, 0x3b, 0xd7, 0x44, 0xeb, 0x5a, 0x03, 0x59, 0xa0, 0xc5, 0x7a, 0x92, 0x59, 0x7d, 0x7a,
  674. 0x07, 0x80, 0xfc, 0x4e, 0xf8, 0x56, 0x7e, 0xf1, 0x06, 0xe0, 0xba, 0xb2, 0xe7, 0x5b, 0x22,
  675. 0x55, 0xee, 0x4b, 0x42, 0x61, 0x67, 0x2c, 0x43, 0x9a, 0x38, 0x2b, 0x17, 0xc2, 0x62, 0x12,
  676. 0x8b, 0x0b, 0x22, 0x8c, 0x0c, 0x1c, 0x1c, 0x92, 0xb1, 0xec, 0x70, 0xce, 0x0f, 0x8c, 0xff,
  677. 0x8d, 0x21, 0xf9, 0x19, 0x68, 0x4d, 0x32, 0x59, 0x78, 0x42, 0x1d, 0x0c, 0xc5, 0x1a, 0xcb,
  678. 0x28, 0xe2, 0xc1, 0x1a, 0x35, 0xf1, 0x42, 0x0a, 0x19, 0x39, 0xfa, 0x83, 0xd1, 0xb4, 0xaa,
  679. 0x69, 0x0f, 0xc2, 0x8e, 0xf9, 0x59, 0x2c, 0xee, 0x11, 0xfc, 0x3e, 0x4b, 0x44, 0xfb, 0x9a,
  680. 0x32, 0xc8, 0x78, 0x23, 0x56, 0x85, 0x49, 0x21, 0x43, 0x12, 0x79, 0xbd, 0xa0, 0x70, 0x47,
  681. 0x2f, 0xae, 0xb6, 0xd7, 0x6c, 0xc6, 0x07, 0x76, 0xa9, 0x8a, 0xa2, 0x16, 0x02, 0x89, 0x1f,
  682. 0x1a, 0xd1, 0xa2, 0x96, 0x56, 0xd1, 0x1f, 0x10, 0xe1, 0xe5, 0x9f, 0x3f, 0xdd, 0x09, 0x0c,
  683. 0x40, 0x90, 0x71, 0xef, 0x14, 0x41, 0x02, 0x82, 0x3a, 0x6b, 0xe1, 0xf8, 0x2c, 0x5d, 0xbe,
  684. 0xfd, 0x1b
  685. };
  686. static const unsigned char dsa_q[] = {
  687. 0x00, 0xe0, 0x20, 0xe0, 0x7c, 0x02, 0x16, 0xa7, 0x6c, 0x6a, 0x19, 0xba, 0xd5, 0x83, 0x73,
  688. 0xf3, 0x7d, 0x31, 0xef, 0xa7, 0xe1, 0x5d, 0x5b, 0x7f, 0xf3, 0xfc, 0xda, 0x84, 0x31
  689. };
  690. static const unsigned char dsa_g[] = {
  691. 0x00, 0x83, 0xdb, 0xa1, 0xbc, 0x3e, 0xc7, 0x29, 0xa5, 0x6a, 0x5c, 0x2c, 0xe8, 0x7a, 0x8c,
  692. 0x7e, 0xe8, 0xb8, 0x3e, 0x13, 0x47, 0xcd, 0x36, 0x7e, 0x79, 0x30, 0x7a, 0x28, 0x03, 0xd3,
  693. 0xd4, 0xd2, 0xe3, 0xee, 0x3b, 0x46, 0xda, 0xe0, 0x71, 0xe6, 0xcf, 0x46, 0x86, 0x0a, 0x37,
  694. 0x57, 0xb6, 0xe9, 0xcf, 0xa1, 0x78, 0x19, 0xb8, 0x72, 0x9f, 0x30, 0x8c, 0x2a, 0x04, 0x7c,
  695. 0x2f, 0x0c, 0x27, 0xa7, 0xb3, 0x23, 0xe0, 0x46, 0xf2, 0x75, 0x0c, 0x03, 0x4c, 0xad, 0xfb,
  696. 0xc1, 0xcb, 0x28, 0xcd, 0xa0, 0x63, 0xdb, 0x44, 0x88, 0xe0, 0xda, 0x6c, 0x5b, 0x89, 0xb2,
  697. 0x5b, 0x40, 0x6d, 0xeb, 0x78, 0x7a, 0xd5, 0xaf, 0x40, 0x52, 0x46, 0x63, 0x92, 0x13, 0x0d,
  698. 0xee, 0xee, 0xf9, 0x53, 0xca, 0x2d, 0x4e, 0x3b, 0x13, 0xd8, 0x0f, 0x50, 0xd0, 0x44, 0x57,
  699. 0x67, 0x0f, 0x45, 0x8f, 0x21, 0x30, 0x97, 0x9e, 0x80, 0xd9, 0xd0, 0x91, 0xb7, 0xc9, 0x5a,
  700. 0x69, 0xda, 0xeb, 0xd5, 0xea, 0x37, 0xf6, 0xb3, 0xbe, 0x1f, 0x24, 0xf1, 0x55, 0x14, 0x28,
  701. 0x05, 0xb5, 0xd8, 0x84, 0x0f, 0x62, 0x85, 0xaa, 0xec, 0x77, 0x64, 0xfd, 0x80, 0x7c, 0x41,
  702. 0x00, 0x88, 0xa3, 0x79, 0x7d, 0x4f, 0x6f, 0xe3, 0x76, 0xf4, 0xb5, 0x97, 0xb7, 0xeb, 0x67,
  703. 0x28, 0xba, 0x07, 0x1a, 0x59, 0x32, 0xc1, 0x53, 0xd9, 0x05, 0x6b, 0x63, 0x93, 0xce, 0xa1,
  704. 0xd9, 0x7a, 0xb2, 0xff, 0x1c, 0x12, 0x0a, 0x9a, 0xe5, 0x51, 0x1e, 0xba, 0xfc, 0x95, 0x2e,
  705. 0x28, 0xa9, 0xfc, 0x4c, 0xed, 0x7b, 0x05, 0xca, 0x67, 0xe0, 0x2d, 0xd7, 0x54, 0xb3, 0x05,
  706. 0x1c, 0x23, 0x2b, 0x35, 0x2e, 0x19, 0x48, 0x59, 0x0e, 0x58, 0xa8, 0x01, 0x56, 0xfb, 0x78,
  707. 0x90, 0xba, 0x08, 0x77, 0x94, 0x45, 0x05, 0x13, 0xc7, 0x6b, 0x96, 0xd2, 0xa3, 0xa6, 0x01,
  708. 0x9f, 0x34
  709. };
  710. static const unsigned char dsa_priv[] = {
  711. 0x2f, 0x68, 0x44, 0xcb, 0xfb, 0x6b, 0xcb, 0x8d, 0x02, 0x49, 0x7c, 0xee, 0xd2, 0xa6, 0xd3,
  712. 0x43, 0xb8, 0xa4, 0x09, 0xb7, 0xc1, 0xd4, 0x4b, 0xc3, 0x66, 0xa7, 0xe0, 0x21
  713. };
  714. static const unsigned char dsa_pub[] = {
  715. 0x16, 0x1a, 0xb4, 0x6d, 0x9f, 0x16, 0x6c, 0xcc, 0x91, 0x66, 0xfe, 0x30, 0xeb, 0x8e, 0x44,
  716. 0xba, 0x2b, 0x7a, 0xc9, 0xa8, 0x95, 0xf2, 0xa6, 0x38, 0xd8, 0xaf, 0x3e, 0x91, 0x68, 0xe8,
  717. 0x52, 0xf3, 0x97, 0x37, 0x70, 0xf2, 0x47, 0xa3, 0xf4, 0x62, 0x26, 0xf5, 0x3b, 0x71, 0x52,
  718. 0x50, 0x15, 0x9c, 0x6d, 0xa6, 0x6d, 0x92, 0x4c, 0x48, 0x76, 0x31, 0x54, 0x48, 0xa5, 0x99,
  719. 0x7a, 0xd4, 0x61, 0xf7, 0x21, 0x44, 0xe7, 0xd8, 0x82, 0xc3, 0x50, 0xd3, 0xd9, 0xd4, 0x66,
  720. 0x20, 0xab, 0x70, 0x4c, 0x97, 0x9b, 0x8d, 0xac, 0x1f, 0x78, 0x27, 0x1e, 0x47, 0xf8, 0x3b,
  721. 0xd1, 0x55, 0x73, 0xf3, 0xb4, 0x8e, 0x6d, 0x45, 0x40, 0x54, 0xc6, 0xd8, 0x95, 0x15, 0x27,
  722. 0xb7, 0x5f, 0x65, 0xaa, 0xcb, 0x24, 0xc9, 0x49, 0x87, 0x32, 0xad, 0xcb, 0xf8, 0x35, 0x63,
  723. 0x56, 0x72, 0x7c, 0x4e, 0x6c, 0xad, 0x5f, 0x26, 0x8c, 0xd2, 0x80, 0x41, 0xaf, 0x88, 0x23,
  724. 0x20, 0x03, 0xa4, 0xd5, 0x3c, 0x53, 0x54, 0xb0, 0x3d, 0xed, 0x0e, 0x9e, 0x53, 0x0a, 0x63,
  725. 0x5f, 0xfd, 0x28, 0x57, 0x09, 0x07, 0x73, 0xf4, 0x0c, 0xd4, 0x71, 0x5d, 0x6b, 0xa0, 0xd7,
  726. 0x86, 0x99, 0x29, 0x9b, 0xca, 0xfb, 0xcc, 0xd6, 0x2f, 0xfe, 0xbe, 0x94, 0xef, 0x1a, 0x0e,
  727. 0x55, 0x84, 0xa7, 0xaf, 0x7b, 0xfa, 0xed, 0x77, 0x61, 0x28, 0x22, 0xee, 0x6b, 0x11, 0xdd,
  728. 0xb0, 0x17, 0x1e, 0x06, 0xe4, 0x29, 0x4c, 0xc2, 0x3f, 0xd6, 0x75, 0xb6, 0x08, 0x04, 0x55,
  729. 0x13, 0x48, 0x4f, 0x44, 0xea, 0x8d, 0xaf, 0xcb, 0xac, 0x22, 0xc4, 0x6a, 0xb3, 0x86, 0xe5,
  730. 0x47, 0xa9, 0xb5, 0x72, 0x17, 0x23, 0x11, 0x81, 0x7f, 0x00, 0x00, 0x67, 0x5c, 0xf4, 0x58,
  731. 0xcc, 0xe2, 0x46, 0xce, 0xf5, 0x6d, 0xd8, 0x18, 0x91, 0xc4, 0x20, 0xbf, 0x07, 0x48, 0x45,
  732. 0xfd
  733. };
  734. static int do_check_params(OSSL_PARAM key_params[], int expected)
  735. {
  736. EVP_PKEY_CTX *gen_ctx = NULL, *check_ctx = NULL;
  737. EVP_PKEY *pkey = NULL;
  738. int ret;
  739. ret = TEST_ptr(gen_ctx = EVP_PKEY_CTX_new_from_name(mainctx, "DSA", NULL))
  740. && TEST_int_eq(EVP_PKEY_fromdata_init(gen_ctx), 1)
  741. && TEST_int_eq(EVP_PKEY_fromdata(gen_ctx, &pkey,
  742. EVP_PKEY_KEYPAIR, key_params), 1)
  743. && TEST_ptr(check_ctx = EVP_PKEY_CTX_new_from_pkey(mainctx, pkey,
  744. NULL))
  745. && TEST_int_eq(EVP_PKEY_param_check(check_ctx), expected);
  746. EVP_PKEY_CTX_free(check_ctx);
  747. EVP_PKEY_CTX_free(gen_ctx);
  748. EVP_PKEY_free(pkey);
  749. return ret;
  750. }
  751. static int do_check_bn(OSSL_PARAM params[], const char *key,
  752. const unsigned char *expected, size_t expected_len)
  753. {
  754. OSSL_PARAM *p;
  755. BIGNUM *bn = NULL;
  756. unsigned char buffer[256 + 1];
  757. int ret, len;
  758. ret = TEST_ptr(p = OSSL_PARAM_locate(params, key))
  759. && TEST_true(OSSL_PARAM_get_BN(p, &bn))
  760. && TEST_int_gt(len = BN_bn2binpad(bn, buffer, expected_len), 0)
  761. && TEST_mem_eq(expected, expected_len, buffer, len);
  762. BN_free(bn);
  763. return ret;
  764. }
  765. static int do_check_int(OSSL_PARAM params[], const char *key, int expected)
  766. {
  767. OSSL_PARAM *p;
  768. int val = 0;
  769. return TEST_ptr(p = OSSL_PARAM_locate(params, key))
  770. && TEST_true(OSSL_PARAM_get_int(p, &val))
  771. && TEST_int_eq(val, expected);
  772. }
  773. static int test_dsa_tofrom_data_select(void)
  774. {
  775. int ret;
  776. EVP_PKEY *key = NULL;
  777. const unsigned char *pkeydata = dsa_key;
  778. ret = TEST_ptr(key = d2i_AutoPrivateKey_ex(NULL, &pkeydata, sizeof(dsa_key),
  779. mainctx, NULL))
  780. && TEST_true(do_pkey_tofrom_data_select(key, "DSA"));
  781. EVP_PKEY_free(key);
  782. return ret;
  783. }
  784. static int test_dsa_todata(void)
  785. {
  786. EVP_PKEY *pkey = NULL;
  787. OSSL_PARAM *to_params = NULL, *all_params = NULL;
  788. OSSL_PARAM gen_params[4];
  789. int ret = 0;
  790. const unsigned char *pkeydata = dsa_key;
  791. unsigned char dsa_seed[] = {
  792. 0xbc, 0x8a, 0x81, 0x64, 0x9e, 0x9d, 0x63, 0xa7, 0xa3, 0x5d, 0x87, 0xdd,
  793. 0x32, 0xf3, 0xc1, 0x9f, 0x18, 0x22, 0xeb, 0x73, 0x63, 0xad, 0x5e, 0x7b,
  794. 0x90, 0xc1, 0xe3, 0xe0
  795. };
  796. int dsa_pcounter = 319;
  797. int dsa_gindex = 5;
  798. gen_params[0] = OSSL_PARAM_construct_octet_string(OSSL_PKEY_PARAM_FFC_SEED,
  799. (void*)dsa_seed,
  800. sizeof(dsa_seed));
  801. gen_params[1] = OSSL_PARAM_construct_int(OSSL_PKEY_PARAM_FFC_GINDEX,
  802. &dsa_gindex);
  803. gen_params[2] = OSSL_PARAM_construct_int(OSSL_PKEY_PARAM_FFC_PCOUNTER,
  804. &dsa_pcounter);
  805. gen_params[3] = OSSL_PARAM_construct_end();
  806. if (!TEST_ptr(pkey = d2i_AutoPrivateKey_ex(NULL, &pkeydata, sizeof(dsa_key),
  807. mainctx, NULL))
  808. || !TEST_int_eq(EVP_PKEY_todata(pkey, EVP_PKEY_KEYPAIR, &to_params), 1)
  809. || !do_check_bn(to_params, OSSL_PKEY_PARAM_FFC_P, dsa_p, sizeof(dsa_p))
  810. || !do_check_bn(to_params, OSSL_PKEY_PARAM_FFC_Q, dsa_q, sizeof(dsa_q))
  811. || !do_check_bn(to_params, OSSL_PKEY_PARAM_FFC_G, dsa_g, sizeof(dsa_g))
  812. || !do_check_bn(to_params, OSSL_PKEY_PARAM_PUB_KEY, dsa_pub,
  813. sizeof(dsa_pub))
  814. || !do_check_bn(to_params, OSSL_PKEY_PARAM_PRIV_KEY, dsa_priv,
  815. sizeof(dsa_priv))
  816. || !do_check_int(to_params, OSSL_PKEY_PARAM_FFC_GINDEX, -1)
  817. || !do_check_int(to_params, OSSL_PKEY_PARAM_FFC_PCOUNTER, -1)
  818. || !do_check_int(to_params, OSSL_PKEY_PARAM_FFC_H, 0)
  819. || !do_check_int(to_params, OSSL_PKEY_PARAM_FFC_VALIDATE_PQ, 1)
  820. || !do_check_int(to_params, OSSL_PKEY_PARAM_FFC_VALIDATE_G, 1)
  821. || !do_check_int(to_params, OSSL_PKEY_PARAM_FFC_VALIDATE_LEGACY, 0)
  822. || !TEST_ptr_null(OSSL_PARAM_locate(to_params, OSSL_PKEY_PARAM_FFC_SEED)))
  823. goto err;
  824. if (!do_fromdata_key_is_equal(to_params, pkey, "DSA"))
  825. goto err;
  826. if (!TEST_ptr(all_params = OSSL_PARAM_merge(to_params, gen_params))
  827. || !do_check_params(all_params, 1))
  828. goto err;
  829. gen_params[1] = OSSL_PARAM_construct_int(OSSL_PKEY_PARAM_FFC_GINDEX,
  830. &dsa_gindex);
  831. gen_params[2] = OSSL_PARAM_construct_int(OSSL_PKEY_PARAM_FFC_PCOUNTER,
  832. &dsa_pcounter);
  833. /*
  834. * Check that modifying the shallow copy values used in OSSL_PARAM_merge()
  835. * results in an invalid key. This also verifies that the fips186-4
  836. * validation code is running.
  837. */
  838. dsa_gindex++;
  839. if (!do_check_params(all_params, 0))
  840. goto err;
  841. dsa_gindex--;
  842. dsa_pcounter++;
  843. if (!do_check_params(all_params, 0))
  844. goto err;
  845. dsa_pcounter--;
  846. dsa_seed[0] = 0xb0;
  847. if (!do_check_params(all_params, 0))
  848. goto err;
  849. ret = 1;
  850. err:
  851. EVP_PKEY_free(pkey);
  852. OSSL_PARAM_free(all_params);
  853. OSSL_PARAM_free(to_params);
  854. return ret;
  855. }
  856. #endif /* OPENSSL_NO_DSA */
  857. static int test_pkey_todata_null(void)
  858. {
  859. OSSL_PARAM *params = NULL;
  860. EVP_PKEY *pkey = NULL;
  861. int ret = 0;
  862. const unsigned char *pdata = keydata[0].kder;
  863. ret = TEST_ptr(pkey = d2i_AutoPrivateKey_ex(NULL, &pdata, keydata[0].size,
  864. mainctx, NULL))
  865. && TEST_int_eq(EVP_PKEY_todata(NULL, EVP_PKEY_KEYPAIR, &params), 0)
  866. && TEST_int_eq(EVP_PKEY_todata(pkey, EVP_PKEY_KEYPAIR, NULL), 0);
  867. EVP_PKEY_free(pkey);
  868. return ret;
  869. }
  870. static OSSL_CALLBACK test_pkey_export_cb;
  871. static int test_pkey_export_cb(const OSSL_PARAM params[], void *arg)
  872. {
  873. if (arg == NULL)
  874. return 0;
  875. return do_fromdata_key_is_equal(params, (EVP_PKEY *)arg, "RSA");
  876. }
  877. static int test_pkey_export_null(void)
  878. {
  879. EVP_PKEY *pkey = NULL;
  880. int ret = 0;
  881. const unsigned char *pdata = keydata[0].kder;
  882. ret = TEST_ptr(pkey = d2i_AutoPrivateKey_ex(NULL, &pdata, keydata[0].size,
  883. mainctx, NULL))
  884. && TEST_int_eq(EVP_PKEY_export(NULL, EVP_PKEY_KEYPAIR,
  885. test_pkey_export_cb, NULL), 0)
  886. && TEST_int_eq(EVP_PKEY_export(pkey, EVP_PKEY_KEYPAIR, NULL, NULL), 0);
  887. EVP_PKEY_free(pkey);
  888. return ret;
  889. }
  890. static int test_pkey_export(void)
  891. {
  892. EVP_PKEY *pkey = NULL;
  893. #ifndef OPENSSL_NO_DEPRECATED_3_0
  894. RSA *rsa = NULL;
  895. #endif
  896. int ret = 1;
  897. const unsigned char *pdata = keydata[0].kder;
  898. int pdata_len = keydata[0].size;
  899. if (!TEST_ptr(pkey = d2i_AutoPrivateKey_ex(NULL, &pdata, pdata_len,
  900. mainctx, NULL))
  901. || !TEST_true(EVP_PKEY_export(pkey, EVP_PKEY_KEYPAIR,
  902. test_pkey_export_cb, pkey))
  903. || !TEST_false(EVP_PKEY_export(pkey, EVP_PKEY_KEYPAIR,
  904. test_pkey_export_cb, NULL)))
  905. ret = 0;
  906. EVP_PKEY_free(pkey);
  907. #ifndef OPENSSL_NO_DEPRECATED_3_0
  908. /* Now, try with a legacy key */
  909. pdata = keydata[0].kder;
  910. pdata_len = keydata[0].size;
  911. if (!TEST_ptr(rsa = d2i_RSAPrivateKey(NULL, &pdata, pdata_len))
  912. || !TEST_ptr(pkey = EVP_PKEY_new())
  913. || !TEST_true(EVP_PKEY_assign_RSA(pkey, rsa))
  914. || !TEST_true(EVP_PKEY_export(pkey, EVP_PKEY_KEYPAIR,
  915. test_pkey_export_cb, pkey))
  916. || !TEST_false(EVP_PKEY_export(pkey, EVP_PKEY_KEYPAIR,
  917. test_pkey_export_cb, NULL)))
  918. ret = 0;
  919. EVP_PKEY_free(pkey);
  920. #endif
  921. return ret;
  922. }
  923. static int test_rsa_pss_sign(void)
  924. {
  925. EVP_PKEY *pkey = NULL;
  926. EVP_PKEY_CTX *pctx = NULL;
  927. int ret = 0;
  928. const unsigned char *pdata = keydata[0].kder;
  929. const char *mdname = "SHA2-256";
  930. OSSL_PARAM sig_params[3];
  931. unsigned char mdbuf[256 / 8] = { 0 };
  932. int padding = RSA_PKCS1_PSS_PADDING;
  933. unsigned char *sig = NULL;
  934. size_t sig_len = 0;
  935. sig_params[0] = OSSL_PARAM_construct_int(OSSL_PKEY_PARAM_PAD_MODE,
  936. &padding);
  937. sig_params[1] = OSSL_PARAM_construct_utf8_string(OSSL_SIGNATURE_PARAM_DIGEST,
  938. (char *)mdname, 0);
  939. sig_params[2] = OSSL_PARAM_construct_end();
  940. ret = TEST_ptr(pkey = d2i_AutoPrivateKey_ex(NULL, &pdata, keydata[0].size,
  941. mainctx, NULL))
  942. && TEST_ptr(pctx = EVP_PKEY_CTX_new_from_pkey(mainctx, pkey, NULL))
  943. && TEST_int_gt(EVP_PKEY_sign_init_ex(pctx, sig_params), 0)
  944. && TEST_int_gt(EVP_PKEY_sign(pctx, NULL, &sig_len, mdbuf,
  945. sizeof(mdbuf)), 0)
  946. && TEST_int_gt(sig_len, 0)
  947. && TEST_ptr(sig = OPENSSL_malloc(sig_len))
  948. && TEST_int_gt(EVP_PKEY_sign(pctx, sig, &sig_len, mdbuf,
  949. sizeof(mdbuf)), 0);
  950. EVP_PKEY_CTX_free(pctx);
  951. OPENSSL_free(sig);
  952. EVP_PKEY_free(pkey);
  953. return ret;
  954. }
  955. static int test_evp_md_ctx_dup(void)
  956. {
  957. EVP_MD_CTX *mdctx;
  958. EVP_MD_CTX *copyctx = NULL;
  959. int ret;
  960. /* test copying freshly initialized context */
  961. ret = TEST_ptr(mdctx = EVP_MD_CTX_new())
  962. && TEST_ptr(copyctx = EVP_MD_CTX_dup(mdctx));
  963. EVP_MD_CTX_free(mdctx);
  964. EVP_MD_CTX_free(copyctx);
  965. return ret;
  966. }
  967. static int test_evp_md_ctx_copy(void)
  968. {
  969. EVP_MD_CTX *mdctx = NULL;
  970. EVP_MD_CTX *copyctx = NULL;
  971. int ret;
  972. /* test copying freshly initialized context */
  973. ret = TEST_ptr(mdctx = EVP_MD_CTX_new())
  974. && TEST_ptr(copyctx = EVP_MD_CTX_new())
  975. && TEST_true(EVP_MD_CTX_copy_ex(copyctx, mdctx));
  976. EVP_MD_CTX_free(mdctx);
  977. EVP_MD_CTX_free(copyctx);
  978. return ret;
  979. }
  980. int setup_tests(void)
  981. {
  982. if (!test_get_libctx(&mainctx, &nullprov, NULL, NULL, NULL)) {
  983. OSSL_LIB_CTX_free(mainctx);
  984. mainctx = NULL;
  985. return 0;
  986. }
  987. ADD_TEST(test_alternative_default);
  988. ADD_ALL_TESTS(test_d2i_AutoPrivateKey_ex, OSSL_NELEM(keydata));
  989. #ifndef OPENSSL_NO_EC
  990. ADD_ALL_TESTS(test_d2i_PrivateKey_ex, 2);
  991. ADD_TEST(test_ec_tofrom_data_select);
  992. ADD_TEST(test_ecx_tofrom_data_select);
  993. #else
  994. ADD_ALL_TESTS(test_d2i_PrivateKey_ex, 1);
  995. #endif
  996. #ifndef OPENSSL_NO_DSA
  997. ADD_TEST(test_dsa_todata);
  998. ADD_TEST(test_dsa_tofrom_data_select);
  999. #endif
  1000. #ifndef OPENSSL_NO_DH
  1001. ADD_TEST(test_dh_tofrom_data_select);
  1002. #endif
  1003. ADD_TEST(test_rsa_tofrom_data_select);
  1004. ADD_TEST(test_pkey_todata_null);
  1005. ADD_TEST(test_pkey_export_null);
  1006. ADD_TEST(test_pkey_export);
  1007. #ifndef OPENSSL_NO_DES
  1008. ADD_TEST(test_pkcs8key_nid_bio);
  1009. #endif
  1010. ADD_ALL_TESTS(test_PEM_read_bio_negative, OSSL_NELEM(keydata));
  1011. ADD_TEST(test_rsa_pss_sign);
  1012. ADD_TEST(test_evp_md_ctx_dup);
  1013. ADD_TEST(test_evp_md_ctx_copy);
  1014. ADD_ALL_TESTS(test_provider_unload_effective, 2);
  1015. return 1;
  1016. }
  1017. void cleanup_tests(void)
  1018. {
  1019. OSSL_LIB_CTX_free(mainctx);
  1020. OSSL_PROVIDER_unload(nullprov);
  1021. }