ssl.h.in 113 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535
  1. /*
  2. * {- join("\n * ", @autowarntext) -}
  3. *
  4. * Copyright 1995-2022 The OpenSSL Project Authors. All Rights Reserved.
  5. * Copyright (c) 2002, Oracle and/or its affiliates. All rights reserved
  6. * Copyright 2005 Nokia. All rights reserved.
  7. *
  8. * Licensed under the Apache License 2.0 (the "License"). You may not use
  9. * this file except in compliance with the License. You can obtain a copy
  10. * in the file LICENSE in the source distribution or at
  11. * https://www.openssl.org/source/license.html
  12. */
  13. {-
  14. use OpenSSL::stackhash qw(generate_stack_macros generate_const_stack_macros);
  15. -}
  16. #ifndef OPENSSL_SSL_H
  17. # define OPENSSL_SSL_H
  18. # pragma once
  19. # include <openssl/macros.h>
  20. # ifndef OPENSSL_NO_DEPRECATED_3_0
  21. # define HEADER_SSL_H
  22. # endif
  23. # include <openssl/e_os2.h>
  24. # include <openssl/opensslconf.h>
  25. # include <openssl/comp.h>
  26. # include <openssl/bio.h>
  27. # ifndef OPENSSL_NO_DEPRECATED_1_1_0
  28. # include <openssl/x509.h>
  29. # include <openssl/crypto.h>
  30. # include <openssl/buffer.h>
  31. # endif
  32. # include <openssl/lhash.h>
  33. # include <openssl/pem.h>
  34. # include <openssl/hmac.h>
  35. # include <openssl/async.h>
  36. # include <openssl/safestack.h>
  37. # include <openssl/symhacks.h>
  38. # include <openssl/ct.h>
  39. # include <openssl/sslerr.h>
  40. # include <openssl/prov_ssl.h>
  41. # ifndef OPENSSL_NO_STDIO
  42. # include <stdio.h>
  43. # endif
  44. #ifdef __cplusplus
  45. extern "C" {
  46. #endif
  47. /* OpenSSL version number for ASN.1 encoding of the session information */
  48. /*-
  49. * Version 0 - initial version
  50. * Version 1 - added the optional peer certificate
  51. */
  52. # define SSL_SESSION_ASN1_VERSION 0x0001
  53. # define SSL_MAX_SSL_SESSION_ID_LENGTH 32
  54. # define SSL_MAX_SID_CTX_LENGTH 32
  55. # define SSL_MIN_RSA_MODULUS_LENGTH_IN_BYTES (512/8)
  56. # define SSL_MAX_KEY_ARG_LENGTH 8
  57. /* SSL_MAX_MASTER_KEY_LENGTH is defined in prov_ssl.h */
  58. /* The maximum number of encrypt/decrypt pipelines we can support */
  59. # define SSL_MAX_PIPELINES 32
  60. /* text strings for the ciphers */
  61. /* These are used to specify which ciphers to use and not to use */
  62. # define SSL_TXT_LOW "LOW"
  63. # define SSL_TXT_MEDIUM "MEDIUM"
  64. # define SSL_TXT_HIGH "HIGH"
  65. # define SSL_TXT_FIPS "FIPS"
  66. # define SSL_TXT_aNULL "aNULL"
  67. # define SSL_TXT_eNULL "eNULL"
  68. # define SSL_TXT_NULL "NULL"
  69. # define SSL_TXT_kRSA "kRSA"
  70. # define SSL_TXT_kDHr "kDHr"/* this cipher class has been removed */
  71. # define SSL_TXT_kDHd "kDHd"/* this cipher class has been removed */
  72. # define SSL_TXT_kDH "kDH"/* this cipher class has been removed */
  73. # define SSL_TXT_kEDH "kEDH"/* alias for kDHE */
  74. # define SSL_TXT_kDHE "kDHE"
  75. # define SSL_TXT_kECDHr "kECDHr"/* this cipher class has been removed */
  76. # define SSL_TXT_kECDHe "kECDHe"/* this cipher class has been removed */
  77. # define SSL_TXT_kECDH "kECDH"/* this cipher class has been removed */
  78. # define SSL_TXT_kEECDH "kEECDH"/* alias for kECDHE */
  79. # define SSL_TXT_kECDHE "kECDHE"
  80. # define SSL_TXT_kPSK "kPSK"
  81. # define SSL_TXT_kRSAPSK "kRSAPSK"
  82. # define SSL_TXT_kECDHEPSK "kECDHEPSK"
  83. # define SSL_TXT_kDHEPSK "kDHEPSK"
  84. # define SSL_TXT_kGOST "kGOST"
  85. # define SSL_TXT_kGOST18 "kGOST18"
  86. # define SSL_TXT_kSRP "kSRP"
  87. # define SSL_TXT_aRSA "aRSA"
  88. # define SSL_TXT_aDSS "aDSS"
  89. # define SSL_TXT_aDH "aDH"/* this cipher class has been removed */
  90. # define SSL_TXT_aECDH "aECDH"/* this cipher class has been removed */
  91. # define SSL_TXT_aECDSA "aECDSA"
  92. # define SSL_TXT_aPSK "aPSK"
  93. # define SSL_TXT_aGOST94 "aGOST94"
  94. # define SSL_TXT_aGOST01 "aGOST01"
  95. # define SSL_TXT_aGOST12 "aGOST12"
  96. # define SSL_TXT_aGOST "aGOST"
  97. # define SSL_TXT_aSRP "aSRP"
  98. # define SSL_TXT_DSS "DSS"
  99. # define SSL_TXT_DH "DH"
  100. # define SSL_TXT_DHE "DHE"/* same as "kDHE:-ADH" */
  101. # define SSL_TXT_EDH "EDH"/* alias for DHE */
  102. # define SSL_TXT_ADH "ADH"
  103. # define SSL_TXT_RSA "RSA"
  104. # define SSL_TXT_ECDH "ECDH"
  105. # define SSL_TXT_EECDH "EECDH"/* alias for ECDHE" */
  106. # define SSL_TXT_ECDHE "ECDHE"/* same as "kECDHE:-AECDH" */
  107. # define SSL_TXT_AECDH "AECDH"
  108. # define SSL_TXT_ECDSA "ECDSA"
  109. # define SSL_TXT_PSK "PSK"
  110. # define SSL_TXT_SRP "SRP"
  111. # define SSL_TXT_DES "DES"
  112. # define SSL_TXT_3DES "3DES"
  113. # define SSL_TXT_RC4 "RC4"
  114. # define SSL_TXT_RC2 "RC2"
  115. # define SSL_TXT_IDEA "IDEA"
  116. # define SSL_TXT_SEED "SEED"
  117. # define SSL_TXT_AES128 "AES128"
  118. # define SSL_TXT_AES256 "AES256"
  119. # define SSL_TXT_AES "AES"
  120. # define SSL_TXT_AES_GCM "AESGCM"
  121. # define SSL_TXT_AES_CCM "AESCCM"
  122. # define SSL_TXT_AES_CCM_8 "AESCCM8"
  123. # define SSL_TXT_CAMELLIA128 "CAMELLIA128"
  124. # define SSL_TXT_CAMELLIA256 "CAMELLIA256"
  125. # define SSL_TXT_CAMELLIA "CAMELLIA"
  126. # define SSL_TXT_CHACHA20 "CHACHA20"
  127. # define SSL_TXT_GOST "GOST89"
  128. # define SSL_TXT_ARIA "ARIA"
  129. # define SSL_TXT_ARIA_GCM "ARIAGCM"
  130. # define SSL_TXT_ARIA128 "ARIA128"
  131. # define SSL_TXT_ARIA256 "ARIA256"
  132. # define SSL_TXT_GOST2012_GOST8912_GOST8912 "GOST2012-GOST8912-GOST8912"
  133. # define SSL_TXT_CBC "CBC"
  134. # define SSL_TXT_MD5 "MD5"
  135. # define SSL_TXT_SHA1 "SHA1"
  136. # define SSL_TXT_SHA "SHA"/* same as "SHA1" */
  137. # define SSL_TXT_GOST94 "GOST94"
  138. # define SSL_TXT_GOST89MAC "GOST89MAC"
  139. # define SSL_TXT_GOST12 "GOST12"
  140. # define SSL_TXT_GOST89MAC12 "GOST89MAC12"
  141. # define SSL_TXT_SHA256 "SHA256"
  142. # define SSL_TXT_SHA384 "SHA384"
  143. # define SSL_TXT_SSLV3 "SSLv3"
  144. # define SSL_TXT_TLSV1 "TLSv1"
  145. # define SSL_TXT_TLSV1_1 "TLSv1.1"
  146. # define SSL_TXT_TLSV1_2 "TLSv1.2"
  147. # define SSL_TXT_ALL "ALL"
  148. /*-
  149. * COMPLEMENTOF* definitions. These identifiers are used to (de-select)
  150. * ciphers normally not being used.
  151. * Example: "RC4" will activate all ciphers using RC4 including ciphers
  152. * without authentication, which would normally disabled by DEFAULT (due
  153. * the "!ADH" being part of default). Therefore "RC4:!COMPLEMENTOFDEFAULT"
  154. * will make sure that it is also disabled in the specific selection.
  155. * COMPLEMENTOF* identifiers are portable between version, as adjustments
  156. * to the default cipher setup will also be included here.
  157. *
  158. * COMPLEMENTOFDEFAULT does not experience the same special treatment that
  159. * DEFAULT gets, as only selection is being done and no sorting as needed
  160. * for DEFAULT.
  161. */
  162. # define SSL_TXT_CMPALL "COMPLEMENTOFALL"
  163. # define SSL_TXT_CMPDEF "COMPLEMENTOFDEFAULT"
  164. /*
  165. * The following cipher list is used by default. It also is substituted when
  166. * an application-defined cipher list string starts with 'DEFAULT'.
  167. * This applies to ciphersuites for TLSv1.2 and below.
  168. * DEPRECATED IN 3.0.0, in favor of OSSL_default_cipher_list()
  169. * Update both macro and function simultaneously
  170. */
  171. # ifndef OPENSSL_NO_DEPRECATED_3_0
  172. # define SSL_DEFAULT_CIPHER_LIST "ALL:!COMPLEMENTOFDEFAULT:!eNULL"
  173. /*
  174. * This is the default set of TLSv1.3 ciphersuites
  175. * DEPRECATED IN 3.0.0, in favor of OSSL_default_ciphersuites()
  176. * Update both macro and function simultaneously
  177. */
  178. # define TLS_DEFAULT_CIPHERSUITES "TLS_AES_256_GCM_SHA384:" \
  179. "TLS_CHACHA20_POLY1305_SHA256:" \
  180. "TLS_AES_128_GCM_SHA256"
  181. # endif
  182. /*
  183. * As of OpenSSL 1.0.0, ssl_create_cipher_list() in ssl/ssl_ciph.c always
  184. * starts with a reasonable order, and all we have to do for DEFAULT is
  185. * throwing out anonymous and unencrypted ciphersuites! (The latter are not
  186. * actually enabled by ALL, but "ALL:RSA" would enable some of them.)
  187. */
  188. /* Used in SSL_set_shutdown()/SSL_get_shutdown(); */
  189. # define SSL_SENT_SHUTDOWN 1
  190. # define SSL_RECEIVED_SHUTDOWN 2
  191. #ifdef __cplusplus
  192. }
  193. #endif
  194. #ifdef __cplusplus
  195. extern "C" {
  196. #endif
  197. # define SSL_FILETYPE_ASN1 X509_FILETYPE_ASN1
  198. # define SSL_FILETYPE_PEM X509_FILETYPE_PEM
  199. /*
  200. * This is needed to stop compilers complaining about the 'struct ssl_st *'
  201. * function parameters used to prototype callbacks in SSL_CTX.
  202. */
  203. typedef struct ssl_st *ssl_crock_st;
  204. typedef struct tls_session_ticket_ext_st TLS_SESSION_TICKET_EXT;
  205. typedef struct ssl_method_st SSL_METHOD;
  206. typedef struct ssl_cipher_st SSL_CIPHER;
  207. typedef struct ssl_session_st SSL_SESSION;
  208. typedef struct tls_sigalgs_st TLS_SIGALGS;
  209. typedef struct ssl_conf_ctx_st SSL_CONF_CTX;
  210. typedef struct ssl_comp_st SSL_COMP;
  211. STACK_OF(SSL_CIPHER);
  212. STACK_OF(SSL_COMP);
  213. /* SRTP protection profiles for use with the use_srtp extension (RFC 5764)*/
  214. typedef struct srtp_protection_profile_st {
  215. const char *name;
  216. unsigned long id;
  217. } SRTP_PROTECTION_PROFILE;
  218. {-
  219. generate_stack_macros("SRTP_PROTECTION_PROFILE");
  220. -}
  221. typedef int (*tls_session_ticket_ext_cb_fn)(SSL *s, const unsigned char *data,
  222. int len, void *arg);
  223. typedef int (*tls_session_secret_cb_fn)(SSL *s, void *secret, int *secret_len,
  224. STACK_OF(SSL_CIPHER) *peer_ciphers,
  225. const SSL_CIPHER **cipher, void *arg);
  226. /* Extension context codes */
  227. /* This extension is only allowed in TLS */
  228. #define SSL_EXT_TLS_ONLY 0x0001
  229. /* This extension is only allowed in DTLS */
  230. #define SSL_EXT_DTLS_ONLY 0x0002
  231. /* Some extensions may be allowed in DTLS but we don't implement them for it */
  232. #define SSL_EXT_TLS_IMPLEMENTATION_ONLY 0x0004
  233. /* Most extensions are not defined for SSLv3 but EXT_TYPE_renegotiate is */
  234. #define SSL_EXT_SSL3_ALLOWED 0x0008
  235. /* Extension is only defined for TLS1.2 and below */
  236. #define SSL_EXT_TLS1_2_AND_BELOW_ONLY 0x0010
  237. /* Extension is only defined for TLS1.3 and above */
  238. #define SSL_EXT_TLS1_3_ONLY 0x0020
  239. /* Ignore this extension during parsing if we are resuming */
  240. #define SSL_EXT_IGNORE_ON_RESUMPTION 0x0040
  241. #define SSL_EXT_CLIENT_HELLO 0x0080
  242. /* Really means TLS1.2 or below */
  243. #define SSL_EXT_TLS1_2_SERVER_HELLO 0x0100
  244. #define SSL_EXT_TLS1_3_SERVER_HELLO 0x0200
  245. #define SSL_EXT_TLS1_3_ENCRYPTED_EXTENSIONS 0x0400
  246. #define SSL_EXT_TLS1_3_HELLO_RETRY_REQUEST 0x0800
  247. #define SSL_EXT_TLS1_3_CERTIFICATE 0x1000
  248. #define SSL_EXT_TLS1_3_NEW_SESSION_TICKET 0x2000
  249. #define SSL_EXT_TLS1_3_CERTIFICATE_REQUEST 0x4000
  250. /* Typedefs for handling custom extensions */
  251. typedef int (*custom_ext_add_cb)(SSL *s, unsigned int ext_type,
  252. const unsigned char **out, size_t *outlen,
  253. int *al, void *add_arg);
  254. typedef void (*custom_ext_free_cb)(SSL *s, unsigned int ext_type,
  255. const unsigned char *out, void *add_arg);
  256. typedef int (*custom_ext_parse_cb)(SSL *s, unsigned int ext_type,
  257. const unsigned char *in, size_t inlen,
  258. int *al, void *parse_arg);
  259. typedef int (*SSL_custom_ext_add_cb_ex)(SSL *s, unsigned int ext_type,
  260. unsigned int context,
  261. const unsigned char **out,
  262. size_t *outlen, X509 *x,
  263. size_t chainidx,
  264. int *al, void *add_arg);
  265. typedef void (*SSL_custom_ext_free_cb_ex)(SSL *s, unsigned int ext_type,
  266. unsigned int context,
  267. const unsigned char *out,
  268. void *add_arg);
  269. typedef int (*SSL_custom_ext_parse_cb_ex)(SSL *s, unsigned int ext_type,
  270. unsigned int context,
  271. const unsigned char *in,
  272. size_t inlen, X509 *x,
  273. size_t chainidx,
  274. int *al, void *parse_arg);
  275. /* Typedef for verification callback */
  276. typedef int (*SSL_verify_cb)(int preverify_ok, X509_STORE_CTX *x509_ctx);
  277. /* Typedef for SSL async callback */
  278. typedef int (*SSL_async_callback_fn)(SSL *s, void *arg);
  279. #define SSL_OP_BIT(n) ((uint64_t)1 << (uint64_t)n)
  280. /*
  281. * SSL/TLS connection options.
  282. */
  283. /* Disable Extended master secret */
  284. # define SSL_OP_NO_EXTENDED_MASTER_SECRET SSL_OP_BIT(0)
  285. /* Cleanse plaintext copies of data delivered to the application */
  286. # define SSL_OP_CLEANSE_PLAINTEXT SSL_OP_BIT(1)
  287. /* Allow initial connection to servers that don't support RI */
  288. # define SSL_OP_LEGACY_SERVER_CONNECT SSL_OP_BIT(2)
  289. /* Enable support for Kernel TLS */
  290. # define SSL_OP_ENABLE_KTLS SSL_OP_BIT(3)
  291. # define SSL_OP_TLSEXT_PADDING SSL_OP_BIT(4)
  292. # define SSL_OP_SAFARI_ECDHE_ECDSA_BUG SSL_OP_BIT(6)
  293. # define SSL_OP_IGNORE_UNEXPECTED_EOF SSL_OP_BIT(7)
  294. # define SSL_OP_ALLOW_CLIENT_RENEGOTIATION SSL_OP_BIT(8)
  295. # define SSL_OP_DISABLE_TLSEXT_CA_NAMES SSL_OP_BIT(9)
  296. /* In TLSv1.3 allow a non-(ec)dhe based kex_mode */
  297. # define SSL_OP_ALLOW_NO_DHE_KEX SSL_OP_BIT(10)
  298. /*
  299. * Disable SSL 3.0/TLS 1.0 CBC vulnerability workaround that was added
  300. * in OpenSSL 0.9.6d. Usually (depending on the application protocol)
  301. * the workaround is not needed. Unfortunately some broken SSL/TLS
  302. * implementations cannot handle it at all, which is why we include it
  303. * in SSL_OP_ALL. Added in 0.9.6e
  304. */
  305. # define SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS SSL_OP_BIT(11)
  306. /* DTLS options */
  307. # define SSL_OP_NO_QUERY_MTU SSL_OP_BIT(12)
  308. /* Turn on Cookie Exchange (on relevant for servers) */
  309. # define SSL_OP_COOKIE_EXCHANGE SSL_OP_BIT(13)
  310. /* Don't use RFC4507 ticket extension */
  311. # define SSL_OP_NO_TICKET SSL_OP_BIT(14)
  312. # ifndef OPENSSL_NO_DTLS1_METHOD
  313. /*
  314. * Use Cisco's version identifier of DTLS_BAD_VER
  315. * (only with deprecated DTLSv1_client_method())
  316. */
  317. # define SSL_OP_CISCO_ANYCONNECT SSL_OP_BIT(15)
  318. # endif
  319. /* As server, disallow session resumption on renegotiation */
  320. # define SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION SSL_OP_BIT(16)
  321. /* Don't use compression even if supported */
  322. # define SSL_OP_NO_COMPRESSION SSL_OP_BIT(17)
  323. /* Permit unsafe legacy renegotiation */
  324. # define SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION SSL_OP_BIT(18)
  325. /* Disable encrypt-then-mac */
  326. # define SSL_OP_NO_ENCRYPT_THEN_MAC SSL_OP_BIT(19)
  327. /*
  328. * Enable TLSv1.3 Compatibility mode. This is on by default. A future
  329. * version of OpenSSL may have this disabled by default.
  330. */
  331. # define SSL_OP_ENABLE_MIDDLEBOX_COMPAT SSL_OP_BIT(20)
  332. /*
  333. * Prioritize Chacha20Poly1305 when client does.
  334. * Modifies SSL_OP_CIPHER_SERVER_PREFERENCE
  335. */
  336. # define SSL_OP_PRIORITIZE_CHACHA SSL_OP_BIT(21)
  337. /*
  338. * Set on servers to choose the cipher according to server's preferences.
  339. */
  340. # define SSL_OP_CIPHER_SERVER_PREFERENCE SSL_OP_BIT(22)
  341. /*
  342. * If set, a server will allow a client to issue a SSLv3.0 version
  343. * number as latest version supported in the premaster secret, even when
  344. * TLSv1.0 (version 3.1) was announced in the client hello. Normally
  345. * this is forbidden to prevent version rollback attacks.
  346. */
  347. # define SSL_OP_TLS_ROLLBACK_BUG SSL_OP_BIT(23)
  348. /*
  349. * Switches off automatic TLSv1.3 anti-replay protection for early data.
  350. * This is a server-side option only (no effect on the client).
  351. */
  352. # define SSL_OP_NO_ANTI_REPLAY SSL_OP_BIT(24)
  353. # define SSL_OP_NO_SSLv3 SSL_OP_BIT(25)
  354. # define SSL_OP_NO_TLSv1 SSL_OP_BIT(26)
  355. # define SSL_OP_NO_TLSv1_2 SSL_OP_BIT(27)
  356. # define SSL_OP_NO_TLSv1_1 SSL_OP_BIT(28)
  357. # define SSL_OP_NO_TLSv1_3 SSL_OP_BIT(29)
  358. # define SSL_OP_NO_DTLSv1 SSL_OP_BIT(26)
  359. # define SSL_OP_NO_DTLSv1_2 SSL_OP_BIT(27)
  360. /* Disallow all renegotiation */
  361. # define SSL_OP_NO_RENEGOTIATION SSL_OP_BIT(30)
  362. /*
  363. * Make server add server-hello extension from early version of
  364. * cryptopro draft, when GOST ciphersuite is negotiated. Required for
  365. * interoperability with CryptoPro CSP 3.x
  366. */
  367. # define SSL_OP_CRYPTOPRO_TLSEXT_BUG SSL_OP_BIT(31)
  368. /*
  369. * Option "collections."
  370. */
  371. # define SSL_OP_NO_SSL_MASK \
  372. ( SSL_OP_NO_SSLv3 | SSL_OP_NO_TLSv1 | SSL_OP_NO_TLSv1_1 \
  373. | SSL_OP_NO_TLSv1_2 | SSL_OP_NO_TLSv1_3 )
  374. # define SSL_OP_NO_DTLS_MASK \
  375. ( SSL_OP_NO_DTLSv1 | SSL_OP_NO_DTLSv1_2 )
  376. /* Various bug workarounds that should be rather harmless. */
  377. # define SSL_OP_ALL \
  378. ( SSL_OP_CRYPTOPRO_TLSEXT_BUG | SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS \
  379. | SSL_OP_TLSEXT_PADDING | SSL_OP_SAFARI_ECDHE_ECDSA_BUG )
  380. /*
  381. * OBSOLETE OPTIONS retained for compatibility
  382. */
  383. # define SSL_OP_MICROSOFT_SESS_ID_BUG 0x0
  384. # define SSL_OP_NETSCAPE_CHALLENGE_BUG 0x0
  385. # define SSL_OP_NETSCAPE_REUSE_CIPHER_CHANGE_BUG 0x0
  386. # define SSL_OP_SSLREF2_REUSE_CERT_TYPE_BUG 0x0
  387. # define SSL_OP_MICROSOFT_BIG_SSLV3_BUFFER 0x0
  388. # define SSL_OP_MSIE_SSLV2_RSA_PADDING 0x0
  389. # define SSL_OP_SSLEAY_080_CLIENT_DH_BUG 0x0
  390. # define SSL_OP_TLS_D5_BUG 0x0
  391. # define SSL_OP_TLS_BLOCK_PADDING_BUG 0x0
  392. # define SSL_OP_SINGLE_ECDH_USE 0x0
  393. # define SSL_OP_SINGLE_DH_USE 0x0
  394. # define SSL_OP_EPHEMERAL_RSA 0x0
  395. # define SSL_OP_NO_SSLv2 0x0
  396. # define SSL_OP_PKCS1_CHECK_1 0x0
  397. # define SSL_OP_PKCS1_CHECK_2 0x0
  398. # define SSL_OP_NETSCAPE_CA_DN_BUG 0x0
  399. # define SSL_OP_NETSCAPE_DEMO_CIPHER_CHANGE_BUG 0x0
  400. /*
  401. * Allow SSL_write(..., n) to return r with 0 < r < n (i.e. report success
  402. * when just a single record has been written):
  403. */
  404. # define SSL_MODE_ENABLE_PARTIAL_WRITE 0x00000001U
  405. /*
  406. * Make it possible to retry SSL_write() with changed buffer location (buffer
  407. * contents must stay the same!); this is not the default to avoid the
  408. * misconception that non-blocking SSL_write() behaves like non-blocking
  409. * write():
  410. */
  411. # define SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER 0x00000002U
  412. /*
  413. * Never bother the application with retries if the transport is blocking:
  414. */
  415. # define SSL_MODE_AUTO_RETRY 0x00000004U
  416. /* Don't attempt to automatically build certificate chain */
  417. # define SSL_MODE_NO_AUTO_CHAIN 0x00000008U
  418. /*
  419. * Save RAM by releasing read and write buffers when they're empty. (SSL3 and
  420. * TLS only.) Released buffers are freed.
  421. */
  422. # define SSL_MODE_RELEASE_BUFFERS 0x00000010U
  423. /*
  424. * Send the current time in the Random fields of the ClientHello and
  425. * ServerHello records for compatibility with hypothetical implementations
  426. * that require it.
  427. */
  428. # define SSL_MODE_SEND_CLIENTHELLO_TIME 0x00000020U
  429. # define SSL_MODE_SEND_SERVERHELLO_TIME 0x00000040U
  430. /*
  431. * Send TLS_FALLBACK_SCSV in the ClientHello. To be set only by applications
  432. * that reconnect with a downgraded protocol version; see
  433. * draft-ietf-tls-downgrade-scsv-00 for details. DO NOT ENABLE THIS if your
  434. * application attempts a normal handshake. Only use this in explicit
  435. * fallback retries, following the guidance in
  436. * draft-ietf-tls-downgrade-scsv-00.
  437. */
  438. # define SSL_MODE_SEND_FALLBACK_SCSV 0x00000080U
  439. /*
  440. * Support Asynchronous operation
  441. */
  442. # define SSL_MODE_ASYNC 0x00000100U
  443. /*
  444. * When using DTLS/SCTP, include the terminating zero in the label
  445. * used for computing the endpoint-pair shared secret. Required for
  446. * interoperability with implementations having this bug like these
  447. * older version of OpenSSL:
  448. * - OpenSSL 1.0.0 series
  449. * - OpenSSL 1.0.1 series
  450. * - OpenSSL 1.0.2 series
  451. * - OpenSSL 1.1.0 series
  452. * - OpenSSL 1.1.1 and 1.1.1a
  453. */
  454. # define SSL_MODE_DTLS_SCTP_LABEL_LENGTH_BUG 0x00000400U
  455. /* Cert related flags */
  456. /*
  457. * Many implementations ignore some aspects of the TLS standards such as
  458. * enforcing certificate chain algorithms. When this is set we enforce them.
  459. */
  460. # define SSL_CERT_FLAG_TLS_STRICT 0x00000001U
  461. /* Suite B modes, takes same values as certificate verify flags */
  462. # define SSL_CERT_FLAG_SUITEB_128_LOS_ONLY 0x10000
  463. /* Suite B 192 bit only mode */
  464. # define SSL_CERT_FLAG_SUITEB_192_LOS 0x20000
  465. /* Suite B 128 bit mode allowing 192 bit algorithms */
  466. # define SSL_CERT_FLAG_SUITEB_128_LOS 0x30000
  467. /* Perform all sorts of protocol violations for testing purposes */
  468. # define SSL_CERT_FLAG_BROKEN_PROTOCOL 0x10000000
  469. /* Flags for building certificate chains */
  470. /* Treat any existing certificates as untrusted CAs */
  471. # define SSL_BUILD_CHAIN_FLAG_UNTRUSTED 0x1
  472. /* Don't include root CA in chain */
  473. # define SSL_BUILD_CHAIN_FLAG_NO_ROOT 0x2
  474. /* Just check certificates already there */
  475. # define SSL_BUILD_CHAIN_FLAG_CHECK 0x4
  476. /* Ignore verification errors */
  477. # define SSL_BUILD_CHAIN_FLAG_IGNORE_ERROR 0x8
  478. /* Clear verification errors from queue */
  479. # define SSL_BUILD_CHAIN_FLAG_CLEAR_ERROR 0x10
  480. /* Flags returned by SSL_check_chain */
  481. /* Certificate can be used with this session */
  482. # define CERT_PKEY_VALID 0x1
  483. /* Certificate can also be used for signing */
  484. # define CERT_PKEY_SIGN 0x2
  485. /* EE certificate signing algorithm OK */
  486. # define CERT_PKEY_EE_SIGNATURE 0x10
  487. /* CA signature algorithms OK */
  488. # define CERT_PKEY_CA_SIGNATURE 0x20
  489. /* EE certificate parameters OK */
  490. # define CERT_PKEY_EE_PARAM 0x40
  491. /* CA certificate parameters OK */
  492. # define CERT_PKEY_CA_PARAM 0x80
  493. /* Signing explicitly allowed as opposed to SHA1 fallback */
  494. # define CERT_PKEY_EXPLICIT_SIGN 0x100
  495. /* Client CA issuer names match (always set for server cert) */
  496. # define CERT_PKEY_ISSUER_NAME 0x200
  497. /* Cert type matches client types (always set for server cert) */
  498. # define CERT_PKEY_CERT_TYPE 0x400
  499. /* Cert chain suitable to Suite B */
  500. # define CERT_PKEY_SUITEB 0x800
  501. # define SSL_CONF_FLAG_CMDLINE 0x1
  502. # define SSL_CONF_FLAG_FILE 0x2
  503. # define SSL_CONF_FLAG_CLIENT 0x4
  504. # define SSL_CONF_FLAG_SERVER 0x8
  505. # define SSL_CONF_FLAG_SHOW_ERRORS 0x10
  506. # define SSL_CONF_FLAG_CERTIFICATE 0x20
  507. # define SSL_CONF_FLAG_REQUIRE_PRIVATE 0x40
  508. /* Configuration value types */
  509. # define SSL_CONF_TYPE_UNKNOWN 0x0
  510. # define SSL_CONF_TYPE_STRING 0x1
  511. # define SSL_CONF_TYPE_FILE 0x2
  512. # define SSL_CONF_TYPE_DIR 0x3
  513. # define SSL_CONF_TYPE_NONE 0x4
  514. # define SSL_CONF_TYPE_STORE 0x5
  515. /* Maximum length of the application-controlled segment of a a TLSv1.3 cookie */
  516. # define SSL_COOKIE_LENGTH 4096
  517. /*
  518. * Note: SSL[_CTX]_set_{options,mode} use |= op on the previous value, they
  519. * cannot be used to clear bits.
  520. */
  521. uint64_t SSL_CTX_get_options(const SSL_CTX *ctx);
  522. uint64_t SSL_get_options(const SSL *s);
  523. uint64_t SSL_CTX_clear_options(SSL_CTX *ctx, uint64_t op);
  524. uint64_t SSL_clear_options(SSL *s, uint64_t op);
  525. uint64_t SSL_CTX_set_options(SSL_CTX *ctx, uint64_t op);
  526. uint64_t SSL_set_options(SSL *s, uint64_t op);
  527. # define SSL_CTX_set_mode(ctx,op) \
  528. SSL_CTX_ctrl((ctx),SSL_CTRL_MODE,(op),NULL)
  529. # define SSL_CTX_clear_mode(ctx,op) \
  530. SSL_CTX_ctrl((ctx),SSL_CTRL_CLEAR_MODE,(op),NULL)
  531. # define SSL_CTX_get_mode(ctx) \
  532. SSL_CTX_ctrl((ctx),SSL_CTRL_MODE,0,NULL)
  533. # define SSL_clear_mode(ssl,op) \
  534. SSL_ctrl((ssl),SSL_CTRL_CLEAR_MODE,(op),NULL)
  535. # define SSL_set_mode(ssl,op) \
  536. SSL_ctrl((ssl),SSL_CTRL_MODE,(op),NULL)
  537. # define SSL_get_mode(ssl) \
  538. SSL_ctrl((ssl),SSL_CTRL_MODE,0,NULL)
  539. # define SSL_set_mtu(ssl, mtu) \
  540. SSL_ctrl((ssl),SSL_CTRL_SET_MTU,(mtu),NULL)
  541. # define DTLS_set_link_mtu(ssl, mtu) \
  542. SSL_ctrl((ssl),DTLS_CTRL_SET_LINK_MTU,(mtu),NULL)
  543. # define DTLS_get_link_min_mtu(ssl) \
  544. SSL_ctrl((ssl),DTLS_CTRL_GET_LINK_MIN_MTU,0,NULL)
  545. # define SSL_get_secure_renegotiation_support(ssl) \
  546. SSL_ctrl((ssl), SSL_CTRL_GET_RI_SUPPORT, 0, NULL)
  547. # define SSL_CTX_set_cert_flags(ctx,op) \
  548. SSL_CTX_ctrl((ctx),SSL_CTRL_CERT_FLAGS,(op),NULL)
  549. # define SSL_set_cert_flags(s,op) \
  550. SSL_ctrl((s),SSL_CTRL_CERT_FLAGS,(op),NULL)
  551. # define SSL_CTX_clear_cert_flags(ctx,op) \
  552. SSL_CTX_ctrl((ctx),SSL_CTRL_CLEAR_CERT_FLAGS,(op),NULL)
  553. # define SSL_clear_cert_flags(s,op) \
  554. SSL_ctrl((s),SSL_CTRL_CLEAR_CERT_FLAGS,(op),NULL)
  555. void SSL_CTX_set_msg_callback(SSL_CTX *ctx,
  556. void (*cb) (int write_p, int version,
  557. int content_type, const void *buf,
  558. size_t len, SSL *ssl, void *arg));
  559. void SSL_set_msg_callback(SSL *ssl,
  560. void (*cb) (int write_p, int version,
  561. int content_type, const void *buf,
  562. size_t len, SSL *ssl, void *arg));
  563. # define SSL_CTX_set_msg_callback_arg(ctx, arg) SSL_CTX_ctrl((ctx), SSL_CTRL_SET_MSG_CALLBACK_ARG, 0, (arg))
  564. # define SSL_set_msg_callback_arg(ssl, arg) SSL_ctrl((ssl), SSL_CTRL_SET_MSG_CALLBACK_ARG, 0, (arg))
  565. # define SSL_get_extms_support(s) \
  566. SSL_ctrl((s),SSL_CTRL_GET_EXTMS_SUPPORT,0,NULL)
  567. # ifndef OPENSSL_NO_SRP
  568. /* see tls_srp.c */
  569. # ifndef OPENSSL_NO_DEPRECATED_3_0
  570. OSSL_DEPRECATEDIN_3_0 __owur int SSL_SRP_CTX_init(SSL *s);
  571. OSSL_DEPRECATEDIN_3_0 __owur int SSL_CTX_SRP_CTX_init(SSL_CTX *ctx);
  572. OSSL_DEPRECATEDIN_3_0 int SSL_SRP_CTX_free(SSL *ctx);
  573. OSSL_DEPRECATEDIN_3_0 int SSL_CTX_SRP_CTX_free(SSL_CTX *ctx);
  574. OSSL_DEPRECATEDIN_3_0 __owur int SSL_srp_server_param_with_username(SSL *s,
  575. int *ad);
  576. OSSL_DEPRECATEDIN_3_0 __owur int SRP_Calc_A_param(SSL *s);
  577. # endif
  578. # endif
  579. /* 100k max cert list */
  580. # define SSL_MAX_CERT_LIST_DEFAULT (1024*100)
  581. # define SSL_SESSION_CACHE_MAX_SIZE_DEFAULT (1024*20)
  582. /*
  583. * This callback type is used inside SSL_CTX, SSL, and in the functions that
  584. * set them. It is used to override the generation of SSL/TLS session IDs in
  585. * a server. Return value should be zero on an error, non-zero to proceed.
  586. * Also, callbacks should themselves check if the id they generate is unique
  587. * otherwise the SSL handshake will fail with an error - callbacks can do
  588. * this using the 'ssl' value they're passed by;
  589. * SSL_has_matching_session_id(ssl, id, *id_len) The length value passed in
  590. * is set at the maximum size the session ID can be. In SSLv3/TLSv1 it is 32
  591. * bytes. The callback can alter this length to be less if desired. It is
  592. * also an error for the callback to set the size to zero.
  593. */
  594. typedef int (*GEN_SESSION_CB) (SSL *ssl, unsigned char *id,
  595. unsigned int *id_len);
  596. # define SSL_SESS_CACHE_OFF 0x0000
  597. # define SSL_SESS_CACHE_CLIENT 0x0001
  598. # define SSL_SESS_CACHE_SERVER 0x0002
  599. # define SSL_SESS_CACHE_BOTH (SSL_SESS_CACHE_CLIENT|SSL_SESS_CACHE_SERVER)
  600. # define SSL_SESS_CACHE_NO_AUTO_CLEAR 0x0080
  601. /* enough comments already ... see SSL_CTX_set_session_cache_mode(3) */
  602. # define SSL_SESS_CACHE_NO_INTERNAL_LOOKUP 0x0100
  603. # define SSL_SESS_CACHE_NO_INTERNAL_STORE 0x0200
  604. # define SSL_SESS_CACHE_NO_INTERNAL \
  605. (SSL_SESS_CACHE_NO_INTERNAL_LOOKUP|SSL_SESS_CACHE_NO_INTERNAL_STORE)
  606. # define SSL_SESS_CACHE_UPDATE_TIME 0x0400
  607. LHASH_OF(SSL_SESSION) *SSL_CTX_sessions(SSL_CTX *ctx);
  608. # define SSL_CTX_sess_number(ctx) \
  609. SSL_CTX_ctrl(ctx,SSL_CTRL_SESS_NUMBER,0,NULL)
  610. # define SSL_CTX_sess_connect(ctx) \
  611. SSL_CTX_ctrl(ctx,SSL_CTRL_SESS_CONNECT,0,NULL)
  612. # define SSL_CTX_sess_connect_good(ctx) \
  613. SSL_CTX_ctrl(ctx,SSL_CTRL_SESS_CONNECT_GOOD,0,NULL)
  614. # define SSL_CTX_sess_connect_renegotiate(ctx) \
  615. SSL_CTX_ctrl(ctx,SSL_CTRL_SESS_CONNECT_RENEGOTIATE,0,NULL)
  616. # define SSL_CTX_sess_accept(ctx) \
  617. SSL_CTX_ctrl(ctx,SSL_CTRL_SESS_ACCEPT,0,NULL)
  618. # define SSL_CTX_sess_accept_renegotiate(ctx) \
  619. SSL_CTX_ctrl(ctx,SSL_CTRL_SESS_ACCEPT_RENEGOTIATE,0,NULL)
  620. # define SSL_CTX_sess_accept_good(ctx) \
  621. SSL_CTX_ctrl(ctx,SSL_CTRL_SESS_ACCEPT_GOOD,0,NULL)
  622. # define SSL_CTX_sess_hits(ctx) \
  623. SSL_CTX_ctrl(ctx,SSL_CTRL_SESS_HIT,0,NULL)
  624. # define SSL_CTX_sess_cb_hits(ctx) \
  625. SSL_CTX_ctrl(ctx,SSL_CTRL_SESS_CB_HIT,0,NULL)
  626. # define SSL_CTX_sess_misses(ctx) \
  627. SSL_CTX_ctrl(ctx,SSL_CTRL_SESS_MISSES,0,NULL)
  628. # define SSL_CTX_sess_timeouts(ctx) \
  629. SSL_CTX_ctrl(ctx,SSL_CTRL_SESS_TIMEOUTS,0,NULL)
  630. # define SSL_CTX_sess_cache_full(ctx) \
  631. SSL_CTX_ctrl(ctx,SSL_CTRL_SESS_CACHE_FULL,0,NULL)
  632. void SSL_CTX_sess_set_new_cb(SSL_CTX *ctx,
  633. int (*new_session_cb) (struct ssl_st *ssl,
  634. SSL_SESSION *sess));
  635. int (*SSL_CTX_sess_get_new_cb(SSL_CTX *ctx)) (struct ssl_st *ssl,
  636. SSL_SESSION *sess);
  637. void SSL_CTX_sess_set_remove_cb(SSL_CTX *ctx,
  638. void (*remove_session_cb) (struct ssl_ctx_st
  639. *ctx,
  640. SSL_SESSION *sess));
  641. void (*SSL_CTX_sess_get_remove_cb(SSL_CTX *ctx)) (struct ssl_ctx_st *ctx,
  642. SSL_SESSION *sess);
  643. void SSL_CTX_sess_set_get_cb(SSL_CTX *ctx,
  644. SSL_SESSION *(*get_session_cb) (struct ssl_st
  645. *ssl,
  646. const unsigned char
  647. *data, int len,
  648. int *copy));
  649. SSL_SESSION *(*SSL_CTX_sess_get_get_cb(SSL_CTX *ctx)) (struct ssl_st *ssl,
  650. const unsigned char *data,
  651. int len, int *copy);
  652. void SSL_CTX_set_info_callback(SSL_CTX *ctx,
  653. void (*cb) (const SSL *ssl, int type, int val));
  654. void (*SSL_CTX_get_info_callback(SSL_CTX *ctx)) (const SSL *ssl, int type,
  655. int val);
  656. void SSL_CTX_set_client_cert_cb(SSL_CTX *ctx,
  657. int (*client_cert_cb) (SSL *ssl, X509 **x509,
  658. EVP_PKEY **pkey));
  659. int (*SSL_CTX_get_client_cert_cb(SSL_CTX *ctx)) (SSL *ssl, X509 **x509,
  660. EVP_PKEY **pkey);
  661. # ifndef OPENSSL_NO_ENGINE
  662. __owur int SSL_CTX_set_client_cert_engine(SSL_CTX *ctx, ENGINE *e);
  663. # endif
  664. void SSL_CTX_set_cookie_generate_cb(SSL_CTX *ctx,
  665. int (*app_gen_cookie_cb) (SSL *ssl,
  666. unsigned char
  667. *cookie,
  668. unsigned int
  669. *cookie_len));
  670. void SSL_CTX_set_cookie_verify_cb(SSL_CTX *ctx,
  671. int (*app_verify_cookie_cb) (SSL *ssl,
  672. const unsigned
  673. char *cookie,
  674. unsigned int
  675. cookie_len));
  676. void SSL_CTX_set_stateless_cookie_generate_cb(
  677. SSL_CTX *ctx,
  678. int (*gen_stateless_cookie_cb) (SSL *ssl,
  679. unsigned char *cookie,
  680. size_t *cookie_len));
  681. void SSL_CTX_set_stateless_cookie_verify_cb(
  682. SSL_CTX *ctx,
  683. int (*verify_stateless_cookie_cb) (SSL *ssl,
  684. const unsigned char *cookie,
  685. size_t cookie_len));
  686. # ifndef OPENSSL_NO_NEXTPROTONEG
  687. typedef int (*SSL_CTX_npn_advertised_cb_func)(SSL *ssl,
  688. const unsigned char **out,
  689. unsigned int *outlen,
  690. void *arg);
  691. void SSL_CTX_set_next_protos_advertised_cb(SSL_CTX *s,
  692. SSL_CTX_npn_advertised_cb_func cb,
  693. void *arg);
  694. # define SSL_CTX_set_npn_advertised_cb SSL_CTX_set_next_protos_advertised_cb
  695. typedef int (*SSL_CTX_npn_select_cb_func)(SSL *s,
  696. unsigned char **out,
  697. unsigned char *outlen,
  698. const unsigned char *in,
  699. unsigned int inlen,
  700. void *arg);
  701. void SSL_CTX_set_next_proto_select_cb(SSL_CTX *s,
  702. SSL_CTX_npn_select_cb_func cb,
  703. void *arg);
  704. # define SSL_CTX_set_npn_select_cb SSL_CTX_set_next_proto_select_cb
  705. void SSL_get0_next_proto_negotiated(const SSL *s, const unsigned char **data,
  706. unsigned *len);
  707. # define SSL_get0_npn_negotiated SSL_get0_next_proto_negotiated
  708. # endif
  709. __owur int SSL_select_next_proto(unsigned char **out, unsigned char *outlen,
  710. const unsigned char *in, unsigned int inlen,
  711. const unsigned char *client,
  712. unsigned int client_len);
  713. # define OPENSSL_NPN_UNSUPPORTED 0
  714. # define OPENSSL_NPN_NEGOTIATED 1
  715. # define OPENSSL_NPN_NO_OVERLAP 2
  716. __owur int SSL_CTX_set_alpn_protos(SSL_CTX *ctx, const unsigned char *protos,
  717. unsigned int protos_len);
  718. __owur int SSL_set_alpn_protos(SSL *ssl, const unsigned char *protos,
  719. unsigned int protos_len);
  720. typedef int (*SSL_CTX_alpn_select_cb_func)(SSL *ssl,
  721. const unsigned char **out,
  722. unsigned char *outlen,
  723. const unsigned char *in,
  724. unsigned int inlen,
  725. void *arg);
  726. void SSL_CTX_set_alpn_select_cb(SSL_CTX *ctx,
  727. SSL_CTX_alpn_select_cb_func cb,
  728. void *arg);
  729. void SSL_get0_alpn_selected(const SSL *ssl, const unsigned char **data,
  730. unsigned int *len);
  731. # ifndef OPENSSL_NO_PSK
  732. /*
  733. * the maximum length of the buffer given to callbacks containing the
  734. * resulting identity/psk
  735. */
  736. # define PSK_MAX_IDENTITY_LEN 256
  737. # define PSK_MAX_PSK_LEN 512
  738. typedef unsigned int (*SSL_psk_client_cb_func)(SSL *ssl,
  739. const char *hint,
  740. char *identity,
  741. unsigned int max_identity_len,
  742. unsigned char *psk,
  743. unsigned int max_psk_len);
  744. void SSL_CTX_set_psk_client_callback(SSL_CTX *ctx, SSL_psk_client_cb_func cb);
  745. void SSL_set_psk_client_callback(SSL *ssl, SSL_psk_client_cb_func cb);
  746. typedef unsigned int (*SSL_psk_server_cb_func)(SSL *ssl,
  747. const char *identity,
  748. unsigned char *psk,
  749. unsigned int max_psk_len);
  750. void SSL_CTX_set_psk_server_callback(SSL_CTX *ctx, SSL_psk_server_cb_func cb);
  751. void SSL_set_psk_server_callback(SSL *ssl, SSL_psk_server_cb_func cb);
  752. __owur int SSL_CTX_use_psk_identity_hint(SSL_CTX *ctx, const char *identity_hint);
  753. __owur int SSL_use_psk_identity_hint(SSL *s, const char *identity_hint);
  754. const char *SSL_get_psk_identity_hint(const SSL *s);
  755. const char *SSL_get_psk_identity(const SSL *s);
  756. # endif
  757. typedef int (*SSL_psk_find_session_cb_func)(SSL *ssl,
  758. const unsigned char *identity,
  759. size_t identity_len,
  760. SSL_SESSION **sess);
  761. typedef int (*SSL_psk_use_session_cb_func)(SSL *ssl, const EVP_MD *md,
  762. const unsigned char **id,
  763. size_t *idlen,
  764. SSL_SESSION **sess);
  765. void SSL_set_psk_find_session_callback(SSL *s, SSL_psk_find_session_cb_func cb);
  766. void SSL_CTX_set_psk_find_session_callback(SSL_CTX *ctx,
  767. SSL_psk_find_session_cb_func cb);
  768. void SSL_set_psk_use_session_callback(SSL *s, SSL_psk_use_session_cb_func cb);
  769. void SSL_CTX_set_psk_use_session_callback(SSL_CTX *ctx,
  770. SSL_psk_use_session_cb_func cb);
  771. /* Register callbacks to handle custom TLS Extensions for client or server. */
  772. __owur int SSL_CTX_has_client_custom_ext(const SSL_CTX *ctx,
  773. unsigned int ext_type);
  774. __owur int SSL_CTX_add_client_custom_ext(SSL_CTX *ctx,
  775. unsigned int ext_type,
  776. custom_ext_add_cb add_cb,
  777. custom_ext_free_cb free_cb,
  778. void *add_arg,
  779. custom_ext_parse_cb parse_cb,
  780. void *parse_arg);
  781. __owur int SSL_CTX_add_server_custom_ext(SSL_CTX *ctx,
  782. unsigned int ext_type,
  783. custom_ext_add_cb add_cb,
  784. custom_ext_free_cb free_cb,
  785. void *add_arg,
  786. custom_ext_parse_cb parse_cb,
  787. void *parse_arg);
  788. __owur int SSL_CTX_add_custom_ext(SSL_CTX *ctx, unsigned int ext_type,
  789. unsigned int context,
  790. SSL_custom_ext_add_cb_ex add_cb,
  791. SSL_custom_ext_free_cb_ex free_cb,
  792. void *add_arg,
  793. SSL_custom_ext_parse_cb_ex parse_cb,
  794. void *parse_arg);
  795. __owur int SSL_extension_supported(unsigned int ext_type);
  796. # define SSL_NOTHING 1
  797. # define SSL_WRITING 2
  798. # define SSL_READING 3
  799. # define SSL_X509_LOOKUP 4
  800. # define SSL_ASYNC_PAUSED 5
  801. # define SSL_ASYNC_NO_JOBS 6
  802. # define SSL_CLIENT_HELLO_CB 7
  803. # define SSL_RETRY_VERIFY 8
  804. /* These will only be used when doing non-blocking IO */
  805. # define SSL_want_nothing(s) (SSL_want(s) == SSL_NOTHING)
  806. # define SSL_want_read(s) (SSL_want(s) == SSL_READING)
  807. # define SSL_want_write(s) (SSL_want(s) == SSL_WRITING)
  808. # define SSL_want_x509_lookup(s) (SSL_want(s) == SSL_X509_LOOKUP)
  809. # define SSL_want_retry_verify(s) (SSL_want(s) == SSL_RETRY_VERIFY)
  810. # define SSL_want_async(s) (SSL_want(s) == SSL_ASYNC_PAUSED)
  811. # define SSL_want_async_job(s) (SSL_want(s) == SSL_ASYNC_NO_JOBS)
  812. # define SSL_want_client_hello_cb(s) (SSL_want(s) == SSL_CLIENT_HELLO_CB)
  813. # define SSL_MAC_FLAG_READ_MAC_STREAM 1
  814. # define SSL_MAC_FLAG_WRITE_MAC_STREAM 2
  815. # define SSL_MAC_FLAG_READ_MAC_TLSTREE 4
  816. # define SSL_MAC_FLAG_WRITE_MAC_TLSTREE 8
  817. /*
  818. * A callback for logging out TLS key material. This callback should log out
  819. * |line| followed by a newline.
  820. */
  821. typedef void (*SSL_CTX_keylog_cb_func)(const SSL *ssl, const char *line);
  822. /*
  823. * SSL_CTX_set_keylog_callback configures a callback to log key material. This
  824. * is intended for debugging use with tools like Wireshark. The cb function
  825. * should log line followed by a newline.
  826. */
  827. void SSL_CTX_set_keylog_callback(SSL_CTX *ctx, SSL_CTX_keylog_cb_func cb);
  828. /*
  829. * SSL_CTX_get_keylog_callback returns the callback configured by
  830. * SSL_CTX_set_keylog_callback.
  831. */
  832. SSL_CTX_keylog_cb_func SSL_CTX_get_keylog_callback(const SSL_CTX *ctx);
  833. int SSL_CTX_set_max_early_data(SSL_CTX *ctx, uint32_t max_early_data);
  834. uint32_t SSL_CTX_get_max_early_data(const SSL_CTX *ctx);
  835. int SSL_set_max_early_data(SSL *s, uint32_t max_early_data);
  836. uint32_t SSL_get_max_early_data(const SSL *s);
  837. int SSL_CTX_set_recv_max_early_data(SSL_CTX *ctx, uint32_t recv_max_early_data);
  838. uint32_t SSL_CTX_get_recv_max_early_data(const SSL_CTX *ctx);
  839. int SSL_set_recv_max_early_data(SSL *s, uint32_t recv_max_early_data);
  840. uint32_t SSL_get_recv_max_early_data(const SSL *s);
  841. #ifdef __cplusplus
  842. }
  843. #endif
  844. # include <openssl/ssl2.h>
  845. # include <openssl/ssl3.h>
  846. # include <openssl/tls1.h> /* This is mostly sslv3 with a few tweaks */
  847. # include <openssl/dtls1.h> /* Datagram TLS */
  848. # include <openssl/srtp.h> /* Support for the use_srtp extension */
  849. #ifdef __cplusplus
  850. extern "C" {
  851. #endif
  852. /*
  853. * These need to be after the above set of includes due to a compiler bug
  854. * in VisualStudio 2015
  855. */
  856. {-
  857. generate_const_stack_macros("SSL_CIPHER")
  858. .generate_stack_macros("SSL_COMP");
  859. -}
  860. /* compatibility */
  861. # define SSL_set_app_data(s,arg) (SSL_set_ex_data(s,0,(char *)(arg)))
  862. # define SSL_get_app_data(s) (SSL_get_ex_data(s,0))
  863. # define SSL_SESSION_set_app_data(s,a) (SSL_SESSION_set_ex_data(s,0, \
  864. (char *)(a)))
  865. # define SSL_SESSION_get_app_data(s) (SSL_SESSION_get_ex_data(s,0))
  866. # define SSL_CTX_get_app_data(ctx) (SSL_CTX_get_ex_data(ctx,0))
  867. # define SSL_CTX_set_app_data(ctx,arg) (SSL_CTX_set_ex_data(ctx,0, \
  868. (char *)(arg)))
  869. # ifndef OPENSSL_NO_DEPRECATED_1_1_0
  870. OSSL_DEPRECATEDIN_1_1_0 void SSL_set_debug(SSL *s, int debug);
  871. # endif
  872. /* TLSv1.3 KeyUpdate message types */
  873. /* -1 used so that this is an invalid value for the on-the-wire protocol */
  874. #define SSL_KEY_UPDATE_NONE -1
  875. /* Values as defined for the on-the-wire protocol */
  876. #define SSL_KEY_UPDATE_NOT_REQUESTED 0
  877. #define SSL_KEY_UPDATE_REQUESTED 1
  878. /*
  879. * The valid handshake states (one for each type message sent and one for each
  880. * type of message received). There are also two "special" states:
  881. * TLS = TLS or DTLS state
  882. * DTLS = DTLS specific state
  883. * CR/SR = Client Read/Server Read
  884. * CW/SW = Client Write/Server Write
  885. *
  886. * The "special" states are:
  887. * TLS_ST_BEFORE = No handshake has been initiated yet
  888. * TLS_ST_OK = A handshake has been successfully completed
  889. */
  890. typedef enum {
  891. TLS_ST_BEFORE,
  892. TLS_ST_OK,
  893. DTLS_ST_CR_HELLO_VERIFY_REQUEST,
  894. TLS_ST_CR_SRVR_HELLO,
  895. TLS_ST_CR_CERT,
  896. TLS_ST_CR_CERT_STATUS,
  897. TLS_ST_CR_KEY_EXCH,
  898. TLS_ST_CR_CERT_REQ,
  899. TLS_ST_CR_SRVR_DONE,
  900. TLS_ST_CR_SESSION_TICKET,
  901. TLS_ST_CR_CHANGE,
  902. TLS_ST_CR_FINISHED,
  903. TLS_ST_CW_CLNT_HELLO,
  904. TLS_ST_CW_CERT,
  905. TLS_ST_CW_KEY_EXCH,
  906. TLS_ST_CW_CERT_VRFY,
  907. TLS_ST_CW_CHANGE,
  908. TLS_ST_CW_NEXT_PROTO,
  909. TLS_ST_CW_FINISHED,
  910. TLS_ST_SW_HELLO_REQ,
  911. TLS_ST_SR_CLNT_HELLO,
  912. DTLS_ST_SW_HELLO_VERIFY_REQUEST,
  913. TLS_ST_SW_SRVR_HELLO,
  914. TLS_ST_SW_CERT,
  915. TLS_ST_SW_KEY_EXCH,
  916. TLS_ST_SW_CERT_REQ,
  917. TLS_ST_SW_SRVR_DONE,
  918. TLS_ST_SR_CERT,
  919. TLS_ST_SR_KEY_EXCH,
  920. TLS_ST_SR_CERT_VRFY,
  921. TLS_ST_SR_NEXT_PROTO,
  922. TLS_ST_SR_CHANGE,
  923. TLS_ST_SR_FINISHED,
  924. TLS_ST_SW_SESSION_TICKET,
  925. TLS_ST_SW_CERT_STATUS,
  926. TLS_ST_SW_CHANGE,
  927. TLS_ST_SW_FINISHED,
  928. TLS_ST_SW_ENCRYPTED_EXTENSIONS,
  929. TLS_ST_CR_ENCRYPTED_EXTENSIONS,
  930. TLS_ST_CR_CERT_VRFY,
  931. TLS_ST_SW_CERT_VRFY,
  932. TLS_ST_CR_HELLO_REQ,
  933. TLS_ST_SW_KEY_UPDATE,
  934. TLS_ST_CW_KEY_UPDATE,
  935. TLS_ST_SR_KEY_UPDATE,
  936. TLS_ST_CR_KEY_UPDATE,
  937. TLS_ST_EARLY_DATA,
  938. TLS_ST_PENDING_EARLY_DATA_END,
  939. TLS_ST_CW_END_OF_EARLY_DATA,
  940. TLS_ST_SR_END_OF_EARLY_DATA
  941. } OSSL_HANDSHAKE_STATE;
  942. /*
  943. * Most of the following state values are no longer used and are defined to be
  944. * the closest equivalent value in the current state machine code. Not all
  945. * defines have an equivalent and are set to a dummy value (-1). SSL_ST_CONNECT
  946. * and SSL_ST_ACCEPT are still in use in the definition of SSL_CB_ACCEPT_LOOP,
  947. * SSL_CB_ACCEPT_EXIT, SSL_CB_CONNECT_LOOP and SSL_CB_CONNECT_EXIT.
  948. */
  949. # define SSL_ST_CONNECT 0x1000
  950. # define SSL_ST_ACCEPT 0x2000
  951. # define SSL_ST_MASK 0x0FFF
  952. # define SSL_CB_LOOP 0x01
  953. # define SSL_CB_EXIT 0x02
  954. # define SSL_CB_READ 0x04
  955. # define SSL_CB_WRITE 0x08
  956. # define SSL_CB_ALERT 0x4000/* used in callback */
  957. # define SSL_CB_READ_ALERT (SSL_CB_ALERT|SSL_CB_READ)
  958. # define SSL_CB_WRITE_ALERT (SSL_CB_ALERT|SSL_CB_WRITE)
  959. # define SSL_CB_ACCEPT_LOOP (SSL_ST_ACCEPT|SSL_CB_LOOP)
  960. # define SSL_CB_ACCEPT_EXIT (SSL_ST_ACCEPT|SSL_CB_EXIT)
  961. # define SSL_CB_CONNECT_LOOP (SSL_ST_CONNECT|SSL_CB_LOOP)
  962. # define SSL_CB_CONNECT_EXIT (SSL_ST_CONNECT|SSL_CB_EXIT)
  963. # define SSL_CB_HANDSHAKE_START 0x10
  964. # define SSL_CB_HANDSHAKE_DONE 0x20
  965. /* Is the SSL_connection established? */
  966. # define SSL_in_connect_init(a) (SSL_in_init(a) && !SSL_is_server(a))
  967. # define SSL_in_accept_init(a) (SSL_in_init(a) && SSL_is_server(a))
  968. int SSL_in_init(const SSL *s);
  969. int SSL_in_before(const SSL *s);
  970. int SSL_is_init_finished(const SSL *s);
  971. /*
  972. * The following 3 states are kept in ssl->rlayer.rstate when reads fail, you
  973. * should not need these
  974. */
  975. # define SSL_ST_READ_HEADER 0xF0
  976. # define SSL_ST_READ_BODY 0xF1
  977. # define SSL_ST_READ_DONE 0xF2
  978. /*-
  979. * Obtain latest Finished message
  980. * -- that we sent (SSL_get_finished)
  981. * -- that we expected from peer (SSL_get_peer_finished).
  982. * Returns length (0 == no Finished so far), copies up to 'count' bytes.
  983. */
  984. size_t SSL_get_finished(const SSL *s, void *buf, size_t count);
  985. size_t SSL_get_peer_finished(const SSL *s, void *buf, size_t count);
  986. /*
  987. * use either SSL_VERIFY_NONE or SSL_VERIFY_PEER, the last 3 options are
  988. * 'ored' with SSL_VERIFY_PEER if they are desired
  989. */
  990. # define SSL_VERIFY_NONE 0x00
  991. # define SSL_VERIFY_PEER 0x01
  992. # define SSL_VERIFY_FAIL_IF_NO_PEER_CERT 0x02
  993. # define SSL_VERIFY_CLIENT_ONCE 0x04
  994. # define SSL_VERIFY_POST_HANDSHAKE 0x08
  995. # ifndef OPENSSL_NO_DEPRECATED_1_1_0
  996. # define OpenSSL_add_ssl_algorithms() SSL_library_init()
  997. # define SSLeay_add_ssl_algorithms() SSL_library_init()
  998. # endif
  999. /* More backward compatibility */
  1000. # define SSL_get_cipher(s) \
  1001. SSL_CIPHER_get_name(SSL_get_current_cipher(s))
  1002. # define SSL_get_cipher_bits(s,np) \
  1003. SSL_CIPHER_get_bits(SSL_get_current_cipher(s),np)
  1004. # define SSL_get_cipher_version(s) \
  1005. SSL_CIPHER_get_version(SSL_get_current_cipher(s))
  1006. # define SSL_get_cipher_name(s) \
  1007. SSL_CIPHER_get_name(SSL_get_current_cipher(s))
  1008. # define SSL_get_time(a) SSL_SESSION_get_time(a)
  1009. # define SSL_set_time(a,b) SSL_SESSION_set_time((a),(b))
  1010. # define SSL_get_timeout(a) SSL_SESSION_get_timeout(a)
  1011. # define SSL_set_timeout(a,b) SSL_SESSION_set_timeout((a),(b))
  1012. # define d2i_SSL_SESSION_bio(bp,s_id) ASN1_d2i_bio_of(SSL_SESSION,SSL_SESSION_new,d2i_SSL_SESSION,bp,s_id)
  1013. # define i2d_SSL_SESSION_bio(bp,s_id) ASN1_i2d_bio_of(SSL_SESSION,i2d_SSL_SESSION,bp,s_id)
  1014. DECLARE_PEM_rw(SSL_SESSION, SSL_SESSION)
  1015. # define SSL_AD_REASON_OFFSET 1000/* offset to get SSL_R_... value
  1016. * from SSL_AD_... */
  1017. /* These alert types are for SSLv3 and TLSv1 */
  1018. # define SSL_AD_CLOSE_NOTIFY SSL3_AD_CLOSE_NOTIFY
  1019. /* fatal */
  1020. # define SSL_AD_UNEXPECTED_MESSAGE SSL3_AD_UNEXPECTED_MESSAGE
  1021. /* fatal */
  1022. # define SSL_AD_BAD_RECORD_MAC SSL3_AD_BAD_RECORD_MAC
  1023. # define SSL_AD_DECRYPTION_FAILED TLS1_AD_DECRYPTION_FAILED
  1024. # define SSL_AD_RECORD_OVERFLOW TLS1_AD_RECORD_OVERFLOW
  1025. /* fatal */
  1026. # define SSL_AD_DECOMPRESSION_FAILURE SSL3_AD_DECOMPRESSION_FAILURE
  1027. /* fatal */
  1028. # define SSL_AD_HANDSHAKE_FAILURE SSL3_AD_HANDSHAKE_FAILURE
  1029. /* Not for TLS */
  1030. # define SSL_AD_NO_CERTIFICATE SSL3_AD_NO_CERTIFICATE
  1031. # define SSL_AD_BAD_CERTIFICATE SSL3_AD_BAD_CERTIFICATE
  1032. # define SSL_AD_UNSUPPORTED_CERTIFICATE SSL3_AD_UNSUPPORTED_CERTIFICATE
  1033. # define SSL_AD_CERTIFICATE_REVOKED SSL3_AD_CERTIFICATE_REVOKED
  1034. # define SSL_AD_CERTIFICATE_EXPIRED SSL3_AD_CERTIFICATE_EXPIRED
  1035. # define SSL_AD_CERTIFICATE_UNKNOWN SSL3_AD_CERTIFICATE_UNKNOWN
  1036. /* fatal */
  1037. # define SSL_AD_ILLEGAL_PARAMETER SSL3_AD_ILLEGAL_PARAMETER
  1038. /* fatal */
  1039. # define SSL_AD_UNKNOWN_CA TLS1_AD_UNKNOWN_CA
  1040. /* fatal */
  1041. # define SSL_AD_ACCESS_DENIED TLS1_AD_ACCESS_DENIED
  1042. /* fatal */
  1043. # define SSL_AD_DECODE_ERROR TLS1_AD_DECODE_ERROR
  1044. # define SSL_AD_DECRYPT_ERROR TLS1_AD_DECRYPT_ERROR
  1045. /* fatal */
  1046. # define SSL_AD_EXPORT_RESTRICTION TLS1_AD_EXPORT_RESTRICTION
  1047. /* fatal */
  1048. # define SSL_AD_PROTOCOL_VERSION TLS1_AD_PROTOCOL_VERSION
  1049. /* fatal */
  1050. # define SSL_AD_INSUFFICIENT_SECURITY TLS1_AD_INSUFFICIENT_SECURITY
  1051. /* fatal */
  1052. # define SSL_AD_INTERNAL_ERROR TLS1_AD_INTERNAL_ERROR
  1053. # define SSL_AD_USER_CANCELLED TLS1_AD_USER_CANCELLED
  1054. # define SSL_AD_NO_RENEGOTIATION TLS1_AD_NO_RENEGOTIATION
  1055. # define SSL_AD_MISSING_EXTENSION TLS13_AD_MISSING_EXTENSION
  1056. # define SSL_AD_CERTIFICATE_REQUIRED TLS13_AD_CERTIFICATE_REQUIRED
  1057. # define SSL_AD_UNSUPPORTED_EXTENSION TLS1_AD_UNSUPPORTED_EXTENSION
  1058. # define SSL_AD_CERTIFICATE_UNOBTAINABLE TLS1_AD_CERTIFICATE_UNOBTAINABLE
  1059. # define SSL_AD_UNRECOGNIZED_NAME TLS1_AD_UNRECOGNIZED_NAME
  1060. # define SSL_AD_BAD_CERTIFICATE_STATUS_RESPONSE TLS1_AD_BAD_CERTIFICATE_STATUS_RESPONSE
  1061. # define SSL_AD_BAD_CERTIFICATE_HASH_VALUE TLS1_AD_BAD_CERTIFICATE_HASH_VALUE
  1062. /* fatal */
  1063. # define SSL_AD_UNKNOWN_PSK_IDENTITY TLS1_AD_UNKNOWN_PSK_IDENTITY
  1064. /* fatal */
  1065. # define SSL_AD_INAPPROPRIATE_FALLBACK TLS1_AD_INAPPROPRIATE_FALLBACK
  1066. # define SSL_AD_NO_APPLICATION_PROTOCOL TLS1_AD_NO_APPLICATION_PROTOCOL
  1067. # define SSL_ERROR_NONE 0
  1068. # define SSL_ERROR_SSL 1
  1069. # define SSL_ERROR_WANT_READ 2
  1070. # define SSL_ERROR_WANT_WRITE 3
  1071. # define SSL_ERROR_WANT_X509_LOOKUP 4
  1072. # define SSL_ERROR_SYSCALL 5/* look at error stack/return
  1073. * value/errno */
  1074. # define SSL_ERROR_ZERO_RETURN 6
  1075. # define SSL_ERROR_WANT_CONNECT 7
  1076. # define SSL_ERROR_WANT_ACCEPT 8
  1077. # define SSL_ERROR_WANT_ASYNC 9
  1078. # define SSL_ERROR_WANT_ASYNC_JOB 10
  1079. # define SSL_ERROR_WANT_CLIENT_HELLO_CB 11
  1080. # define SSL_ERROR_WANT_RETRY_VERIFY 12
  1081. # ifndef OPENSSL_NO_DEPRECATED_3_0
  1082. # define SSL_CTRL_SET_TMP_DH 3
  1083. # define SSL_CTRL_SET_TMP_ECDH 4
  1084. # define SSL_CTRL_SET_TMP_DH_CB 6
  1085. # endif
  1086. # define SSL_CTRL_GET_CLIENT_CERT_REQUEST 9
  1087. # define SSL_CTRL_GET_NUM_RENEGOTIATIONS 10
  1088. # define SSL_CTRL_CLEAR_NUM_RENEGOTIATIONS 11
  1089. # define SSL_CTRL_GET_TOTAL_RENEGOTIATIONS 12
  1090. # define SSL_CTRL_GET_FLAGS 13
  1091. # define SSL_CTRL_EXTRA_CHAIN_CERT 14
  1092. # define SSL_CTRL_SET_MSG_CALLBACK 15
  1093. # define SSL_CTRL_SET_MSG_CALLBACK_ARG 16
  1094. /* only applies to datagram connections */
  1095. # define SSL_CTRL_SET_MTU 17
  1096. /* Stats */
  1097. # define SSL_CTRL_SESS_NUMBER 20
  1098. # define SSL_CTRL_SESS_CONNECT 21
  1099. # define SSL_CTRL_SESS_CONNECT_GOOD 22
  1100. # define SSL_CTRL_SESS_CONNECT_RENEGOTIATE 23
  1101. # define SSL_CTRL_SESS_ACCEPT 24
  1102. # define SSL_CTRL_SESS_ACCEPT_GOOD 25
  1103. # define SSL_CTRL_SESS_ACCEPT_RENEGOTIATE 26
  1104. # define SSL_CTRL_SESS_HIT 27
  1105. # define SSL_CTRL_SESS_CB_HIT 28
  1106. # define SSL_CTRL_SESS_MISSES 29
  1107. # define SSL_CTRL_SESS_TIMEOUTS 30
  1108. # define SSL_CTRL_SESS_CACHE_FULL 31
  1109. # define SSL_CTRL_MODE 33
  1110. # define SSL_CTRL_GET_READ_AHEAD 40
  1111. # define SSL_CTRL_SET_READ_AHEAD 41
  1112. # define SSL_CTRL_SET_SESS_CACHE_SIZE 42
  1113. # define SSL_CTRL_GET_SESS_CACHE_SIZE 43
  1114. # define SSL_CTRL_SET_SESS_CACHE_MODE 44
  1115. # define SSL_CTRL_GET_SESS_CACHE_MODE 45
  1116. # define SSL_CTRL_GET_MAX_CERT_LIST 50
  1117. # define SSL_CTRL_SET_MAX_CERT_LIST 51
  1118. # define SSL_CTRL_SET_MAX_SEND_FRAGMENT 52
  1119. /* see tls1.h for macros based on these */
  1120. # define SSL_CTRL_SET_TLSEXT_SERVERNAME_CB 53
  1121. # define SSL_CTRL_SET_TLSEXT_SERVERNAME_ARG 54
  1122. # define SSL_CTRL_SET_TLSEXT_HOSTNAME 55
  1123. # define SSL_CTRL_SET_TLSEXT_DEBUG_CB 56
  1124. # define SSL_CTRL_SET_TLSEXT_DEBUG_ARG 57
  1125. # define SSL_CTRL_GET_TLSEXT_TICKET_KEYS 58
  1126. # define SSL_CTRL_SET_TLSEXT_TICKET_KEYS 59
  1127. /*# define SSL_CTRL_SET_TLSEXT_OPAQUE_PRF_INPUT 60 */
  1128. /*# define SSL_CTRL_SET_TLSEXT_OPAQUE_PRF_INPUT_CB 61 */
  1129. /*# define SSL_CTRL_SET_TLSEXT_OPAQUE_PRF_INPUT_CB_ARG 62 */
  1130. # define SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB 63
  1131. # define SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB_ARG 64
  1132. # define SSL_CTRL_SET_TLSEXT_STATUS_REQ_TYPE 65
  1133. # define SSL_CTRL_GET_TLSEXT_STATUS_REQ_EXTS 66
  1134. # define SSL_CTRL_SET_TLSEXT_STATUS_REQ_EXTS 67
  1135. # define SSL_CTRL_GET_TLSEXT_STATUS_REQ_IDS 68
  1136. # define SSL_CTRL_SET_TLSEXT_STATUS_REQ_IDS 69
  1137. # define SSL_CTRL_GET_TLSEXT_STATUS_REQ_OCSP_RESP 70
  1138. # define SSL_CTRL_SET_TLSEXT_STATUS_REQ_OCSP_RESP 71
  1139. # ifndef OPENSSL_NO_DEPRECATED_3_0
  1140. # define SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB 72
  1141. # endif
  1142. # define SSL_CTRL_SET_TLS_EXT_SRP_USERNAME_CB 75
  1143. # define SSL_CTRL_SET_SRP_VERIFY_PARAM_CB 76
  1144. # define SSL_CTRL_SET_SRP_GIVE_CLIENT_PWD_CB 77
  1145. # define SSL_CTRL_SET_SRP_ARG 78
  1146. # define SSL_CTRL_SET_TLS_EXT_SRP_USERNAME 79
  1147. # define SSL_CTRL_SET_TLS_EXT_SRP_STRENGTH 80
  1148. # define SSL_CTRL_SET_TLS_EXT_SRP_PASSWORD 81
  1149. # define DTLS_CTRL_GET_TIMEOUT 73
  1150. # define DTLS_CTRL_HANDLE_TIMEOUT 74
  1151. # define SSL_CTRL_GET_RI_SUPPORT 76
  1152. # define SSL_CTRL_CLEAR_MODE 78
  1153. # define SSL_CTRL_SET_NOT_RESUMABLE_SESS_CB 79
  1154. # define SSL_CTRL_GET_EXTRA_CHAIN_CERTS 82
  1155. # define SSL_CTRL_CLEAR_EXTRA_CHAIN_CERTS 83
  1156. # define SSL_CTRL_CHAIN 88
  1157. # define SSL_CTRL_CHAIN_CERT 89
  1158. # define SSL_CTRL_GET_GROUPS 90
  1159. # define SSL_CTRL_SET_GROUPS 91
  1160. # define SSL_CTRL_SET_GROUPS_LIST 92
  1161. # define SSL_CTRL_GET_SHARED_GROUP 93
  1162. # define SSL_CTRL_SET_SIGALGS 97
  1163. # define SSL_CTRL_SET_SIGALGS_LIST 98
  1164. # define SSL_CTRL_CERT_FLAGS 99
  1165. # define SSL_CTRL_CLEAR_CERT_FLAGS 100
  1166. # define SSL_CTRL_SET_CLIENT_SIGALGS 101
  1167. # define SSL_CTRL_SET_CLIENT_SIGALGS_LIST 102
  1168. # define SSL_CTRL_GET_CLIENT_CERT_TYPES 103
  1169. # define SSL_CTRL_SET_CLIENT_CERT_TYPES 104
  1170. # define SSL_CTRL_BUILD_CERT_CHAIN 105
  1171. # define SSL_CTRL_SET_VERIFY_CERT_STORE 106
  1172. # define SSL_CTRL_SET_CHAIN_CERT_STORE 107
  1173. # define SSL_CTRL_GET_PEER_SIGNATURE_NID 108
  1174. # define SSL_CTRL_GET_PEER_TMP_KEY 109
  1175. # define SSL_CTRL_GET_RAW_CIPHERLIST 110
  1176. # define SSL_CTRL_GET_EC_POINT_FORMATS 111
  1177. # define SSL_CTRL_GET_CHAIN_CERTS 115
  1178. # define SSL_CTRL_SELECT_CURRENT_CERT 116
  1179. # define SSL_CTRL_SET_CURRENT_CERT 117
  1180. # define SSL_CTRL_SET_DH_AUTO 118
  1181. # define DTLS_CTRL_SET_LINK_MTU 120
  1182. # define DTLS_CTRL_GET_LINK_MIN_MTU 121
  1183. # define SSL_CTRL_GET_EXTMS_SUPPORT 122
  1184. # define SSL_CTRL_SET_MIN_PROTO_VERSION 123
  1185. # define SSL_CTRL_SET_MAX_PROTO_VERSION 124
  1186. # define SSL_CTRL_SET_SPLIT_SEND_FRAGMENT 125
  1187. # define SSL_CTRL_SET_MAX_PIPELINES 126
  1188. # define SSL_CTRL_GET_TLSEXT_STATUS_REQ_TYPE 127
  1189. # define SSL_CTRL_GET_TLSEXT_STATUS_REQ_CB 128
  1190. # define SSL_CTRL_GET_TLSEXT_STATUS_REQ_CB_ARG 129
  1191. # define SSL_CTRL_GET_MIN_PROTO_VERSION 130
  1192. # define SSL_CTRL_GET_MAX_PROTO_VERSION 131
  1193. # define SSL_CTRL_GET_SIGNATURE_NID 132
  1194. # define SSL_CTRL_GET_TMP_KEY 133
  1195. # define SSL_CTRL_GET_NEGOTIATED_GROUP 134
  1196. # define SSL_CTRL_GET_IANA_GROUPS 135
  1197. # define SSL_CTRL_SET_RETRY_VERIFY 136
  1198. # define SSL_CTRL_GET_VERIFY_CERT_STORE 137
  1199. # define SSL_CTRL_GET_CHAIN_CERT_STORE 138
  1200. # define SSL_CERT_SET_FIRST 1
  1201. # define SSL_CERT_SET_NEXT 2
  1202. # define SSL_CERT_SET_SERVER 3
  1203. # define DTLSv1_get_timeout(ssl, arg) \
  1204. SSL_ctrl(ssl,DTLS_CTRL_GET_TIMEOUT,0, (void *)(arg))
  1205. # define DTLSv1_handle_timeout(ssl) \
  1206. SSL_ctrl(ssl,DTLS_CTRL_HANDLE_TIMEOUT,0, NULL)
  1207. # define SSL_num_renegotiations(ssl) \
  1208. SSL_ctrl((ssl),SSL_CTRL_GET_NUM_RENEGOTIATIONS,0,NULL)
  1209. # define SSL_clear_num_renegotiations(ssl) \
  1210. SSL_ctrl((ssl),SSL_CTRL_CLEAR_NUM_RENEGOTIATIONS,0,NULL)
  1211. # define SSL_total_renegotiations(ssl) \
  1212. SSL_ctrl((ssl),SSL_CTRL_GET_TOTAL_RENEGOTIATIONS,0,NULL)
  1213. # ifndef OPENSSL_NO_DEPRECATED_3_0
  1214. # define SSL_CTX_set_tmp_dh(ctx,dh) \
  1215. SSL_CTX_ctrl(ctx,SSL_CTRL_SET_TMP_DH,0,(char *)(dh))
  1216. # endif
  1217. # define SSL_CTX_set_dh_auto(ctx, onoff) \
  1218. SSL_CTX_ctrl(ctx,SSL_CTRL_SET_DH_AUTO,onoff,NULL)
  1219. # define SSL_set_dh_auto(s, onoff) \
  1220. SSL_ctrl(s,SSL_CTRL_SET_DH_AUTO,onoff,NULL)
  1221. # ifndef OPENSSL_NO_DEPRECATED_3_0
  1222. # define SSL_set_tmp_dh(ssl,dh) \
  1223. SSL_ctrl(ssl,SSL_CTRL_SET_TMP_DH,0,(char *)(dh))
  1224. # endif
  1225. # ifndef OPENSSL_NO_DEPRECATED_3_0
  1226. # define SSL_CTX_set_tmp_ecdh(ctx,ecdh) \
  1227. SSL_CTX_ctrl(ctx,SSL_CTRL_SET_TMP_ECDH,0,(char *)(ecdh))
  1228. # define SSL_set_tmp_ecdh(ssl,ecdh) \
  1229. SSL_ctrl(ssl,SSL_CTRL_SET_TMP_ECDH,0,(char *)(ecdh))
  1230. # endif
  1231. # define SSL_CTX_add_extra_chain_cert(ctx,x509) \
  1232. SSL_CTX_ctrl(ctx,SSL_CTRL_EXTRA_CHAIN_CERT,0,(char *)(x509))
  1233. # define SSL_CTX_get_extra_chain_certs(ctx,px509) \
  1234. SSL_CTX_ctrl(ctx,SSL_CTRL_GET_EXTRA_CHAIN_CERTS,0,px509)
  1235. # define SSL_CTX_get_extra_chain_certs_only(ctx,px509) \
  1236. SSL_CTX_ctrl(ctx,SSL_CTRL_GET_EXTRA_CHAIN_CERTS,1,px509)
  1237. # define SSL_CTX_clear_extra_chain_certs(ctx) \
  1238. SSL_CTX_ctrl(ctx,SSL_CTRL_CLEAR_EXTRA_CHAIN_CERTS,0,NULL)
  1239. # define SSL_CTX_set0_chain(ctx,sk) \
  1240. SSL_CTX_ctrl(ctx,SSL_CTRL_CHAIN,0,(char *)(sk))
  1241. # define SSL_CTX_set1_chain(ctx,sk) \
  1242. SSL_CTX_ctrl(ctx,SSL_CTRL_CHAIN,1,(char *)(sk))
  1243. # define SSL_CTX_add0_chain_cert(ctx,x509) \
  1244. SSL_CTX_ctrl(ctx,SSL_CTRL_CHAIN_CERT,0,(char *)(x509))
  1245. # define SSL_CTX_add1_chain_cert(ctx,x509) \
  1246. SSL_CTX_ctrl(ctx,SSL_CTRL_CHAIN_CERT,1,(char *)(x509))
  1247. # define SSL_CTX_get0_chain_certs(ctx,px509) \
  1248. SSL_CTX_ctrl(ctx,SSL_CTRL_GET_CHAIN_CERTS,0,px509)
  1249. # define SSL_CTX_clear_chain_certs(ctx) \
  1250. SSL_CTX_set0_chain(ctx,NULL)
  1251. # define SSL_CTX_build_cert_chain(ctx, flags) \
  1252. SSL_CTX_ctrl(ctx,SSL_CTRL_BUILD_CERT_CHAIN, flags, NULL)
  1253. # define SSL_CTX_select_current_cert(ctx,x509) \
  1254. SSL_CTX_ctrl(ctx,SSL_CTRL_SELECT_CURRENT_CERT,0,(char *)(x509))
  1255. # define SSL_CTX_set_current_cert(ctx, op) \
  1256. SSL_CTX_ctrl(ctx,SSL_CTRL_SET_CURRENT_CERT, op, NULL)
  1257. # define SSL_CTX_set0_verify_cert_store(ctx,st) \
  1258. SSL_CTX_ctrl(ctx,SSL_CTRL_SET_VERIFY_CERT_STORE,0,(char *)(st))
  1259. # define SSL_CTX_set1_verify_cert_store(ctx,st) \
  1260. SSL_CTX_ctrl(ctx,SSL_CTRL_SET_VERIFY_CERT_STORE,1,(char *)(st))
  1261. # define SSL_CTX_get0_verify_cert_store(ctx,st) \
  1262. SSL_CTX_ctrl(ctx,SSL_CTRL_GET_VERIFY_CERT_STORE,0,(char *)(st))
  1263. # define SSL_CTX_set0_chain_cert_store(ctx,st) \
  1264. SSL_CTX_ctrl(ctx,SSL_CTRL_SET_CHAIN_CERT_STORE,0,(char *)(st))
  1265. # define SSL_CTX_set1_chain_cert_store(ctx,st) \
  1266. SSL_CTX_ctrl(ctx,SSL_CTRL_SET_CHAIN_CERT_STORE,1,(char *)(st))
  1267. # define SSL_CTX_get0_chain_cert_store(ctx,st) \
  1268. SSL_CTX_ctrl(ctx,SSL_CTRL_GET_CHAIN_CERT_STORE,0,(char *)(st))
  1269. # define SSL_set0_chain(s,sk) \
  1270. SSL_ctrl(s,SSL_CTRL_CHAIN,0,(char *)(sk))
  1271. # define SSL_set1_chain(s,sk) \
  1272. SSL_ctrl(s,SSL_CTRL_CHAIN,1,(char *)(sk))
  1273. # define SSL_add0_chain_cert(s,x509) \
  1274. SSL_ctrl(s,SSL_CTRL_CHAIN_CERT,0,(char *)(x509))
  1275. # define SSL_add1_chain_cert(s,x509) \
  1276. SSL_ctrl(s,SSL_CTRL_CHAIN_CERT,1,(char *)(x509))
  1277. # define SSL_get0_chain_certs(s,px509) \
  1278. SSL_ctrl(s,SSL_CTRL_GET_CHAIN_CERTS,0,px509)
  1279. # define SSL_clear_chain_certs(s) \
  1280. SSL_set0_chain(s,NULL)
  1281. # define SSL_build_cert_chain(s, flags) \
  1282. SSL_ctrl(s,SSL_CTRL_BUILD_CERT_CHAIN, flags, NULL)
  1283. # define SSL_select_current_cert(s,x509) \
  1284. SSL_ctrl(s,SSL_CTRL_SELECT_CURRENT_CERT,0,(char *)(x509))
  1285. # define SSL_set_current_cert(s,op) \
  1286. SSL_ctrl(s,SSL_CTRL_SET_CURRENT_CERT, op, NULL)
  1287. # define SSL_set0_verify_cert_store(s,st) \
  1288. SSL_ctrl(s,SSL_CTRL_SET_VERIFY_CERT_STORE,0,(char *)(st))
  1289. # define SSL_set1_verify_cert_store(s,st) \
  1290. SSL_ctrl(s,SSL_CTRL_SET_VERIFY_CERT_STORE,1,(char *)(st))
  1291. #define SSL_get0_verify_cert_store(s,st) \
  1292. SSL_ctrl(s,SSL_CTRL_GET_VERIFY_CERT_STORE,0,(char *)(st))
  1293. # define SSL_set0_chain_cert_store(s,st) \
  1294. SSL_ctrl(s,SSL_CTRL_SET_CHAIN_CERT_STORE,0,(char *)(st))
  1295. # define SSL_set1_chain_cert_store(s,st) \
  1296. SSL_ctrl(s,SSL_CTRL_SET_CHAIN_CERT_STORE,1,(char *)(st))
  1297. #define SSL_get0_chain_cert_store(s,st) \
  1298. SSL_ctrl(s,SSL_CTRL_GET_CHAIN_CERT_STORE,0,(char *)(st))
  1299. # define SSL_get1_groups(s, glist) \
  1300. SSL_ctrl(s,SSL_CTRL_GET_GROUPS,0,(int*)(glist))
  1301. # define SSL_get0_iana_groups(s, plst) \
  1302. SSL_ctrl(s,SSL_CTRL_GET_IANA_GROUPS,0,(uint16_t **)(plst))
  1303. # define SSL_CTX_set1_groups(ctx, glist, glistlen) \
  1304. SSL_CTX_ctrl(ctx,SSL_CTRL_SET_GROUPS,glistlen,(int *)(glist))
  1305. # define SSL_CTX_set1_groups_list(ctx, s) \
  1306. SSL_CTX_ctrl(ctx,SSL_CTRL_SET_GROUPS_LIST,0,(char *)(s))
  1307. # define SSL_set1_groups(s, glist, glistlen) \
  1308. SSL_ctrl(s,SSL_CTRL_SET_GROUPS,glistlen,(char *)(glist))
  1309. # define SSL_set1_groups_list(s, str) \
  1310. SSL_ctrl(s,SSL_CTRL_SET_GROUPS_LIST,0,(char *)(str))
  1311. # define SSL_get_shared_group(s, n) \
  1312. SSL_ctrl(s,SSL_CTRL_GET_SHARED_GROUP,n,NULL)
  1313. # define SSL_get_negotiated_group(s) \
  1314. SSL_ctrl(s,SSL_CTRL_GET_NEGOTIATED_GROUP,0,NULL)
  1315. # define SSL_CTX_set1_sigalgs(ctx, slist, slistlen) \
  1316. SSL_CTX_ctrl(ctx,SSL_CTRL_SET_SIGALGS,slistlen,(int *)(slist))
  1317. # define SSL_CTX_set1_sigalgs_list(ctx, s) \
  1318. SSL_CTX_ctrl(ctx,SSL_CTRL_SET_SIGALGS_LIST,0,(char *)(s))
  1319. # define SSL_set1_sigalgs(s, slist, slistlen) \
  1320. SSL_ctrl(s,SSL_CTRL_SET_SIGALGS,slistlen,(int *)(slist))
  1321. # define SSL_set1_sigalgs_list(s, str) \
  1322. SSL_ctrl(s,SSL_CTRL_SET_SIGALGS_LIST,0,(char *)(str))
  1323. # define SSL_CTX_set1_client_sigalgs(ctx, slist, slistlen) \
  1324. SSL_CTX_ctrl(ctx,SSL_CTRL_SET_CLIENT_SIGALGS,slistlen,(int *)(slist))
  1325. # define SSL_CTX_set1_client_sigalgs_list(ctx, s) \
  1326. SSL_CTX_ctrl(ctx,SSL_CTRL_SET_CLIENT_SIGALGS_LIST,0,(char *)(s))
  1327. # define SSL_set1_client_sigalgs(s, slist, slistlen) \
  1328. SSL_ctrl(s,SSL_CTRL_SET_CLIENT_SIGALGS,slistlen,(int *)(slist))
  1329. # define SSL_set1_client_sigalgs_list(s, str) \
  1330. SSL_ctrl(s,SSL_CTRL_SET_CLIENT_SIGALGS_LIST,0,(char *)(str))
  1331. # define SSL_get0_certificate_types(s, clist) \
  1332. SSL_ctrl(s, SSL_CTRL_GET_CLIENT_CERT_TYPES, 0, (char *)(clist))
  1333. # define SSL_CTX_set1_client_certificate_types(ctx, clist, clistlen) \
  1334. SSL_CTX_ctrl(ctx,SSL_CTRL_SET_CLIENT_CERT_TYPES,clistlen, \
  1335. (char *)(clist))
  1336. # define SSL_set1_client_certificate_types(s, clist, clistlen) \
  1337. SSL_ctrl(s,SSL_CTRL_SET_CLIENT_CERT_TYPES,clistlen,(char *)(clist))
  1338. # define SSL_get_signature_nid(s, pn) \
  1339. SSL_ctrl(s,SSL_CTRL_GET_SIGNATURE_NID,0,pn)
  1340. # define SSL_get_peer_signature_nid(s, pn) \
  1341. SSL_ctrl(s,SSL_CTRL_GET_PEER_SIGNATURE_NID,0,pn)
  1342. # define SSL_get_peer_tmp_key(s, pk) \
  1343. SSL_ctrl(s,SSL_CTRL_GET_PEER_TMP_KEY,0,pk)
  1344. # define SSL_get_tmp_key(s, pk) \
  1345. SSL_ctrl(s,SSL_CTRL_GET_TMP_KEY,0,pk)
  1346. # define SSL_get0_raw_cipherlist(s, plst) \
  1347. SSL_ctrl(s,SSL_CTRL_GET_RAW_CIPHERLIST,0,plst)
  1348. # define SSL_get0_ec_point_formats(s, plst) \
  1349. SSL_ctrl(s,SSL_CTRL_GET_EC_POINT_FORMATS,0,plst)
  1350. # define SSL_CTX_set_min_proto_version(ctx, version) \
  1351. SSL_CTX_ctrl(ctx, SSL_CTRL_SET_MIN_PROTO_VERSION, version, NULL)
  1352. # define SSL_CTX_set_max_proto_version(ctx, version) \
  1353. SSL_CTX_ctrl(ctx, SSL_CTRL_SET_MAX_PROTO_VERSION, version, NULL)
  1354. # define SSL_CTX_get_min_proto_version(ctx) \
  1355. SSL_CTX_ctrl(ctx, SSL_CTRL_GET_MIN_PROTO_VERSION, 0, NULL)
  1356. # define SSL_CTX_get_max_proto_version(ctx) \
  1357. SSL_CTX_ctrl(ctx, SSL_CTRL_GET_MAX_PROTO_VERSION, 0, NULL)
  1358. # define SSL_set_min_proto_version(s, version) \
  1359. SSL_ctrl(s, SSL_CTRL_SET_MIN_PROTO_VERSION, version, NULL)
  1360. # define SSL_set_max_proto_version(s, version) \
  1361. SSL_ctrl(s, SSL_CTRL_SET_MAX_PROTO_VERSION, version, NULL)
  1362. # define SSL_get_min_proto_version(s) \
  1363. SSL_ctrl(s, SSL_CTRL_GET_MIN_PROTO_VERSION, 0, NULL)
  1364. # define SSL_get_max_proto_version(s) \
  1365. SSL_ctrl(s, SSL_CTRL_GET_MAX_PROTO_VERSION, 0, NULL)
  1366. const char *SSL_group_to_name(SSL *s, int id);
  1367. /* Backwards compatibility, original 1.1.0 names */
  1368. # define SSL_CTRL_GET_SERVER_TMP_KEY \
  1369. SSL_CTRL_GET_PEER_TMP_KEY
  1370. # define SSL_get_server_tmp_key(s, pk) \
  1371. SSL_get_peer_tmp_key(s, pk)
  1372. int SSL_set0_tmp_dh_pkey(SSL *s, EVP_PKEY *dhpkey);
  1373. int SSL_CTX_set0_tmp_dh_pkey(SSL_CTX *ctx, EVP_PKEY *dhpkey);
  1374. /*
  1375. * The following symbol names are old and obsolete. They are kept
  1376. * for compatibility reasons only and should not be used anymore.
  1377. */
  1378. # define SSL_CTRL_GET_CURVES SSL_CTRL_GET_GROUPS
  1379. # define SSL_CTRL_SET_CURVES SSL_CTRL_SET_GROUPS
  1380. # define SSL_CTRL_SET_CURVES_LIST SSL_CTRL_SET_GROUPS_LIST
  1381. # define SSL_CTRL_GET_SHARED_CURVE SSL_CTRL_GET_SHARED_GROUP
  1382. # define SSL_get1_curves SSL_get1_groups
  1383. # define SSL_CTX_set1_curves SSL_CTX_set1_groups
  1384. # define SSL_CTX_set1_curves_list SSL_CTX_set1_groups_list
  1385. # define SSL_set1_curves SSL_set1_groups
  1386. # define SSL_set1_curves_list SSL_set1_groups_list
  1387. # define SSL_get_shared_curve SSL_get_shared_group
  1388. # ifndef OPENSSL_NO_DEPRECATED_1_1_0
  1389. /* Provide some compatibility macros for removed functionality. */
  1390. # define SSL_CTX_need_tmp_RSA(ctx) 0
  1391. # define SSL_CTX_set_tmp_rsa(ctx,rsa) 1
  1392. # define SSL_need_tmp_RSA(ssl) 0
  1393. # define SSL_set_tmp_rsa(ssl,rsa) 1
  1394. # define SSL_CTX_set_ecdh_auto(dummy, onoff) ((onoff) != 0)
  1395. # define SSL_set_ecdh_auto(dummy, onoff) ((onoff) != 0)
  1396. /*
  1397. * We "pretend" to call the callback to avoid warnings about unused static
  1398. * functions.
  1399. */
  1400. # define SSL_CTX_set_tmp_rsa_callback(ctx, cb) while(0) (cb)(NULL, 0, 0)
  1401. # define SSL_set_tmp_rsa_callback(ssl, cb) while(0) (cb)(NULL, 0, 0)
  1402. # endif
  1403. __owur const BIO_METHOD *BIO_f_ssl(void);
  1404. __owur BIO *BIO_new_ssl(SSL_CTX *ctx, int client);
  1405. __owur BIO *BIO_new_ssl_connect(SSL_CTX *ctx);
  1406. __owur BIO *BIO_new_buffer_ssl_connect(SSL_CTX *ctx);
  1407. __owur int BIO_ssl_copy_session_id(BIO *to, BIO *from);
  1408. void BIO_ssl_shutdown(BIO *ssl_bio);
  1409. __owur int SSL_CTX_set_cipher_list(SSL_CTX *, const char *str);
  1410. __owur SSL_CTX *SSL_CTX_new(const SSL_METHOD *meth);
  1411. __owur SSL_CTX *SSL_CTX_new_ex(OSSL_LIB_CTX *libctx, const char *propq,
  1412. const SSL_METHOD *meth);
  1413. int SSL_CTX_up_ref(SSL_CTX *ctx);
  1414. void SSL_CTX_free(SSL_CTX *);
  1415. __owur long SSL_CTX_set_timeout(SSL_CTX *ctx, long t);
  1416. __owur long SSL_CTX_get_timeout(const SSL_CTX *ctx);
  1417. __owur X509_STORE *SSL_CTX_get_cert_store(const SSL_CTX *);
  1418. void SSL_CTX_set_cert_store(SSL_CTX *, X509_STORE *);
  1419. void SSL_CTX_set1_cert_store(SSL_CTX *, X509_STORE *);
  1420. __owur int SSL_want(const SSL *s);
  1421. __owur int SSL_clear(SSL *s);
  1422. void SSL_CTX_flush_sessions(SSL_CTX *ctx, long tm);
  1423. __owur const SSL_CIPHER *SSL_get_current_cipher(const SSL *s);
  1424. __owur const SSL_CIPHER *SSL_get_pending_cipher(const SSL *s);
  1425. __owur int SSL_CIPHER_get_bits(const SSL_CIPHER *c, int *alg_bits);
  1426. __owur const char *SSL_CIPHER_get_version(const SSL_CIPHER *c);
  1427. __owur const char *SSL_CIPHER_get_name(const SSL_CIPHER *c);
  1428. __owur const char *SSL_CIPHER_standard_name(const SSL_CIPHER *c);
  1429. __owur const char *OPENSSL_cipher_name(const char *rfc_name);
  1430. __owur uint32_t SSL_CIPHER_get_id(const SSL_CIPHER *c);
  1431. __owur uint16_t SSL_CIPHER_get_protocol_id(const SSL_CIPHER *c);
  1432. __owur int SSL_CIPHER_get_kx_nid(const SSL_CIPHER *c);
  1433. __owur int SSL_CIPHER_get_auth_nid(const SSL_CIPHER *c);
  1434. __owur const EVP_MD *SSL_CIPHER_get_handshake_digest(const SSL_CIPHER *c);
  1435. __owur int SSL_CIPHER_is_aead(const SSL_CIPHER *c);
  1436. __owur int SSL_get_fd(const SSL *s);
  1437. __owur int SSL_get_rfd(const SSL *s);
  1438. __owur int SSL_get_wfd(const SSL *s);
  1439. __owur const char *SSL_get_cipher_list(const SSL *s, int n);
  1440. __owur char *SSL_get_shared_ciphers(const SSL *s, char *buf, int size);
  1441. __owur int SSL_get_read_ahead(const SSL *s);
  1442. __owur int SSL_pending(const SSL *s);
  1443. __owur int SSL_has_pending(const SSL *s);
  1444. # ifndef OPENSSL_NO_SOCK
  1445. __owur int SSL_set_fd(SSL *s, int fd);
  1446. __owur int SSL_set_rfd(SSL *s, int fd);
  1447. __owur int SSL_set_wfd(SSL *s, int fd);
  1448. # endif
  1449. void SSL_set0_rbio(SSL *s, BIO *rbio);
  1450. void SSL_set0_wbio(SSL *s, BIO *wbio);
  1451. void SSL_set_bio(SSL *s, BIO *rbio, BIO *wbio);
  1452. __owur BIO *SSL_get_rbio(const SSL *s);
  1453. __owur BIO *SSL_get_wbio(const SSL *s);
  1454. __owur int SSL_set_cipher_list(SSL *s, const char *str);
  1455. __owur int SSL_CTX_set_ciphersuites(SSL_CTX *ctx, const char *str);
  1456. __owur int SSL_set_ciphersuites(SSL *s, const char *str);
  1457. void SSL_set_read_ahead(SSL *s, int yes);
  1458. __owur int SSL_get_verify_mode(const SSL *s);
  1459. __owur int SSL_get_verify_depth(const SSL *s);
  1460. __owur SSL_verify_cb SSL_get_verify_callback(const SSL *s);
  1461. void SSL_set_verify(SSL *s, int mode, SSL_verify_cb callback);
  1462. void SSL_set_verify_depth(SSL *s, int depth);
  1463. void SSL_set_cert_cb(SSL *s, int (*cb) (SSL *ssl, void *arg), void *arg);
  1464. # ifndef OPENSSL_NO_DEPRECATED_3_0
  1465. OSSL_DEPRECATEDIN_3_0 __owur int SSL_use_RSAPrivateKey(SSL *ssl, RSA *rsa);
  1466. OSSL_DEPRECATEDIN_3_0
  1467. __owur int SSL_use_RSAPrivateKey_ASN1(SSL *ssl,
  1468. const unsigned char *d, long len);
  1469. # endif
  1470. __owur int SSL_use_PrivateKey(SSL *ssl, EVP_PKEY *pkey);
  1471. __owur int SSL_use_PrivateKey_ASN1(int pk, SSL *ssl, const unsigned char *d,
  1472. long len);
  1473. __owur int SSL_use_certificate(SSL *ssl, X509 *x);
  1474. __owur int SSL_use_certificate_ASN1(SSL *ssl, const unsigned char *d, int len);
  1475. __owur int SSL_use_cert_and_key(SSL *ssl, X509 *x509, EVP_PKEY *privatekey,
  1476. STACK_OF(X509) *chain, int override);
  1477. /* serverinfo file format versions */
  1478. # define SSL_SERVERINFOV1 1
  1479. # define SSL_SERVERINFOV2 2
  1480. /* Set serverinfo data for the current active cert. */
  1481. __owur int SSL_CTX_use_serverinfo(SSL_CTX *ctx, const unsigned char *serverinfo,
  1482. size_t serverinfo_length);
  1483. __owur int SSL_CTX_use_serverinfo_ex(SSL_CTX *ctx, unsigned int version,
  1484. const unsigned char *serverinfo,
  1485. size_t serverinfo_length);
  1486. __owur int SSL_CTX_use_serverinfo_file(SSL_CTX *ctx, const char *file);
  1487. #ifndef OPENSSL_NO_DEPRECATED_3_0
  1488. OSSL_DEPRECATEDIN_3_0
  1489. __owur int SSL_use_RSAPrivateKey_file(SSL *ssl, const char *file, int type);
  1490. #endif
  1491. __owur int SSL_use_PrivateKey_file(SSL *ssl, const char *file, int type);
  1492. __owur int SSL_use_certificate_file(SSL *ssl, const char *file, int type);
  1493. #ifndef OPENSSL_NO_DEPRECATED_3_0
  1494. OSSL_DEPRECATEDIN_3_0
  1495. __owur int SSL_CTX_use_RSAPrivateKey_file(SSL_CTX *ctx, const char *file,
  1496. int type);
  1497. #endif
  1498. __owur int SSL_CTX_use_PrivateKey_file(SSL_CTX *ctx, const char *file,
  1499. int type);
  1500. __owur int SSL_CTX_use_certificate_file(SSL_CTX *ctx, const char *file,
  1501. int type);
  1502. /* PEM type */
  1503. __owur int SSL_CTX_use_certificate_chain_file(SSL_CTX *ctx, const char *file);
  1504. __owur int SSL_use_certificate_chain_file(SSL *ssl, const char *file);
  1505. __owur STACK_OF(X509_NAME) *SSL_load_client_CA_file(const char *file);
  1506. __owur STACK_OF(X509_NAME)
  1507. *SSL_load_client_CA_file_ex(const char *file, OSSL_LIB_CTX *libctx,
  1508. const char *propq);
  1509. __owur int SSL_add_file_cert_subjects_to_stack(STACK_OF(X509_NAME) *stackCAs,
  1510. const char *file);
  1511. int SSL_add_dir_cert_subjects_to_stack(STACK_OF(X509_NAME) *stackCAs,
  1512. const char *dir);
  1513. int SSL_add_store_cert_subjects_to_stack(STACK_OF(X509_NAME) *stackCAs,
  1514. const char *uri);
  1515. # ifndef OPENSSL_NO_DEPRECATED_1_1_0
  1516. # define SSL_load_error_strings() \
  1517. OPENSSL_init_ssl(OPENSSL_INIT_LOAD_SSL_STRINGS \
  1518. | OPENSSL_INIT_LOAD_CRYPTO_STRINGS, NULL)
  1519. # endif
  1520. __owur const char *SSL_state_string(const SSL *s);
  1521. __owur const char *SSL_rstate_string(const SSL *s);
  1522. __owur const char *SSL_state_string_long(const SSL *s);
  1523. __owur const char *SSL_rstate_string_long(const SSL *s);
  1524. __owur long SSL_SESSION_get_time(const SSL_SESSION *s);
  1525. __owur long SSL_SESSION_set_time(SSL_SESSION *s, long t);
  1526. __owur long SSL_SESSION_get_timeout(const SSL_SESSION *s);
  1527. __owur long SSL_SESSION_set_timeout(SSL_SESSION *s, long t);
  1528. __owur int SSL_SESSION_get_protocol_version(const SSL_SESSION *s);
  1529. __owur int SSL_SESSION_set_protocol_version(SSL_SESSION *s, int version);
  1530. __owur const char *SSL_SESSION_get0_hostname(const SSL_SESSION *s);
  1531. __owur int SSL_SESSION_set1_hostname(SSL_SESSION *s, const char *hostname);
  1532. void SSL_SESSION_get0_alpn_selected(const SSL_SESSION *s,
  1533. const unsigned char **alpn,
  1534. size_t *len);
  1535. __owur int SSL_SESSION_set1_alpn_selected(SSL_SESSION *s,
  1536. const unsigned char *alpn,
  1537. size_t len);
  1538. __owur const SSL_CIPHER *SSL_SESSION_get0_cipher(const SSL_SESSION *s);
  1539. __owur int SSL_SESSION_set_cipher(SSL_SESSION *s, const SSL_CIPHER *cipher);
  1540. __owur int SSL_SESSION_has_ticket(const SSL_SESSION *s);
  1541. __owur unsigned long SSL_SESSION_get_ticket_lifetime_hint(const SSL_SESSION *s);
  1542. void SSL_SESSION_get0_ticket(const SSL_SESSION *s, const unsigned char **tick,
  1543. size_t *len);
  1544. __owur uint32_t SSL_SESSION_get_max_early_data(const SSL_SESSION *s);
  1545. __owur int SSL_SESSION_set_max_early_data(SSL_SESSION *s,
  1546. uint32_t max_early_data);
  1547. __owur int SSL_copy_session_id(SSL *to, const SSL *from);
  1548. __owur X509 *SSL_SESSION_get0_peer(SSL_SESSION *s);
  1549. __owur int SSL_SESSION_set1_id_context(SSL_SESSION *s,
  1550. const unsigned char *sid_ctx,
  1551. unsigned int sid_ctx_len);
  1552. __owur int SSL_SESSION_set1_id(SSL_SESSION *s, const unsigned char *sid,
  1553. unsigned int sid_len);
  1554. __owur int SSL_SESSION_is_resumable(const SSL_SESSION *s);
  1555. __owur SSL_SESSION *SSL_SESSION_new(void);
  1556. __owur SSL_SESSION *SSL_SESSION_dup(const SSL_SESSION *src);
  1557. const unsigned char *SSL_SESSION_get_id(const SSL_SESSION *s,
  1558. unsigned int *len);
  1559. const unsigned char *SSL_SESSION_get0_id_context(const SSL_SESSION *s,
  1560. unsigned int *len);
  1561. __owur unsigned int SSL_SESSION_get_compress_id(const SSL_SESSION *s);
  1562. # ifndef OPENSSL_NO_STDIO
  1563. int SSL_SESSION_print_fp(FILE *fp, const SSL_SESSION *ses);
  1564. # endif
  1565. int SSL_SESSION_print(BIO *fp, const SSL_SESSION *ses);
  1566. int SSL_SESSION_print_keylog(BIO *bp, const SSL_SESSION *x);
  1567. int SSL_SESSION_up_ref(SSL_SESSION *ses);
  1568. void SSL_SESSION_free(SSL_SESSION *ses);
  1569. __owur int i2d_SSL_SESSION(const SSL_SESSION *in, unsigned char **pp);
  1570. __owur int SSL_set_session(SSL *to, SSL_SESSION *session);
  1571. int SSL_CTX_add_session(SSL_CTX *ctx, SSL_SESSION *session);
  1572. int SSL_CTX_remove_session(SSL_CTX *ctx, SSL_SESSION *session);
  1573. __owur int SSL_CTX_set_generate_session_id(SSL_CTX *ctx, GEN_SESSION_CB cb);
  1574. __owur int SSL_set_generate_session_id(SSL *s, GEN_SESSION_CB cb);
  1575. __owur int SSL_has_matching_session_id(const SSL *s,
  1576. const unsigned char *id,
  1577. unsigned int id_len);
  1578. SSL_SESSION *d2i_SSL_SESSION(SSL_SESSION **a, const unsigned char **pp,
  1579. long length);
  1580. # ifdef OPENSSL_X509_H
  1581. __owur X509 *SSL_get0_peer_certificate(const SSL *s);
  1582. __owur X509 *SSL_get1_peer_certificate(const SSL *s);
  1583. /* Deprecated in 3.0.0 */
  1584. # ifndef OPENSSL_NO_DEPRECATED_3_0
  1585. # define SSL_get_peer_certificate SSL_get1_peer_certificate
  1586. # endif
  1587. # endif
  1588. __owur STACK_OF(X509) *SSL_get_peer_cert_chain(const SSL *s);
  1589. __owur int SSL_CTX_get_verify_mode(const SSL_CTX *ctx);
  1590. __owur int SSL_CTX_get_verify_depth(const SSL_CTX *ctx);
  1591. __owur SSL_verify_cb SSL_CTX_get_verify_callback(const SSL_CTX *ctx);
  1592. void SSL_CTX_set_verify(SSL_CTX *ctx, int mode, SSL_verify_cb callback);
  1593. void SSL_CTX_set_verify_depth(SSL_CTX *ctx, int depth);
  1594. void SSL_CTX_set_cert_verify_callback(SSL_CTX *ctx,
  1595. int (*cb) (X509_STORE_CTX *, void *),
  1596. void *arg);
  1597. void SSL_CTX_set_cert_cb(SSL_CTX *c, int (*cb) (SSL *ssl, void *arg),
  1598. void *arg);
  1599. # ifndef OPENSSL_NO_DEPRECATED_3_0
  1600. OSSL_DEPRECATEDIN_3_0
  1601. __owur int SSL_CTX_use_RSAPrivateKey(SSL_CTX *ctx, RSA *rsa);
  1602. OSSL_DEPRECATEDIN_3_0
  1603. __owur int SSL_CTX_use_RSAPrivateKey_ASN1(SSL_CTX *ctx, const unsigned char *d,
  1604. long len);
  1605. # endif
  1606. __owur int SSL_CTX_use_PrivateKey(SSL_CTX *ctx, EVP_PKEY *pkey);
  1607. __owur int SSL_CTX_use_PrivateKey_ASN1(int pk, SSL_CTX *ctx,
  1608. const unsigned char *d, long len);
  1609. __owur int SSL_CTX_use_certificate(SSL_CTX *ctx, X509 *x);
  1610. __owur int SSL_CTX_use_certificate_ASN1(SSL_CTX *ctx, int len,
  1611. const unsigned char *d);
  1612. __owur int SSL_CTX_use_cert_and_key(SSL_CTX *ctx, X509 *x509, EVP_PKEY *privatekey,
  1613. STACK_OF(X509) *chain, int override);
  1614. void SSL_CTX_set_default_passwd_cb(SSL_CTX *ctx, pem_password_cb *cb);
  1615. void SSL_CTX_set_default_passwd_cb_userdata(SSL_CTX *ctx, void *u);
  1616. pem_password_cb *SSL_CTX_get_default_passwd_cb(SSL_CTX *ctx);
  1617. void *SSL_CTX_get_default_passwd_cb_userdata(SSL_CTX *ctx);
  1618. void SSL_set_default_passwd_cb(SSL *s, pem_password_cb *cb);
  1619. void SSL_set_default_passwd_cb_userdata(SSL *s, void *u);
  1620. pem_password_cb *SSL_get_default_passwd_cb(SSL *s);
  1621. void *SSL_get_default_passwd_cb_userdata(SSL *s);
  1622. __owur int SSL_CTX_check_private_key(const SSL_CTX *ctx);
  1623. __owur int SSL_check_private_key(const SSL *ctx);
  1624. __owur int SSL_CTX_set_session_id_context(SSL_CTX *ctx,
  1625. const unsigned char *sid_ctx,
  1626. unsigned int sid_ctx_len);
  1627. SSL *SSL_new(SSL_CTX *ctx);
  1628. int SSL_up_ref(SSL *s);
  1629. int SSL_is_dtls(const SSL *s);
  1630. __owur int SSL_set_session_id_context(SSL *ssl, const unsigned char *sid_ctx,
  1631. unsigned int sid_ctx_len);
  1632. __owur int SSL_CTX_set_purpose(SSL_CTX *ctx, int purpose);
  1633. __owur int SSL_set_purpose(SSL *ssl, int purpose);
  1634. __owur int SSL_CTX_set_trust(SSL_CTX *ctx, int trust);
  1635. __owur int SSL_set_trust(SSL *ssl, int trust);
  1636. __owur int SSL_set1_host(SSL *s, const char *hostname);
  1637. __owur int SSL_add1_host(SSL *s, const char *hostname);
  1638. __owur const char *SSL_get0_peername(SSL *s);
  1639. void SSL_set_hostflags(SSL *s, unsigned int flags);
  1640. __owur int SSL_CTX_dane_enable(SSL_CTX *ctx);
  1641. __owur int SSL_CTX_dane_mtype_set(SSL_CTX *ctx, const EVP_MD *md,
  1642. uint8_t mtype, uint8_t ord);
  1643. __owur int SSL_dane_enable(SSL *s, const char *basedomain);
  1644. __owur int SSL_dane_tlsa_add(SSL *s, uint8_t usage, uint8_t selector,
  1645. uint8_t mtype, const unsigned char *data, size_t dlen);
  1646. __owur int SSL_get0_dane_authority(SSL *s, X509 **mcert, EVP_PKEY **mspki);
  1647. __owur int SSL_get0_dane_tlsa(SSL *s, uint8_t *usage, uint8_t *selector,
  1648. uint8_t *mtype, const unsigned char **data,
  1649. size_t *dlen);
  1650. /*
  1651. * Bridge opacity barrier between libcrypt and libssl, also needed to support
  1652. * offline testing in test/danetest.c
  1653. */
  1654. SSL_DANE *SSL_get0_dane(SSL *ssl);
  1655. /*
  1656. * DANE flags
  1657. */
  1658. unsigned long SSL_CTX_dane_set_flags(SSL_CTX *ctx, unsigned long flags);
  1659. unsigned long SSL_CTX_dane_clear_flags(SSL_CTX *ctx, unsigned long flags);
  1660. unsigned long SSL_dane_set_flags(SSL *ssl, unsigned long flags);
  1661. unsigned long SSL_dane_clear_flags(SSL *ssl, unsigned long flags);
  1662. __owur int SSL_CTX_set1_param(SSL_CTX *ctx, X509_VERIFY_PARAM *vpm);
  1663. __owur int SSL_set1_param(SSL *ssl, X509_VERIFY_PARAM *vpm);
  1664. __owur X509_VERIFY_PARAM *SSL_CTX_get0_param(SSL_CTX *ctx);
  1665. __owur X509_VERIFY_PARAM *SSL_get0_param(SSL *ssl);
  1666. # ifndef OPENSSL_NO_SRP
  1667. # ifndef OPENSSL_NO_DEPRECATED_3_0
  1668. OSSL_DEPRECATEDIN_3_0 int SSL_CTX_set_srp_username(SSL_CTX *ctx, char *name);
  1669. OSSL_DEPRECATEDIN_3_0 int SSL_CTX_set_srp_password(SSL_CTX *ctx, char *password);
  1670. OSSL_DEPRECATEDIN_3_0 int SSL_CTX_set_srp_strength(SSL_CTX *ctx, int strength);
  1671. OSSL_DEPRECATEDIN_3_0
  1672. int SSL_CTX_set_srp_client_pwd_callback(SSL_CTX *ctx,
  1673. char *(*cb) (SSL *, void *));
  1674. OSSL_DEPRECATEDIN_3_0
  1675. int SSL_CTX_set_srp_verify_param_callback(SSL_CTX *ctx,
  1676. int (*cb) (SSL *, void *));
  1677. OSSL_DEPRECATEDIN_3_0
  1678. int SSL_CTX_set_srp_username_callback(SSL_CTX *ctx,
  1679. int (*cb) (SSL *, int *, void *));
  1680. OSSL_DEPRECATEDIN_3_0 int SSL_CTX_set_srp_cb_arg(SSL_CTX *ctx, void *arg);
  1681. OSSL_DEPRECATEDIN_3_0
  1682. int SSL_set_srp_server_param(SSL *s, const BIGNUM *N, const BIGNUM *g,
  1683. BIGNUM *sa, BIGNUM *v, char *info);
  1684. OSSL_DEPRECATEDIN_3_0
  1685. int SSL_set_srp_server_param_pw(SSL *s, const char *user, const char *pass,
  1686. const char *grp);
  1687. OSSL_DEPRECATEDIN_3_0 __owur BIGNUM *SSL_get_srp_g(SSL *s);
  1688. OSSL_DEPRECATEDIN_3_0 __owur BIGNUM *SSL_get_srp_N(SSL *s);
  1689. OSSL_DEPRECATEDIN_3_0 __owur char *SSL_get_srp_username(SSL *s);
  1690. OSSL_DEPRECATEDIN_3_0 __owur char *SSL_get_srp_userinfo(SSL *s);
  1691. # endif
  1692. # endif
  1693. /*
  1694. * ClientHello callback and helpers.
  1695. */
  1696. # define SSL_CLIENT_HELLO_SUCCESS 1
  1697. # define SSL_CLIENT_HELLO_ERROR 0
  1698. # define SSL_CLIENT_HELLO_RETRY (-1)
  1699. typedef int (*SSL_client_hello_cb_fn) (SSL *s, int *al, void *arg);
  1700. void SSL_CTX_set_client_hello_cb(SSL_CTX *c, SSL_client_hello_cb_fn cb,
  1701. void *arg);
  1702. int SSL_client_hello_isv2(SSL *s);
  1703. unsigned int SSL_client_hello_get0_legacy_version(SSL *s);
  1704. size_t SSL_client_hello_get0_random(SSL *s, const unsigned char **out);
  1705. size_t SSL_client_hello_get0_session_id(SSL *s, const unsigned char **out);
  1706. size_t SSL_client_hello_get0_ciphers(SSL *s, const unsigned char **out);
  1707. size_t SSL_client_hello_get0_compression_methods(SSL *s,
  1708. const unsigned char **out);
  1709. int SSL_client_hello_get1_extensions_present(SSL *s, int **out, size_t *outlen);
  1710. int SSL_client_hello_get_extension_order(SSL *s, uint16_t *exts,
  1711. size_t *num_exts);
  1712. int SSL_client_hello_get0_ext(SSL *s, unsigned int type,
  1713. const unsigned char **out, size_t *outlen);
  1714. void SSL_certs_clear(SSL *s);
  1715. void SSL_free(SSL *ssl);
  1716. # ifdef OSSL_ASYNC_FD
  1717. /*
  1718. * Windows application developer has to include windows.h to use these.
  1719. */
  1720. __owur int SSL_waiting_for_async(SSL *s);
  1721. __owur int SSL_get_all_async_fds(SSL *s, OSSL_ASYNC_FD *fds, size_t *numfds);
  1722. __owur int SSL_get_changed_async_fds(SSL *s, OSSL_ASYNC_FD *addfd,
  1723. size_t *numaddfds, OSSL_ASYNC_FD *delfd,
  1724. size_t *numdelfds);
  1725. __owur int SSL_CTX_set_async_callback(SSL_CTX *ctx, SSL_async_callback_fn callback);
  1726. __owur int SSL_CTX_set_async_callback_arg(SSL_CTX *ctx, void *arg);
  1727. __owur int SSL_set_async_callback(SSL *s, SSL_async_callback_fn callback);
  1728. __owur int SSL_set_async_callback_arg(SSL *s, void *arg);
  1729. __owur int SSL_get_async_status(SSL *s, int *status);
  1730. # endif
  1731. __owur int SSL_accept(SSL *ssl);
  1732. __owur int SSL_stateless(SSL *s);
  1733. __owur int SSL_connect(SSL *ssl);
  1734. __owur int SSL_read(SSL *ssl, void *buf, int num);
  1735. __owur int SSL_read_ex(SSL *ssl, void *buf, size_t num, size_t *readbytes);
  1736. # define SSL_READ_EARLY_DATA_ERROR 0
  1737. # define SSL_READ_EARLY_DATA_SUCCESS 1
  1738. # define SSL_READ_EARLY_DATA_FINISH 2
  1739. __owur int SSL_read_early_data(SSL *s, void *buf, size_t num,
  1740. size_t *readbytes);
  1741. __owur int SSL_peek(SSL *ssl, void *buf, int num);
  1742. __owur int SSL_peek_ex(SSL *ssl, void *buf, size_t num, size_t *readbytes);
  1743. __owur ossl_ssize_t SSL_sendfile(SSL *s, int fd, off_t offset, size_t size,
  1744. int flags);
  1745. __owur int SSL_write(SSL *ssl, const void *buf, int num);
  1746. __owur int SSL_write_ex(SSL *s, const void *buf, size_t num, size_t *written);
  1747. __owur int SSL_write_early_data(SSL *s, const void *buf, size_t num,
  1748. size_t *written);
  1749. long SSL_ctrl(SSL *ssl, int cmd, long larg, void *parg);
  1750. long SSL_callback_ctrl(SSL *, int, void (*)(void));
  1751. long SSL_CTX_ctrl(SSL_CTX *ctx, int cmd, long larg, void *parg);
  1752. long SSL_CTX_callback_ctrl(SSL_CTX *, int, void (*)(void));
  1753. # define SSL_EARLY_DATA_NOT_SENT 0
  1754. # define SSL_EARLY_DATA_REJECTED 1
  1755. # define SSL_EARLY_DATA_ACCEPTED 2
  1756. __owur int SSL_get_early_data_status(const SSL *s);
  1757. __owur int SSL_get_error(const SSL *s, int ret_code);
  1758. __owur const char *SSL_get_version(const SSL *s);
  1759. /* This sets the 'default' SSL version that SSL_new() will create */
  1760. # ifndef OPENSSL_NO_DEPRECATED_3_0
  1761. OSSL_DEPRECATEDIN_3_0
  1762. __owur int SSL_CTX_set_ssl_version(SSL_CTX *ctx, const SSL_METHOD *meth);
  1763. # endif
  1764. # ifndef OPENSSL_NO_SSL3_METHOD
  1765. # ifndef OPENSSL_NO_DEPRECATED_1_1_0
  1766. OSSL_DEPRECATEDIN_1_1_0 __owur const SSL_METHOD *SSLv3_method(void); /* SSLv3 */
  1767. OSSL_DEPRECATEDIN_1_1_0 __owur const SSL_METHOD *SSLv3_server_method(void);
  1768. OSSL_DEPRECATEDIN_1_1_0 __owur const SSL_METHOD *SSLv3_client_method(void);
  1769. # endif
  1770. # endif
  1771. #define SSLv23_method TLS_method
  1772. #define SSLv23_server_method TLS_server_method
  1773. #define SSLv23_client_method TLS_client_method
  1774. /* Negotiate highest available SSL/TLS version */
  1775. __owur const SSL_METHOD *TLS_method(void);
  1776. __owur const SSL_METHOD *TLS_server_method(void);
  1777. __owur const SSL_METHOD *TLS_client_method(void);
  1778. # ifndef OPENSSL_NO_TLS1_METHOD
  1779. # ifndef OPENSSL_NO_DEPRECATED_1_1_0
  1780. OSSL_DEPRECATEDIN_1_1_0 __owur const SSL_METHOD *TLSv1_method(void); /* TLSv1.0 */
  1781. OSSL_DEPRECATEDIN_1_1_0 __owur const SSL_METHOD *TLSv1_server_method(void);
  1782. OSSL_DEPRECATEDIN_1_1_0 __owur const SSL_METHOD *TLSv1_client_method(void);
  1783. # endif
  1784. # endif
  1785. # ifndef OPENSSL_NO_TLS1_1_METHOD
  1786. # ifndef OPENSSL_NO_DEPRECATED_1_1_0
  1787. OSSL_DEPRECATEDIN_1_1_0 __owur const SSL_METHOD *TLSv1_1_method(void); /* TLSv1.1 */
  1788. OSSL_DEPRECATEDIN_1_1_0 __owur const SSL_METHOD *TLSv1_1_server_method(void);
  1789. OSSL_DEPRECATEDIN_1_1_0 __owur const SSL_METHOD *TLSv1_1_client_method(void);
  1790. # endif
  1791. # endif
  1792. # ifndef OPENSSL_NO_TLS1_2_METHOD
  1793. # ifndef OPENSSL_NO_DEPRECATED_1_1_0
  1794. OSSL_DEPRECATEDIN_1_1_0 __owur const SSL_METHOD *TLSv1_2_method(void); /* TLSv1.2 */
  1795. OSSL_DEPRECATEDIN_1_1_0 __owur const SSL_METHOD *TLSv1_2_server_method(void);
  1796. OSSL_DEPRECATEDIN_1_1_0 __owur const SSL_METHOD *TLSv1_2_client_method(void);
  1797. # endif
  1798. # endif
  1799. # ifndef OPENSSL_NO_DTLS1_METHOD
  1800. # ifndef OPENSSL_NO_DEPRECATED_1_1_0
  1801. OSSL_DEPRECATEDIN_1_1_0 __owur const SSL_METHOD *DTLSv1_method(void); /* DTLSv1.0 */
  1802. OSSL_DEPRECATEDIN_1_1_0 __owur const SSL_METHOD *DTLSv1_server_method(void);
  1803. OSSL_DEPRECATEDIN_1_1_0 __owur const SSL_METHOD *DTLSv1_client_method(void);
  1804. # endif
  1805. # endif
  1806. # ifndef OPENSSL_NO_DTLS1_2_METHOD
  1807. /* DTLSv1.2 */
  1808. # ifndef OPENSSL_NO_DEPRECATED_1_1_0
  1809. OSSL_DEPRECATEDIN_1_1_0 __owur const SSL_METHOD *DTLSv1_2_method(void);
  1810. OSSL_DEPRECATEDIN_1_1_0 __owur const SSL_METHOD *DTLSv1_2_server_method(void);
  1811. OSSL_DEPRECATEDIN_1_1_0 __owur const SSL_METHOD *DTLSv1_2_client_method(void);
  1812. # endif
  1813. # endif
  1814. __owur const SSL_METHOD *DTLS_method(void); /* DTLS 1.0 and 1.2 */
  1815. __owur const SSL_METHOD *DTLS_server_method(void); /* DTLS 1.0 and 1.2 */
  1816. __owur const SSL_METHOD *DTLS_client_method(void); /* DTLS 1.0 and 1.2 */
  1817. __owur size_t DTLS_get_data_mtu(const SSL *s);
  1818. __owur STACK_OF(SSL_CIPHER) *SSL_get_ciphers(const SSL *s);
  1819. __owur STACK_OF(SSL_CIPHER) *SSL_CTX_get_ciphers(const SSL_CTX *ctx);
  1820. __owur STACK_OF(SSL_CIPHER) *SSL_get_client_ciphers(const SSL *s);
  1821. __owur STACK_OF(SSL_CIPHER) *SSL_get1_supported_ciphers(SSL *s);
  1822. __owur int SSL_do_handshake(SSL *s);
  1823. int SSL_key_update(SSL *s, int updatetype);
  1824. int SSL_get_key_update_type(const SSL *s);
  1825. int SSL_renegotiate(SSL *s);
  1826. int SSL_renegotiate_abbreviated(SSL *s);
  1827. __owur int SSL_renegotiate_pending(const SSL *s);
  1828. int SSL_new_session_ticket(SSL *s);
  1829. int SSL_shutdown(SSL *s);
  1830. __owur int SSL_verify_client_post_handshake(SSL *s);
  1831. void SSL_CTX_set_post_handshake_auth(SSL_CTX *ctx, int val);
  1832. void SSL_set_post_handshake_auth(SSL *s, int val);
  1833. __owur const SSL_METHOD *SSL_CTX_get_ssl_method(const SSL_CTX *ctx);
  1834. __owur const SSL_METHOD *SSL_get_ssl_method(const SSL *s);
  1835. __owur int SSL_set_ssl_method(SSL *s, const SSL_METHOD *method);
  1836. __owur const char *SSL_alert_type_string_long(int value);
  1837. __owur const char *SSL_alert_type_string(int value);
  1838. __owur const char *SSL_alert_desc_string_long(int value);
  1839. __owur const char *SSL_alert_desc_string(int value);
  1840. void SSL_set0_CA_list(SSL *s, STACK_OF(X509_NAME) *name_list);
  1841. void SSL_CTX_set0_CA_list(SSL_CTX *ctx, STACK_OF(X509_NAME) *name_list);
  1842. __owur const STACK_OF(X509_NAME) *SSL_get0_CA_list(const SSL *s);
  1843. __owur const STACK_OF(X509_NAME) *SSL_CTX_get0_CA_list(const SSL_CTX *ctx);
  1844. __owur int SSL_add1_to_CA_list(SSL *ssl, const X509 *x);
  1845. __owur int SSL_CTX_add1_to_CA_list(SSL_CTX *ctx, const X509 *x);
  1846. __owur const STACK_OF(X509_NAME) *SSL_get0_peer_CA_list(const SSL *s);
  1847. void SSL_set_client_CA_list(SSL *s, STACK_OF(X509_NAME) *name_list);
  1848. void SSL_CTX_set_client_CA_list(SSL_CTX *ctx, STACK_OF(X509_NAME) *name_list);
  1849. __owur STACK_OF(X509_NAME) *SSL_get_client_CA_list(const SSL *s);
  1850. __owur STACK_OF(X509_NAME) *SSL_CTX_get_client_CA_list(const SSL_CTX *s);
  1851. __owur int SSL_add_client_CA(SSL *ssl, X509 *x);
  1852. __owur int SSL_CTX_add_client_CA(SSL_CTX *ctx, X509 *x);
  1853. void SSL_set_connect_state(SSL *s);
  1854. void SSL_set_accept_state(SSL *s);
  1855. __owur long SSL_get_default_timeout(const SSL *s);
  1856. # ifndef OPENSSL_NO_DEPRECATED_1_1_0
  1857. # define SSL_library_init() OPENSSL_init_ssl(0, NULL)
  1858. # endif
  1859. __owur char *SSL_CIPHER_description(const SSL_CIPHER *, char *buf, int size);
  1860. __owur STACK_OF(X509_NAME) *SSL_dup_CA_list(const STACK_OF(X509_NAME) *sk);
  1861. __owur SSL *SSL_dup(SSL *ssl);
  1862. __owur X509 *SSL_get_certificate(const SSL *ssl);
  1863. /*
  1864. * EVP_PKEY
  1865. */
  1866. struct evp_pkey_st *SSL_get_privatekey(const SSL *ssl);
  1867. __owur X509 *SSL_CTX_get0_certificate(const SSL_CTX *ctx);
  1868. __owur EVP_PKEY *SSL_CTX_get0_privatekey(const SSL_CTX *ctx);
  1869. void SSL_CTX_set_quiet_shutdown(SSL_CTX *ctx, int mode);
  1870. __owur int SSL_CTX_get_quiet_shutdown(const SSL_CTX *ctx);
  1871. void SSL_set_quiet_shutdown(SSL *ssl, int mode);
  1872. __owur int SSL_get_quiet_shutdown(const SSL *ssl);
  1873. void SSL_set_shutdown(SSL *ssl, int mode);
  1874. __owur int SSL_get_shutdown(const SSL *ssl);
  1875. __owur int SSL_version(const SSL *ssl);
  1876. __owur int SSL_client_version(const SSL *s);
  1877. __owur int SSL_CTX_set_default_verify_paths(SSL_CTX *ctx);
  1878. __owur int SSL_CTX_set_default_verify_dir(SSL_CTX *ctx);
  1879. __owur int SSL_CTX_set_default_verify_file(SSL_CTX *ctx);
  1880. __owur int SSL_CTX_set_default_verify_store(SSL_CTX *ctx);
  1881. __owur int SSL_CTX_load_verify_file(SSL_CTX *ctx, const char *CAfile);
  1882. __owur int SSL_CTX_load_verify_dir(SSL_CTX *ctx, const char *CApath);
  1883. __owur int SSL_CTX_load_verify_store(SSL_CTX *ctx, const char *CAstore);
  1884. __owur int SSL_CTX_load_verify_locations(SSL_CTX *ctx,
  1885. const char *CAfile,
  1886. const char *CApath);
  1887. # define SSL_get0_session SSL_get_session/* just peek at pointer */
  1888. __owur SSL_SESSION *SSL_get_session(const SSL *ssl);
  1889. __owur SSL_SESSION *SSL_get1_session(SSL *ssl); /* obtain a reference count */
  1890. __owur SSL_CTX *SSL_get_SSL_CTX(const SSL *ssl);
  1891. SSL_CTX *SSL_set_SSL_CTX(SSL *ssl, SSL_CTX *ctx);
  1892. void SSL_set_info_callback(SSL *ssl,
  1893. void (*cb) (const SSL *ssl, int type, int val));
  1894. void (*SSL_get_info_callback(const SSL *ssl)) (const SSL *ssl, int type,
  1895. int val);
  1896. __owur OSSL_HANDSHAKE_STATE SSL_get_state(const SSL *ssl);
  1897. void SSL_set_verify_result(SSL *ssl, long v);
  1898. __owur long SSL_get_verify_result(const SSL *ssl);
  1899. __owur STACK_OF(X509) *SSL_get0_verified_chain(const SSL *s);
  1900. __owur size_t SSL_get_client_random(const SSL *ssl, unsigned char *out,
  1901. size_t outlen);
  1902. __owur size_t SSL_get_server_random(const SSL *ssl, unsigned char *out,
  1903. size_t outlen);
  1904. __owur size_t SSL_SESSION_get_master_key(const SSL_SESSION *sess,
  1905. unsigned char *out, size_t outlen);
  1906. __owur int SSL_SESSION_set1_master_key(SSL_SESSION *sess,
  1907. const unsigned char *in, size_t len);
  1908. uint8_t SSL_SESSION_get_max_fragment_length(const SSL_SESSION *sess);
  1909. #define SSL_get_ex_new_index(l, p, newf, dupf, freef) \
  1910. CRYPTO_get_ex_new_index(CRYPTO_EX_INDEX_SSL, l, p, newf, dupf, freef)
  1911. __owur int SSL_set_ex_data(SSL *ssl, int idx, void *data);
  1912. void *SSL_get_ex_data(const SSL *ssl, int idx);
  1913. #define SSL_SESSION_get_ex_new_index(l, p, newf, dupf, freef) \
  1914. CRYPTO_get_ex_new_index(CRYPTO_EX_INDEX_SSL_SESSION, l, p, newf, dupf, freef)
  1915. __owur int SSL_SESSION_set_ex_data(SSL_SESSION *ss, int idx, void *data);
  1916. void *SSL_SESSION_get_ex_data(const SSL_SESSION *ss, int idx);
  1917. #define SSL_CTX_get_ex_new_index(l, p, newf, dupf, freef) \
  1918. CRYPTO_get_ex_new_index(CRYPTO_EX_INDEX_SSL_CTX, l, p, newf, dupf, freef)
  1919. __owur int SSL_CTX_set_ex_data(SSL_CTX *ssl, int idx, void *data);
  1920. void *SSL_CTX_get_ex_data(const SSL_CTX *ssl, int idx);
  1921. __owur int SSL_get_ex_data_X509_STORE_CTX_idx(void);
  1922. # define SSL_CTX_sess_set_cache_size(ctx,t) \
  1923. SSL_CTX_ctrl(ctx,SSL_CTRL_SET_SESS_CACHE_SIZE,t,NULL)
  1924. # define SSL_CTX_sess_get_cache_size(ctx) \
  1925. SSL_CTX_ctrl(ctx,SSL_CTRL_GET_SESS_CACHE_SIZE,0,NULL)
  1926. # define SSL_CTX_set_session_cache_mode(ctx,m) \
  1927. SSL_CTX_ctrl(ctx,SSL_CTRL_SET_SESS_CACHE_MODE,m,NULL)
  1928. # define SSL_CTX_get_session_cache_mode(ctx) \
  1929. SSL_CTX_ctrl(ctx,SSL_CTRL_GET_SESS_CACHE_MODE,0,NULL)
  1930. # define SSL_CTX_get_default_read_ahead(ctx) SSL_CTX_get_read_ahead(ctx)
  1931. # define SSL_CTX_set_default_read_ahead(ctx,m) SSL_CTX_set_read_ahead(ctx,m)
  1932. # define SSL_CTX_get_read_ahead(ctx) \
  1933. SSL_CTX_ctrl(ctx,SSL_CTRL_GET_READ_AHEAD,0,NULL)
  1934. # define SSL_CTX_set_read_ahead(ctx,m) \
  1935. SSL_CTX_ctrl(ctx,SSL_CTRL_SET_READ_AHEAD,m,NULL)
  1936. # define SSL_CTX_get_max_cert_list(ctx) \
  1937. SSL_CTX_ctrl(ctx,SSL_CTRL_GET_MAX_CERT_LIST,0,NULL)
  1938. # define SSL_CTX_set_max_cert_list(ctx,m) \
  1939. SSL_CTX_ctrl(ctx,SSL_CTRL_SET_MAX_CERT_LIST,m,NULL)
  1940. # define SSL_get_max_cert_list(ssl) \
  1941. SSL_ctrl(ssl,SSL_CTRL_GET_MAX_CERT_LIST,0,NULL)
  1942. # define SSL_set_max_cert_list(ssl,m) \
  1943. SSL_ctrl(ssl,SSL_CTRL_SET_MAX_CERT_LIST,m,NULL)
  1944. # define SSL_CTX_set_max_send_fragment(ctx,m) \
  1945. SSL_CTX_ctrl(ctx,SSL_CTRL_SET_MAX_SEND_FRAGMENT,m,NULL)
  1946. # define SSL_set_max_send_fragment(ssl,m) \
  1947. SSL_ctrl(ssl,SSL_CTRL_SET_MAX_SEND_FRAGMENT,m,NULL)
  1948. # define SSL_CTX_set_split_send_fragment(ctx,m) \
  1949. SSL_CTX_ctrl(ctx,SSL_CTRL_SET_SPLIT_SEND_FRAGMENT,m,NULL)
  1950. # define SSL_set_split_send_fragment(ssl,m) \
  1951. SSL_ctrl(ssl,SSL_CTRL_SET_SPLIT_SEND_FRAGMENT,m,NULL)
  1952. # define SSL_CTX_set_max_pipelines(ctx,m) \
  1953. SSL_CTX_ctrl(ctx,SSL_CTRL_SET_MAX_PIPELINES,m,NULL)
  1954. # define SSL_set_max_pipelines(ssl,m) \
  1955. SSL_ctrl(ssl,SSL_CTRL_SET_MAX_PIPELINES,m,NULL)
  1956. # define SSL_set_retry_verify(ssl) \
  1957. (SSL_ctrl(ssl,SSL_CTRL_SET_RETRY_VERIFY,0,NULL) > 0)
  1958. void SSL_CTX_set_default_read_buffer_len(SSL_CTX *ctx, size_t len);
  1959. void SSL_set_default_read_buffer_len(SSL *s, size_t len);
  1960. # ifndef OPENSSL_NO_DH
  1961. # ifndef OPENSSL_NO_DEPRECATED_3_0
  1962. /* NB: the |keylength| is only applicable when is_export is true */
  1963. OSSL_DEPRECATEDIN_3_0
  1964. void SSL_CTX_set_tmp_dh_callback(SSL_CTX *ctx,
  1965. DH *(*dh) (SSL *ssl, int is_export,
  1966. int keylength));
  1967. OSSL_DEPRECATEDIN_3_0
  1968. void SSL_set_tmp_dh_callback(SSL *ssl,
  1969. DH *(*dh) (SSL *ssl, int is_export,
  1970. int keylength));
  1971. # endif
  1972. # endif
  1973. __owur const COMP_METHOD *SSL_get_current_compression(const SSL *s);
  1974. __owur const COMP_METHOD *SSL_get_current_expansion(const SSL *s);
  1975. __owur const char *SSL_COMP_get_name(const COMP_METHOD *comp);
  1976. __owur const char *SSL_COMP_get0_name(const SSL_COMP *comp);
  1977. __owur int SSL_COMP_get_id(const SSL_COMP *comp);
  1978. STACK_OF(SSL_COMP) *SSL_COMP_get_compression_methods(void);
  1979. __owur STACK_OF(SSL_COMP) *SSL_COMP_set0_compression_methods(STACK_OF(SSL_COMP)
  1980. *meths);
  1981. # ifndef OPENSSL_NO_DEPRECATED_1_1_0
  1982. # define SSL_COMP_free_compression_methods() while(0) continue
  1983. # endif
  1984. __owur int SSL_COMP_add_compression_method(int id, COMP_METHOD *cm);
  1985. const SSL_CIPHER *SSL_CIPHER_find(SSL *ssl, const unsigned char *ptr);
  1986. int SSL_CIPHER_get_cipher_nid(const SSL_CIPHER *c);
  1987. int SSL_CIPHER_get_digest_nid(const SSL_CIPHER *c);
  1988. int SSL_bytes_to_cipher_list(SSL *s, const unsigned char *bytes, size_t len,
  1989. int isv2format, STACK_OF(SSL_CIPHER) **sk,
  1990. STACK_OF(SSL_CIPHER) **scsvs);
  1991. /* TLS extensions functions */
  1992. __owur int SSL_set_session_ticket_ext(SSL *s, void *ext_data, int ext_len);
  1993. __owur int SSL_set_session_ticket_ext_cb(SSL *s,
  1994. tls_session_ticket_ext_cb_fn cb,
  1995. void *arg);
  1996. /* Pre-shared secret session resumption functions */
  1997. __owur int SSL_set_session_secret_cb(SSL *s,
  1998. tls_session_secret_cb_fn session_secret_cb,
  1999. void *arg);
  2000. void SSL_CTX_set_not_resumable_session_callback(SSL_CTX *ctx,
  2001. int (*cb) (SSL *ssl,
  2002. int
  2003. is_forward_secure));
  2004. void SSL_set_not_resumable_session_callback(SSL *ssl,
  2005. int (*cb) (SSL *ssl,
  2006. int is_forward_secure));
  2007. void SSL_CTX_set_record_padding_callback(SSL_CTX *ctx,
  2008. size_t (*cb) (SSL *ssl, int type,
  2009. size_t len, void *arg));
  2010. void SSL_CTX_set_record_padding_callback_arg(SSL_CTX *ctx, void *arg);
  2011. void *SSL_CTX_get_record_padding_callback_arg(const SSL_CTX *ctx);
  2012. int SSL_CTX_set_block_padding(SSL_CTX *ctx, size_t block_size);
  2013. int SSL_set_record_padding_callback(SSL *ssl,
  2014. size_t (*cb) (SSL *ssl, int type,
  2015. size_t len, void *arg));
  2016. void SSL_set_record_padding_callback_arg(SSL *ssl, void *arg);
  2017. void *SSL_get_record_padding_callback_arg(const SSL *ssl);
  2018. int SSL_set_block_padding(SSL *ssl, size_t block_size);
  2019. int SSL_set_num_tickets(SSL *s, size_t num_tickets);
  2020. size_t SSL_get_num_tickets(const SSL *s);
  2021. int SSL_CTX_set_num_tickets(SSL_CTX *ctx, size_t num_tickets);
  2022. size_t SSL_CTX_get_num_tickets(const SSL_CTX *ctx);
  2023. # ifndef OPENSSL_NO_DEPRECATED_1_1_0
  2024. # define SSL_cache_hit(s) SSL_session_reused(s)
  2025. # endif
  2026. __owur int SSL_session_reused(const SSL *s);
  2027. __owur int SSL_is_server(const SSL *s);
  2028. __owur __owur SSL_CONF_CTX *SSL_CONF_CTX_new(void);
  2029. int SSL_CONF_CTX_finish(SSL_CONF_CTX *cctx);
  2030. void SSL_CONF_CTX_free(SSL_CONF_CTX *cctx);
  2031. unsigned int SSL_CONF_CTX_set_flags(SSL_CONF_CTX *cctx, unsigned int flags);
  2032. __owur unsigned int SSL_CONF_CTX_clear_flags(SSL_CONF_CTX *cctx,
  2033. unsigned int flags);
  2034. __owur int SSL_CONF_CTX_set1_prefix(SSL_CONF_CTX *cctx, const char *pre);
  2035. void SSL_CONF_CTX_set_ssl(SSL_CONF_CTX *cctx, SSL *ssl);
  2036. void SSL_CONF_CTX_set_ssl_ctx(SSL_CONF_CTX *cctx, SSL_CTX *ctx);
  2037. __owur int SSL_CONF_cmd(SSL_CONF_CTX *cctx, const char *cmd, const char *value);
  2038. __owur int SSL_CONF_cmd_argv(SSL_CONF_CTX *cctx, int *pargc, char ***pargv);
  2039. __owur int SSL_CONF_cmd_value_type(SSL_CONF_CTX *cctx, const char *cmd);
  2040. void SSL_add_ssl_module(void);
  2041. int SSL_config(SSL *s, const char *name);
  2042. int SSL_CTX_config(SSL_CTX *ctx, const char *name);
  2043. # ifndef OPENSSL_NO_SSL_TRACE
  2044. void SSL_trace(int write_p, int version, int content_type,
  2045. const void *buf, size_t len, SSL *ssl, void *arg);
  2046. # endif
  2047. # ifndef OPENSSL_NO_SOCK
  2048. int DTLSv1_listen(SSL *s, BIO_ADDR *client);
  2049. # endif
  2050. # ifndef OPENSSL_NO_CT
  2051. /*
  2052. * A callback for verifying that the received SCTs are sufficient.
  2053. * Expected to return 1 if they are sufficient, otherwise 0.
  2054. * May return a negative integer if an error occurs.
  2055. * A connection should be aborted if the SCTs are deemed insufficient.
  2056. */
  2057. typedef int (*ssl_ct_validation_cb)(const CT_POLICY_EVAL_CTX *ctx,
  2058. const STACK_OF(SCT) *scts, void *arg);
  2059. /*
  2060. * Sets a |callback| that is invoked upon receipt of ServerHelloDone to validate
  2061. * the received SCTs.
  2062. * If the callback returns a non-positive result, the connection is terminated.
  2063. * Call this function before beginning a handshake.
  2064. * If a NULL |callback| is provided, SCT validation is disabled.
  2065. * |arg| is arbitrary userdata that will be passed to the callback whenever it
  2066. * is invoked. Ownership of |arg| remains with the caller.
  2067. *
  2068. * NOTE: A side-effect of setting a CT callback is that an OCSP stapled response
  2069. * will be requested.
  2070. */
  2071. int SSL_set_ct_validation_callback(SSL *s, ssl_ct_validation_cb callback,
  2072. void *arg);
  2073. int SSL_CTX_set_ct_validation_callback(SSL_CTX *ctx,
  2074. ssl_ct_validation_cb callback,
  2075. void *arg);
  2076. #define SSL_disable_ct(s) \
  2077. ((void) SSL_set_validation_callback((s), NULL, NULL))
  2078. #define SSL_CTX_disable_ct(ctx) \
  2079. ((void) SSL_CTX_set_validation_callback((ctx), NULL, NULL))
  2080. /*
  2081. * The validation type enumerates the available behaviours of the built-in SSL
  2082. * CT validation callback selected via SSL_enable_ct() and SSL_CTX_enable_ct().
  2083. * The underlying callback is a static function in libssl.
  2084. */
  2085. enum {
  2086. SSL_CT_VALIDATION_PERMISSIVE = 0,
  2087. SSL_CT_VALIDATION_STRICT
  2088. };
  2089. /*
  2090. * Enable CT by setting up a callback that implements one of the built-in
  2091. * validation variants. The SSL_CT_VALIDATION_PERMISSIVE variant always
  2092. * continues the handshake, the application can make appropriate decisions at
  2093. * handshake completion. The SSL_CT_VALIDATION_STRICT variant requires at
  2094. * least one valid SCT, or else handshake termination will be requested. The
  2095. * handshake may continue anyway if SSL_VERIFY_NONE is in effect.
  2096. */
  2097. int SSL_enable_ct(SSL *s, int validation_mode);
  2098. int SSL_CTX_enable_ct(SSL_CTX *ctx, int validation_mode);
  2099. /*
  2100. * Report whether a non-NULL callback is enabled.
  2101. */
  2102. int SSL_ct_is_enabled(const SSL *s);
  2103. int SSL_CTX_ct_is_enabled(const SSL_CTX *ctx);
  2104. /* Gets the SCTs received from a connection */
  2105. const STACK_OF(SCT) *SSL_get0_peer_scts(SSL *s);
  2106. /*
  2107. * Loads the CT log list from the default location.
  2108. * If a CTLOG_STORE has previously been set using SSL_CTX_set_ctlog_store,
  2109. * the log information loaded from this file will be appended to the
  2110. * CTLOG_STORE.
  2111. * Returns 1 on success, 0 otherwise.
  2112. */
  2113. int SSL_CTX_set_default_ctlog_list_file(SSL_CTX *ctx);
  2114. /*
  2115. * Loads the CT log list from the specified file path.
  2116. * If a CTLOG_STORE has previously been set using SSL_CTX_set_ctlog_store,
  2117. * the log information loaded from this file will be appended to the
  2118. * CTLOG_STORE.
  2119. * Returns 1 on success, 0 otherwise.
  2120. */
  2121. int SSL_CTX_set_ctlog_list_file(SSL_CTX *ctx, const char *path);
  2122. /*
  2123. * Sets the CT log list used by all SSL connections created from this SSL_CTX.
  2124. * Ownership of the CTLOG_STORE is transferred to the SSL_CTX.
  2125. */
  2126. void SSL_CTX_set0_ctlog_store(SSL_CTX *ctx, CTLOG_STORE *logs);
  2127. /*
  2128. * Gets the CT log list used by all SSL connections created from this SSL_CTX.
  2129. * This will be NULL unless one of the following functions has been called:
  2130. * - SSL_CTX_set_default_ctlog_list_file
  2131. * - SSL_CTX_set_ctlog_list_file
  2132. * - SSL_CTX_set_ctlog_store
  2133. */
  2134. const CTLOG_STORE *SSL_CTX_get0_ctlog_store(const SSL_CTX *ctx);
  2135. # endif /* OPENSSL_NO_CT */
  2136. /* What the "other" parameter contains in security callback */
  2137. /* Mask for type */
  2138. # define SSL_SECOP_OTHER_TYPE 0xffff0000
  2139. # define SSL_SECOP_OTHER_NONE 0
  2140. # define SSL_SECOP_OTHER_CIPHER (1 << 16)
  2141. # define SSL_SECOP_OTHER_CURVE (2 << 16)
  2142. # define SSL_SECOP_OTHER_DH (3 << 16)
  2143. # define SSL_SECOP_OTHER_PKEY (4 << 16)
  2144. # define SSL_SECOP_OTHER_SIGALG (5 << 16)
  2145. # define SSL_SECOP_OTHER_CERT (6 << 16)
  2146. /* Indicated operation refers to peer key or certificate */
  2147. # define SSL_SECOP_PEER 0x1000
  2148. /* Values for "op" parameter in security callback */
  2149. /* Called to filter ciphers */
  2150. /* Ciphers client supports */
  2151. # define SSL_SECOP_CIPHER_SUPPORTED (1 | SSL_SECOP_OTHER_CIPHER)
  2152. /* Cipher shared by client/server */
  2153. # define SSL_SECOP_CIPHER_SHARED (2 | SSL_SECOP_OTHER_CIPHER)
  2154. /* Sanity check of cipher server selects */
  2155. # define SSL_SECOP_CIPHER_CHECK (3 | SSL_SECOP_OTHER_CIPHER)
  2156. /* Curves supported by client */
  2157. # define SSL_SECOP_CURVE_SUPPORTED (4 | SSL_SECOP_OTHER_CURVE)
  2158. /* Curves shared by client/server */
  2159. # define SSL_SECOP_CURVE_SHARED (5 | SSL_SECOP_OTHER_CURVE)
  2160. /* Sanity check of curve server selects */
  2161. # define SSL_SECOP_CURVE_CHECK (6 | SSL_SECOP_OTHER_CURVE)
  2162. /* Temporary DH key */
  2163. # define SSL_SECOP_TMP_DH (7 | SSL_SECOP_OTHER_PKEY)
  2164. /* SSL/TLS version */
  2165. # define SSL_SECOP_VERSION (9 | SSL_SECOP_OTHER_NONE)
  2166. /* Session tickets */
  2167. # define SSL_SECOP_TICKET (10 | SSL_SECOP_OTHER_NONE)
  2168. /* Supported signature algorithms sent to peer */
  2169. # define SSL_SECOP_SIGALG_SUPPORTED (11 | SSL_SECOP_OTHER_SIGALG)
  2170. /* Shared signature algorithm */
  2171. # define SSL_SECOP_SIGALG_SHARED (12 | SSL_SECOP_OTHER_SIGALG)
  2172. /* Sanity check signature algorithm allowed */
  2173. # define SSL_SECOP_SIGALG_CHECK (13 | SSL_SECOP_OTHER_SIGALG)
  2174. /* Used to get mask of supported public key signature algorithms */
  2175. # define SSL_SECOP_SIGALG_MASK (14 | SSL_SECOP_OTHER_SIGALG)
  2176. /* Use to see if compression is allowed */
  2177. # define SSL_SECOP_COMPRESSION (15 | SSL_SECOP_OTHER_NONE)
  2178. /* EE key in certificate */
  2179. # define SSL_SECOP_EE_KEY (16 | SSL_SECOP_OTHER_CERT)
  2180. /* CA key in certificate */
  2181. # define SSL_SECOP_CA_KEY (17 | SSL_SECOP_OTHER_CERT)
  2182. /* CA digest algorithm in certificate */
  2183. # define SSL_SECOP_CA_MD (18 | SSL_SECOP_OTHER_CERT)
  2184. /* Peer EE key in certificate */
  2185. # define SSL_SECOP_PEER_EE_KEY (SSL_SECOP_EE_KEY | SSL_SECOP_PEER)
  2186. /* Peer CA key in certificate */
  2187. # define SSL_SECOP_PEER_CA_KEY (SSL_SECOP_CA_KEY | SSL_SECOP_PEER)
  2188. /* Peer CA digest algorithm in certificate */
  2189. # define SSL_SECOP_PEER_CA_MD (SSL_SECOP_CA_MD | SSL_SECOP_PEER)
  2190. void SSL_set_security_level(SSL *s, int level);
  2191. __owur int SSL_get_security_level(const SSL *s);
  2192. void SSL_set_security_callback(SSL *s,
  2193. int (*cb) (const SSL *s, const SSL_CTX *ctx,
  2194. int op, int bits, int nid,
  2195. void *other, void *ex));
  2196. int (*SSL_get_security_callback(const SSL *s)) (const SSL *s,
  2197. const SSL_CTX *ctx, int op,
  2198. int bits, int nid, void *other,
  2199. void *ex);
  2200. void SSL_set0_security_ex_data(SSL *s, void *ex);
  2201. __owur void *SSL_get0_security_ex_data(const SSL *s);
  2202. void SSL_CTX_set_security_level(SSL_CTX *ctx, int level);
  2203. __owur int SSL_CTX_get_security_level(const SSL_CTX *ctx);
  2204. void SSL_CTX_set_security_callback(SSL_CTX *ctx,
  2205. int (*cb) (const SSL *s, const SSL_CTX *ctx,
  2206. int op, int bits, int nid,
  2207. void *other, void *ex));
  2208. int (*SSL_CTX_get_security_callback(const SSL_CTX *ctx)) (const SSL *s,
  2209. const SSL_CTX *ctx,
  2210. int op, int bits,
  2211. int nid,
  2212. void *other,
  2213. void *ex);
  2214. void SSL_CTX_set0_security_ex_data(SSL_CTX *ctx, void *ex);
  2215. __owur void *SSL_CTX_get0_security_ex_data(const SSL_CTX *ctx);
  2216. /* OPENSSL_INIT flag 0x010000 reserved for internal use */
  2217. # define OPENSSL_INIT_NO_LOAD_SSL_STRINGS 0x00100000L
  2218. # define OPENSSL_INIT_LOAD_SSL_STRINGS 0x00200000L
  2219. # define OPENSSL_INIT_SSL_DEFAULT \
  2220. (OPENSSL_INIT_LOAD_SSL_STRINGS | OPENSSL_INIT_LOAD_CRYPTO_STRINGS)
  2221. int OPENSSL_init_ssl(uint64_t opts, const OPENSSL_INIT_SETTINGS *settings);
  2222. # ifndef OPENSSL_NO_UNIT_TEST
  2223. __owur const struct openssl_ssl_test_functions *SSL_test_functions(void);
  2224. # endif
  2225. __owur int SSL_free_buffers(SSL *ssl);
  2226. __owur int SSL_alloc_buffers(SSL *ssl);
  2227. /* Status codes passed to the decrypt session ticket callback. Some of these
  2228. * are for internal use only and are never passed to the callback. */
  2229. typedef int SSL_TICKET_STATUS;
  2230. /* Support for ticket appdata */
  2231. /* fatal error, malloc failure */
  2232. # define SSL_TICKET_FATAL_ERR_MALLOC 0
  2233. /* fatal error, either from parsing or decrypting the ticket */
  2234. # define SSL_TICKET_FATAL_ERR_OTHER 1
  2235. /* No ticket present */
  2236. # define SSL_TICKET_NONE 2
  2237. /* Empty ticket present */
  2238. # define SSL_TICKET_EMPTY 3
  2239. /* the ticket couldn't be decrypted */
  2240. # define SSL_TICKET_NO_DECRYPT 4
  2241. /* a ticket was successfully decrypted */
  2242. # define SSL_TICKET_SUCCESS 5
  2243. /* same as above but the ticket needs to be renewed */
  2244. # define SSL_TICKET_SUCCESS_RENEW 6
  2245. /* Return codes for the decrypt session ticket callback */
  2246. typedef int SSL_TICKET_RETURN;
  2247. /* An error occurred */
  2248. #define SSL_TICKET_RETURN_ABORT 0
  2249. /* Do not use the ticket, do not send a renewed ticket to the client */
  2250. #define SSL_TICKET_RETURN_IGNORE 1
  2251. /* Do not use the ticket, send a renewed ticket to the client */
  2252. #define SSL_TICKET_RETURN_IGNORE_RENEW 2
  2253. /* Use the ticket, do not send a renewed ticket to the client */
  2254. #define SSL_TICKET_RETURN_USE 3
  2255. /* Use the ticket, send a renewed ticket to the client */
  2256. #define SSL_TICKET_RETURN_USE_RENEW 4
  2257. typedef int (*SSL_CTX_generate_session_ticket_fn)(SSL *s, void *arg);
  2258. typedef SSL_TICKET_RETURN (*SSL_CTX_decrypt_session_ticket_fn)(SSL *s, SSL_SESSION *ss,
  2259. const unsigned char *keyname,
  2260. size_t keyname_length,
  2261. SSL_TICKET_STATUS status,
  2262. void *arg);
  2263. int SSL_CTX_set_session_ticket_cb(SSL_CTX *ctx,
  2264. SSL_CTX_generate_session_ticket_fn gen_cb,
  2265. SSL_CTX_decrypt_session_ticket_fn dec_cb,
  2266. void *arg);
  2267. int SSL_SESSION_set1_ticket_appdata(SSL_SESSION *ss, const void *data, size_t len);
  2268. int SSL_SESSION_get0_ticket_appdata(SSL_SESSION *ss, void **data, size_t *len);
  2269. typedef unsigned int (*DTLS_timer_cb)(SSL *s, unsigned int timer_us);
  2270. void DTLS_set_timer_cb(SSL *s, DTLS_timer_cb cb);
  2271. typedef int (*SSL_allow_early_data_cb_fn)(SSL *s, void *arg);
  2272. void SSL_CTX_set_allow_early_data_cb(SSL_CTX *ctx,
  2273. SSL_allow_early_data_cb_fn cb,
  2274. void *arg);
  2275. void SSL_set_allow_early_data_cb(SSL *s,
  2276. SSL_allow_early_data_cb_fn cb,
  2277. void *arg);
  2278. /* store the default cipher strings inside the library */
  2279. const char *OSSL_default_cipher_list(void);
  2280. const char *OSSL_default_ciphersuites(void);
  2281. # ifdef __cplusplus
  2282. }
  2283. # endif
  2284. #endif