1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
|
=encoding utf-8
=head1 Name
ngx.ssl - Lua API for controlling NGINX downstream SSL handshakes
=head1 Status
This Lua module is production ready.
=head1 Synopsis
# Note: you do not need the following line if you are using
# OpenResty 1.9.7.2+.
lua_package_path "/path/to/lua-resty-core/lib/?.lua;;";
server {
listen 443 ssl;
server_name test.com;
# useless placeholders: just to shut up NGINX configuration
# loader errors:
ssl_certificate /path/to/fallback.crt;
ssl_certificate_key /path/to/fallback.key;
ssl_certificate_by_lua_block {
local ssl = require "ngx.ssl"
-- clear the fallback certificates and private keys
-- set by the ssl_certificate and ssl_certificate_key
-- directives above:
local ok, err = ssl.clear_certs()
if not ok then
ngx.log(ngx.ERR, "failed to clear existing (fallback) certificates")
return ngx.exit(ngx.ERROR)
end
-- assuming the user already defines the my_load_certificate_chain()
-- herself.
local pem_cert_chain = assert(my_load_certificate_chain())
local der_cert_chain, err = ssl.cert_pem_to_der(pem_cert_chain)
if not der_cert_chain then
ngx.log(ngx.ERR, "failed to convert certificate chain ",
"from PEM to DER: ", err)
return ngx.exit(ngx.ERROR)
end
local ok, err = ssl.set_der_cert(der_cert_chain)
if not ok then
ngx.log(ngx.ERR, "failed to set DER cert: ", err)
return ngx.exit(ngx.ERROR)
end
-- assuming the user already defines the my_load_private_key()
-- function herself.
local pem_pkey = assert(my_load_private_key())
local passphrase = "password" -- or nil
local der_pkey, err = ssl.priv_key_pem_to_der(pem_pkey, passphrase)
if not der_pkey then
ngx.log(ngx.ERR, "failed to convert private key ",
"from PEM to DER: ", err)
return ngx.exit(ngx.ERROR)
end
local ok, err = ssl.set_der_priv_key(der_pkey)
if not ok then
ngx.log(ngx.ERR, "failed to set DER private key: ", err)
return ngx.exit(ngx.ERROR)
end
}
location / {
root html;
}
}
=head1 Description
This Lua module provides API functions to control the SSL handshake process in contexts like
L<ssl_certificate_by_lua*|https://github.com/openresty/lua-nginx-module/#ssl_certificate_by_lua_block>
(of the L<ngx_lua|https://github.com/openresty/lua-nginx-module#readme> module).
For web servers serving many (like millions of) https sites, it is often desired to lazily
load and cache the SSL certificate chain and private key data for the https sites actually
being served by a particular server. This Lua module provides API to support such use cases
in the context of the L<ssl_certificate_by_lua*|https://github.com/openresty/lua-nginx-module/#ssl_certificate_by_lua_block>
directive.
To load the C<ngx.ssl> module in Lua, just write
local ssl = require "ngx.ssl"
=head1 Methods
=head2 clear_certs
B<syntax:> I<ok, err = ssl.clear_certs()>
B<context:> I<ssl_certificate_by_luaE<42>>
Clears any existing SSL certificates and/or private keys set on the current SSL connection.
Returns C<true> on success, or a C<nil> value and a string describing the error otherwise.
=head2 cert_pem_to_der
B<syntax:> I<der_cert_chain, err = ssl.cert_pem_to_der(pem_cert_chain)>
B<context:> I<any>
Converts the PEM-formatted SSL certificate chain data into the DER format (for later uses
in the L<set_der_cert>
function, for example).
In case of failures, returns C<nil> and a string describing the error.
It is known that the C<openssl> command-line utility may not convert the whole SSL
certificate chain from PEM to DER correctly. So always use this Lua function to do
the conversion. You can always use libraries like L<lua-resty-lrucache|https://github.com/openresty/lua-resty-lrucache#readme>
and/or ngx_lua APIs like L<lua_shared_dict|https://github.com/openresty/lua-nginx-module#lua_shared_dict>
to do the caching of the DER-formatted results, for example.
This function can be called in any context.
=head2 set_der_cert
B<syntax:> I<ok, err = ssl.set_der_cert(der_cert_chain)>
B<context:> I<ssl_certificate_by_luaE<42>>
Sets the DER-formatted SSL certificate chain data for the current SSL connection. Note that
the DER data is
directly in the Lua string argument. I<No> external file names are supported here.
Returns C<true> on success, or a C<nil> value and a string describing the error otherwise.
Note that, the SSL certificate chain is usually encoded in the PEM format. So you need
to use the L<cert_pem_to_der>
function to do the conversion first.
=head2 priv_key_pem_to_der
B<syntax:> I<der_priv_key, err = ssl.priv_key_pem_to_der(pem_priv_key, passphrase)>
B<context:> I<any>
Converts the PEM-formatted SSL private key data into the DER format (for later uses
in the L<set_der_priv_key>
function, for example).
The C<passphrase> is the passphrase for C<pem_priv_key> if the private key is password protected.
In case of failures, returns C<nil> and a string describing the error.
Alternatively, you can do the PEM to DER conversion I<offline> with the C<openssl> command-line utility, like below
openssl rsa -in key.pem -outform DER -out key.der
This function can be called in any context.
=head2 set_der_priv_key
B<syntax:> I<ok, err = ssl.set_der_priv_key(der_priv_key)>
B<context:> I<ssl_certificate_by_luaE<42>>
Sets the DER-formatted prviate key for the current SSL connection.
Returns C<true> on success, or a C<nil> value and a string describing the error otherwise.
Usually, the private keys are encoded in the PEM format. You can either use the
L<priv_key_pem_to_der> function
to do the PEM to DER conversion or just use
the C<openssl> command-line utility offline, like below
openssl rsa -in key.pem -outform DER -out key.der
=head2 server_name
B<syntax:> I<name, err = ssl.server_name()>
B<context:> I<any>
Returns the TLS SNI (Server Name Indication) name set by the client. Returns C<nil>
when the client does not set it.
In case of failures, it returns C<nil> I<and> a string describing the error.
Usually we use this SNI name as the domain name (like C<www.openresty.org>) to
identify the current web site while loading the corresponding SSL certificate
chain and private key for the site.
Please note that not all https clients set the SNI name, so when the SNI name is
missing from the client handshake request, we use the server IP address accessed
by the client to identify the site. See the L<raw_server_addr> method
for more details.
This function can be called in any context where downstream https is used.
=head2 server_port
B<syntax:> port, err = ssl.server_port()
B<context:> I<any>
Returns the server port. Returns C<nil>
when server dont have a port.
In case of failures, it returns C<nil> I<and> a string describing the error.
This function can be called in any context where downstream https is used.
=head2 raw_server_addr
B<syntax:> I<addr_data, addr_type, err = ssl.raw_server_addr()>
B<context:> I<any>
Returns the raw server address actually accessed by the client in the current SSL connection.
The first two return values are strings representing the address data and the address type, respectively.
The address values are interpreted differently according to the address type values:
=over
=item *
C<unix>
: The address data is a file path for the UNIX domain socket.
=item *
C<inet>
: The address data is a binary IPv4 address of 4 bytes long.
=item *
C<inet6>
: The address data is a binary IPv6 address of 16 bytes long.
=back
Returns two C<nil> values and a Lua string describing the error.
The following code snippet shows how to print out the UNIX domain socket address and
the IPv4 address as human-readable strings:
local ssl = require "ngx.ssl"
local byte = string.byte
local addr, addrtyp, err = ssl.raw_server_addr()
if not addr then
ngx.log(ngx.ERR, "failed to fetch raw server addr: ", err)
return
end
if addrtyp == "inet" then -- IPv4
ip = string.format("%d.%d.%d.%d", byte(addr, 1), byte(addr, 2),
byte(addr, 3), byte(addr, 4))
print("Using IPv4 address: ", ip)
elseif addrtyp == "unix" then -- UNIX
print("Using unix socket file ", addr)
else -- IPv6
-- leave as an exercise for the readers
end
This function can be called in any context where downstream https is used.
=head2 export_keying_material
B<syntax:> I<key, err = ssl.export_keying_material(length, label, context)>
context: I<set_by_luaE<42>, rewrite_by_luaE<42>, access_by_luaE<42>, content_by_luaE<42>, header_filter_by_luaE<42>, body_filter_by_luaE<42>, log_by_luaE<42>>
Return a key derived from the SSL master secret.
As described in RFC8446 section 7.5 this function returns key material that is derived from the SSL master secret and can be used on the application level. The returned key material is of the given length. Label is mandatory and requires a special format that is described in RFC5705 section 4. Context is optional but note that in TLSv1.2 and below a zero length context is treated differently from no context at all, and will result in different keying material being returned. In TLSv1.3 a zero length context is that same as no context at all and will result in the same keying material being returned.
The following code snippet shows how to derive a new key that can be used on the application level.
local ssl = require "ngx.ssl"
local key_length = 16
local label = "EXPERIMENTAL my label"
local context = "\x00\x01\x02\x03"
local key, err = ssl.export_keying_material(key_length, label, context)
if not key then
ngx.log(ngx.ERR, "failed to derive key ", err)
return
end
-- use key...
end
This function can be called in any context where downstream https is used.
=head2 export_keying_material_early
B<syntax:> I<key, err = ssl.export_keying_material_early(length, label, context)>
context: I<set_by_luaE<42>, rewrite_by_luaE<42>, access_by_luaE<42>, content_by_luaE<42>, header_filter_by_luaE<42>, body_filter_by_luaE<42>, log_by_luaE<42>>
Returns a key derived from the SSL early exporter master secret.
As described in RFC8446 section 7.5 this function returns key material that is derived from the SSL early exporter master secret and can be used on the application level. The returned key material is of the given length. Label is mandatory and requires a special format that is described in RFC5705 section 4. This function is only usable with TLSv1.3, and derives keying material using the early_exporter_master_secret (as defined in the TLS 1.3 RFC). For the client, the early_exporter_master_secret is only available when the client attempts to send 0-RTT data. For the server, it is only available when the server accepts 0-RTT data.
The following code snippet shows how to derive a new key that can be used on the application level.
local ssl = require "ngx.ssl"
local key_length = 16
local label = "EXPERIMENTAL my label"
local context = "\x00\x01\x02\x03"
local key, err = ssl.export_keying_material_early(key_length, label, context)
if not key then
ngx.log(ngx.ERR, "failed to derive key ", err)
return
end
-- use key...
end
This function can be called in any context where downstream https TLS1.3 is used.
=head2 raw_client_addr
B<syntax:> I<addr_data, addr_type, err = ssl.raw_client_addr()>
B<context:> I<any>
Returns the raw client address of the current SSL connection.
The first two return values are strings representing the address data and the address type, respectively.
The address values are interpreted differently according to the address type values:
=over
=item *
C<unix>
: The address data is a file path for the UNIX domain socket.
=item *
C<inet>
: The address data is a binary IPv4 address of 4 bytes long.
=item *
C<inet6>
: The address data is a binary IPv6 address of 16 bytes long.
=back
Returns two C<nil> values and a Lua string describing the error.
The following code snippet shows how to print out the UNIX domain socket address and
the IPv4 address as human-readable strings:
local ssl = require "ngx.ssl"
local byte = string.byte
local addr, addrtyp, err = ssl.raw_client_addr()
if not addr then
ngx.log(ngx.ERR, "failed to fetch raw client addr: ", err)
return
end
if addrtyp == "inet" then -- IPv4
ip = string.format("%d.%d.%d.%d", byte(addr, 1), byte(addr, 2),
byte(addr, 3), byte(addr, 4))
print("Client IPv4 address: ", ip)
elseif addrtyp == "unix" then -- UNIX
print("Client unix socket file ", addr)
else -- IPv6
-- leave as an exercise for the readers
end
This function can be called in any context where downstream https is used.
This function was first introduced in lua-resty-core 0.1.14.
=head2 get_tls1_version
B<syntax:> I<ver, err = ssl.get_tls1_version()>
B<context:> I<any>
Returns the TLS 1.x version number used by the current SSL connection. Returns C<nil> and
a string describing the error otherwise.
Typical return values are:
=over
=item *
C<0x0300>(SSLv3)
=item *
C<0x0301>(TLSv1)
=item *
C<0x0302>(TLSv1.1)
=item *
C<0x0303>(TLSv1.2)
=item *
C<0x0304>(TLSv1.3)
=back
This function can be called in any context where downstream https is used.
=head2 get_tls1_version_str
B<syntax:> I<ver, err = ssl.get_tls1_version_str()>
B<context:> I<any>
Returns the TLS 1.x version string used by the current SSL connection. Returns C<nil> and
a string describing the error otherwise.
If the TLS 1.x version number used by the current SSL connection is not
recognized, the return values will be C<nil> and the string "unknown version".
Typical return values are:
=over
=item *
C<SSLv3>
=item *
C<TLSv1>
=item *
C<TLSv1.1>
=item *
C<TLSv1.2>
=item *
C<TLSv1.3>
=back
This function can be called in any context where downstream https is used.
=head2 parse_pem_cert
B<syntax:> I<cert_chain, err = ssl.parse_pem_cert(pem_cert_chain)>
B<context:> I<any>
Converts the PEM-formated SSL certificate chain data into an opaque cdata pointer (for later uses
in the L<set_cert>
function, for example).
In case of failures, returns C<nil> and a string describing the error.
You can always use libraries like L<lua-resty-lrucache|https://github.com/openresty/lua-resty-lrucache#readme>
to cache the cdata result.
This function can be called in any context.
This function was first added in version C<0.1.7>.
=head2 parse_pem_priv_key
B<syntax:> I<priv_key, err = ssl.parse_pem_priv_key(pem_priv_key)>
B<context:> I<any>
Converts the PEM-formatted SSL private key data into an opaque cdata pointer (for later uses
in the L<set_priv_key>
function, for example).
In case of failures, returns C<nil> and a string describing the error.
This function can be called in any context.
This function was first added in version C<0.1.7>.
=head2 parse_der_cert
B<syntax:> I<cert_chain, err = ssl.parse_der_cert(der_cert_chain)>
B<context:> I<any>
Converts the DER-formated SSL certificate chain data into an opaque cdata pointer (for later uses
in the L<set_cert>
function, for example).
In case of failures, returns C<nil> and a string describing the error.
You can always use libraries like L<lua-resty-lrucache|https://github.com/openresty/lua-resty-lrucache#readme>
to cache the cdata result.
This function can be called in any context.
=head2 parse_der_priv_key
B<syntax:> I<priv_key, err = ssl.parse_der_priv_key(der_priv_key)>
B<context:> I<any>
Converts the DER-formatted SSL private key data into an opaque cdata pointer (for later uses
in the L<set_priv_key>
function, for example).
In case of failures, returns C<nil> and a string describing the error.
This function can be called in any context.
=head2 set_cert
B<syntax:> I<ok, err = ssl.set_cert(cert_chain)>
B<context:> I<ssl_certificate_by_luaE<42>>
Sets the SSL certificate chain opaque pointer returned by the
L<parse_pem_cert> or L<parse_der_cert>function for the current SSL connection.
Returns C<true> on success, or a C<nil> value and a string describing the error otherwise.
Note that this C<set_cert> function will run slightly faster, in terms of CPU cycles wasted, than the
L<set_der_cert> variant, since the first function uses opaque cdata pointers
which do not require any additional conversion needed to be performed by the SSL library during the SSL handshake.
This function was first added in version C<0.1.7>.
=head2 set_priv_key
B<syntax:> I<ok, err = ssl.set_priv_key(priv_key)>
B<context:> I<ssl_certificate_by_luaE<42>>
Sets the SSL private key opaque pointer returned by the
L<parse_pem_priv_key> or L<parse_der_priv_key> function for the current SSL connection.
Returns C<true> on success, or a C<nil> value and a string describing the error otherwise.
Note that this C<set_priv_key> function will run slightly faster, in terms of CPU cycles wasted, than the
L<set_der_priv_key> variant, since the first function uses opaque cdata pointers
which do not require any additional conversion needed to be performed by the SSL library during the SSL handshake.
This function was first added in version C<0.1.7>.
=head2 verify_client
B<syntax:> I<ok, err = ssl.verify_client(client_certs?, depth?, trusted_certs?)>
B<context:> I<ssl_certificate_by_luaE<42>>
Requires a client certificate during TLS handshake.
The C<client_certs> is the CA certificate chain opaque pointer returned by the
L<parse_pem_cert> function for the current SSL connection.
The list of certificates will be sent to clients. Also, they will be added to trusted store.
If omitted, will not send any CA certificate to clients.
The C<depth> is the verification depth in the client certificates chain.
If omitted, will use the value specified by C<ssl_verify_depth>.
The C<trusted_certs> is same returned by the
L<parse_pem_cert> function. They will be added to trusted store.
Returns C<true> on success, or a C<nil> value and a string describing the error otherwise.
Note that TLS is not terminated when verification fails. You need to examine Nginx variable C<$ssl_client_verify>
later to determine next steps.
This function was first added in version C<0.1.20>.
=head2 get_client_random
B<syntax:> I<client_random = ssl.get_client_random(outlen?)>
B<context:> I<any>
Returns the random value sent from the client to the server during the initial SSL/TLS handshake.
The C<outlen> parameter indicates the maximum length of the client_random value returned.
If the C<outlen> is zero, this function returns the total length of the client_random value.
If omitted, will use the value 32.
This function can be called in any context where downstream https is used, but in the context of L<ssl_client_hello_by_lua*|https://github.com/openresty/lua-nginx-module/#ssl_client_hello_by_lua_block>, it can not return the real client_random value, just a string filled with 0.
=head2 get_req_ssl_pointer
B<syntax:> I<ssl_ptr, err = ssl.get_req_ssl_pointer()>
B<context:> I<any>
Retrieves the OpenSSL C<SSL*> object for the current downstream connection.
Returns an FFI pointer on success, or a C<nil> value and a string describing the error otherwise.
If you need to retain the pointer beyond the current phase then you will need to use OpenSSL's C<SSL_up_ref> to increase the reference count.
If you do, ensure that your reference is released with C<SSL_free>.
This function was first added in version C<0.1.16>.
=head1 Community
=head2 English Mailing List
The L<openresty-en|https://groups.google.com/group/openresty-en> mailing list is for English speakers.
=head2 Chinese Mailing List
The L<openresty|https://groups.google.com/group/openresty> mailing list is for Chinese speakers.
=head1 Bugs and Patches
Please report bugs or submit patches by
=over
=item 1.
creating a ticket on the L<GitHub Issue Tracker|https://github.com/openresty/lua-resty-core/issues>,
=item 2.
or posting to the L<OpenResty community>.
=back
=head1 Author
Yichun Zhang E<lt>agentzh@gmail.comE<gt> (agentzh), OpenResty Inc.
=head1 Copyright and License
This module is licensed under the BSD license.
Copyright (C) 2015-2017, by Yichun "agentzh" Zhang, OpenResty Inc.
All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
=over
=item *
Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
=back
=over
=item *
Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
=back
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
=head1 See Also
=over
=item *
the ngx_lua module: https://github.com/openresty/lua-nginx-module
=item *
the L<ngx.ocsp|ocsp.md> module.
=item *
the L<ssl_certificate_by_lua*|https://github.com/openresty/lua-nginx-module/#ssl_certificate_by_lua_block> directive.
=item *
the L<lua-resty-core|https://github.com/openresty/lua-resty-core> library.
=item *
OpenResty: https://openresty.org
=back
|