You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

664 lines
20 KiB

5 years ago
4 years ago
  1. .\" Copyright (c) 2019-2020 Rodolphe Bréard <rodolphe@breard.tf>
  2. .\"
  3. .\" Copying and distribution of this file, with or without modification,
  4. .\" are permitted in any medium without royalty provided the copyright
  5. .\" notice and this notice are preserved. This file is offered as-is,
  6. .\" without any warranty.
  7. .Dd June 12, 2020
  8. .Dt ACMED.TOML 5
  9. .Os
  10. .Sh NAME
  11. .Nm acmed.toml
  12. .Nd ACMEd configuration file
  13. .Sh DESCRIPTION
  14. .Nm
  15. is the configuration file for
  16. .Xr acmed 8 .
  17. It is written in the
  18. .Em TOML
  19. format. The allowed elements are described below.
  20. .Bl -tag
  21. .It Ic include
  22. Array containing the path to configuration file to include. The path can be either relative or absolute. If relative, it is relative to the configuration file which included it.
  23. .Pp
  24. In case or overlapping global option definition, the one of the last included file will be used. For example, if a file
  25. .Em A
  26. includes files
  27. .Em B
  28. and
  29. .Em C
  30. and all three defines the same global option, the final value will be the one defined in file
  31. .Em C .
  32. .It Ic global
  33. Table containing the global configuration options.
  34. .Bl -tag
  35. .It Cm accounts_directory Ar string
  36. Specify the directory where the accounts private and public keys are stored.
  37. .It Cm certificates_directory Ar string
  38. Specify the directory where the certificates and their associated private keys are stored.
  39. .It Cm cert_file_mode Ar integer
  40. Specify the permissions to use for newly-created certificates files. See
  41. .Xr chmod 2
  42. for more details.
  43. .It Cm cert_file_user Ar username|user_id Ft string
  44. Specify the user who will own newly-created certificates files. See
  45. .Xr chown 2
  46. for more details.
  47. .It Cm cert_file_group Ar group_name|group_id Ft string
  48. Specify the group who will own newly-created certificates files. See
  49. .Xr chown 2
  50. for more details.
  51. .It Ic env Ar table
  52. Table of environment variables that will be accessible from hooks.
  53. .It Cm pk_file_mode Ar integer
  54. Specify the permissions to use for newly-created private-key files. See
  55. .Xr chmod 2
  56. for more details.
  57. .It Cm pk_file_user Ar username|user_id Ft string
  58. Specify the user who will own newly-created private-key files. See
  59. .Xr chown 2
  60. for more details.
  61. .It Cm pk_file_group Ar group_name|group_id Ft string
  62. Specify the group who will own newly-created private-key files. See
  63. .Xr chown 2
  64. for more details.
  65. .El
  66. .It Ic rate-limit
  67. Array of table where each element defines a HTTPS rate limit.
  68. .Bl -tag
  69. .It Cm name Ar string
  70. The name the rate limit is registered under. Must be unique.
  71. .It Cm number Ar integer
  72. Number of requests authorized withing the time period.
  73. .It Cm period Ar string
  74. Period of time during which a maximal number of requests is authorized. The format is described in the
  75. .Sx TIME PERIODS
  76. section.
  77. .El
  78. .It Ic endpoint
  79. Array of table where each element defines a Certificate Authority
  80. .Pq CA
  81. which may be used to request certificates.
  82. .Bl -tag
  83. .It Cm name Ar string
  84. The name the endpoint is registered under. Must be unique.
  85. .It Cm rate_limits Ar array
  86. Array containing the names of the HTTPS rate limits to apply.
  87. .It Cm tos_agreed Ar boolean
  88. Set whether or not the user agrees to the Terms Of Service
  89. .Pq TOS .
  90. .It Cm url Ar string
  91. The endpoint's directory URL.
  92. .It Cm key_type Ar string
  93. Name of the asymmetric cryptography algorithm used to generate the client account's key pair. Possible values are :
  94. .Bl -dash -compact
  95. .It
  96. rsa2048
  97. .It
  98. rsa4096
  99. .It
  100. ecdsa_p256
  101. .Aq default
  102. .It
  103. ecdsa_p384
  104. .El
  105. .It Cm signature_algorithm Ar string
  106. Name of the signature algorithm used to sign the messages sent to the endpoint. The default value is derived from the key type. Possible values are:
  107. .Bl -dash -compact
  108. .It
  109. RS256
  110. .It
  111. ES256
  112. .It
  113. ES384
  114. .El
  115. .El
  116. .It Ic hook
  117. Array of table where each element defines a command that will be launched at a defined point. See section
  118. .Sx WRITING A HOOK
  119. for more details.
  120. .Bl -tag
  121. .It Cm allow_failure Ar boolean
  122. Defines if an error return value for this hook is allowed or not. If not allowed, a failure in this hook will fail the whole certificate request process. Default is false.
  123. .It Cm name Ar string
  124. The name the hook is registered under. Must be unique.
  125. .It Cm type Ar array
  126. Array of strings. Possible types are:
  127. .Bl -dash -compact
  128. .It
  129. challenge-http-01
  130. .It
  131. challenge-http-01-clean
  132. .It
  133. challenge-dns-01
  134. .It
  135. challenge-dns-01-clean
  136. .It
  137. challenge-tls-alpn-01
  138. .It
  139. challenge-tls-alpn-01-clean
  140. .It
  141. file-pre-create
  142. .It
  143. file-pre-edit
  144. .It
  145. file-post-create
  146. .It
  147. file-post-edit
  148. .It
  149. post-operation
  150. .El
  151. .It Ic cmd Ar string
  152. The name of the command that will be launched.
  153. .It Ic args Ar array
  154. Array of strings representing the command's arguments.
  155. .It Ic stdin Ar string
  156. Path to the file that will be written into the command's standard intput. Mutually exclusive with
  157. .Em stdin_str .
  158. .It Ic stdin_str Ar string
  159. String that will be written into the command's standard input. Mutually exclusive with
  160. .Em stdin .
  161. .It Ic stdout Ar string
  162. Path to the file where the command's standard output if written.
  163. .It Ic stderr Ar string
  164. Path to the file where the command's standard error output if written.
  165. .El
  166. .It Ic group
  167. Array of table allowing to group several hooks as one. A group is considered as new hook.
  168. .Bl -tag
  169. .It Cm name Ar string
  170. The name the group is registered under. This name is considered as a hook name. Must be unique.
  171. .It Cm hooks Ar array
  172. Array containing the names of the hooks that are grouped. The hooks are guaranteed to be called sequentially in the declaration order.
  173. .El
  174. .It Ic account
  175. Array of table representing an account on one or several CA.
  176. .Bl -tag
  177. .It Ic name Ar string
  178. The name the account is registered under. Must be unique.
  179. .It Ic email Ar string
  180. The email address used to contact the account's holder.
  181. .El
  182. .It Ic certificate
  183. Array of table representing a certificate that will be requested to a CA.
  184. .Pp
  185. Note that certificates are identified by the first domain in the list of domains. That means that if you reorder the domains so that a different domain is at the first position, a new certificate with a new name will be issued.
  186. .Bl -tag
  187. .It Ic account Ar string
  188. Name of the account to use.
  189. .It Ic endpoint Ar string
  190. Name of the endpoint to use.
  191. .It Ic env Ar table
  192. Table of environment variables that will be accessible from hooks.
  193. .It Ic domains Ar array
  194. Array of tables listing the domains that should be included in the certificate along with the challenge to use for each one.
  195. .Bl -tag
  196. .It Ic challenge Ar string
  197. The name of the challenge to use to prove the domain's ownership. Possible values are:
  198. .Bl -dash -compact
  199. .It
  200. http-01
  201. .It
  202. dns-01
  203. .It
  204. tls-alpn-01
  205. .El
  206. .It Ic dns Ar string
  207. The domain name.
  208. .It Ic env Ar table
  209. Table of environment variables that will be accessible from hooks.
  210. .El
  211. .It Ic algorithm Ar string
  212. Name of the asymmetric cryptography algorithm used to generate the certificate's key pair. Possible values are :
  213. .Bl -dash -compact
  214. .It
  215. rsa2048
  216. .Aq default
  217. .It
  218. rsa4096
  219. .It
  220. ecdsa_p256
  221. .It
  222. ecdsa_p384
  223. .El
  224. .It Ic kp_reuse Ar boolean
  225. Set whether or not the private key should be reused when renewing the certificate. Default is false.
  226. .It Ic directory Ar string
  227. Path to the directory where certificates and their associated private keys are stored.
  228. .It Ic hooks Ar array
  229. Names of hooks that will be called when requesting a new certificate. The hooks are guaranteed to be called sequentially in the declaration order.
  230. .El
  231. .Sh WRITING A HOOK
  232. When requesting a certificate from a CA using ACME, there are three steps that are hard to automatize. The first one is solving challenges in order to prove the ownership of every domains to be included: It requires to interact with the configuration of other services, hence depends on how the infrastructure works. The second one is restarting all the services that use a given certificate, for the same reason. The last one is archiving: Although several default methods can be implemented, sometimes admins wants or are required to do it in a different way.
  233. .Pp
  234. In order to allow full automation of the three above steps without imposing arbitrary restrictions or methods,
  235. .Xr acmed 8
  236. uses hooks. Fundamentally, a hook is a command line template that will be called at a specific time of the process. Such an approach allows admins to use any executable script or program located on the machine to customize the process.
  237. .Pp
  238. For a given certificate, hooks are guaranteed to be called sequentially in the declaration order. It is therefore possible to have a hook that depends on another one. Nevertheless, several certificates may be renewed at the same time. Hence, hooks shall not use globing or any other action that may disrupt hooks called by a different certificate.
  239. .Pp
  240. A hook has a type that will influence both the moment it is called and the available template variables. It is possible to declare several types. In such a case, the hook will be invoked whenever one of its type request it. When called, the hook only have access to template variable for the current type. If a hook uses a template variable that does not exists for the current type it is invoked for, the variable is empty.
  241. .Pp
  242. When writing a hook, the values of
  243. .Em args ,
  244. .Em stdin ,
  245. .Em stdin_str ,
  246. .Em stdout
  247. and
  248. .Em stderr
  249. are considered as template strings whereas
  250. .Em cmd
  251. is not. The template syntax is
  252. .Em Handlebars .
  253. See the
  254. .Sx STANDARDS
  255. section for a link to the
  256. .Em Handlebars
  257. specifications.
  258. .Pp
  259. The available types and the associated template variable are described below.
  260. .Bl -tag
  261. .It Ic challenge-http-01
  262. Invoked when the ownership of a domain must be proved using the
  263. .Em http-01
  264. challenge. The available template variables are:
  265. .Bl -tag -compact
  266. .It Cm challenge Ar string
  267. The name of the challenge type
  268. .Aq http-01 .
  269. Mostly used in hooks with multiple types.
  270. .It Cm domain Ar string
  271. The domain name whom ownership is currently being validated.
  272. .It Cm env Ar array
  273. Array containing all the environment variables.
  274. .It Cm file_name Ar string
  275. Name of the file containing the proof. This is not a full path and does not include the
  276. .Ql .well-known/acme-challenge/
  277. prefix.
  278. .It Cm is_clean_hook Ar bool
  279. False
  280. .It Cm proof Ar string
  281. The content of the proof that must be written to
  282. .Em file_name .
  283. .El
  284. .It Ic challenge-http-01-clean
  285. Invoked once a domain ownership has been proven using the
  286. .Em http-01
  287. challenge. This hook is intended to remove the proof since it is no longer required. The template variables are strictly identical to those given in the corresponding
  288. .Em challenge-http-01
  289. hook, excepted
  290. .Em is_clean_hook
  291. which is set to
  292. .Em true .
  293. .It Ic challenge-dns-01
  294. Invoked when the ownership of a domain must be proved using the
  295. .Em dns-01
  296. challenge. The available template variables are:
  297. .Bl -tag -compact
  298. .It Cm challenge Ar string
  299. The name of the challenge type
  300. .Aq dns-01 .
  301. Mostly used in hooks with multiple types.
  302. .It Cm domain Ar string
  303. The domain name whom ownership is currently being validated.
  304. .It Cm env Ar array
  305. Array containing all the environment variables.
  306. .It Cm is_clean_hook Ar bool
  307. False
  308. .It Cm proof Ar string
  309. The content of the proof that must be written to a
  310. .Ql TXT
  311. entry of the DNS zone for the
  312. .Ql _acme-challenge
  313. subdomain.
  314. .El
  315. .It Ic challenge-dns-01-clean
  316. Invoked once a domain ownership has been proven using the
  317. .Em dns-01
  318. challenge. This hook is intended to remove the proof since it is no longer required. The template variables are strictly identical to those given in the corresponding
  319. .Em challenge-dns-01
  320. hook, excepted
  321. .Em is_clean_hook
  322. which is set to
  323. .Em true .
  324. .It Ic challenge-tls-alpn-01
  325. Invoked when the ownership of a domain must be proved using the
  326. .Em tls-alpn-01
  327. challenge. The available template variables are:
  328. .Bl -tag -compact
  329. .It Cm challenge Ar string
  330. The name of the challenge type
  331. .Aq tls-alpn-01 .
  332. Mostly used in hooks with multiple types.
  333. .It Cm domain Ar string
  334. The domain name whom ownership is currently being validated.
  335. .It Cm env Ar array
  336. Array containing all the environment variables.
  337. .It Cm is_clean_hook Ar bool
  338. False
  339. .It Cm proof Ar string
  340. Plain-text representation of the
  341. .Em acmeIdentifier
  342. extension that should be used in the self-signed certificate presented when a TLS connection is initiated with the
  343. .Qd acme-tls/1
  344. ALPN extension value.
  345. .Xr acmed 8
  346. will not generate the certificate itself since it can be done using
  347. .Xr tacd 8 .
  348. .El
  349. .It Ic challenge-tls-alpn-01-clean
  350. Invoked once a domain ownership has been proven using the
  351. .Em tls-alpn-01
  352. challenge. This hook is intended to remove the proof since it is no longer required. The template variables are strictly identical to those given in the corresponding
  353. .Em challenge-tls-alpn-01
  354. hook, excepted
  355. .Em is_clean_hook
  356. which is set to
  357. .Em true .
  358. .It Ic file-pre-create
  359. Invoked
  360. .Em before
  361. a non-existent file
  362. .Em created .
  363. The available template variables are:
  364. .Bl -tag -compact
  365. .It Cm env Ar array
  366. Array containing all the environment variables.
  367. .It Cm file_directory Ar string
  368. Name of the directory where the impacted file is located.
  369. .It Cm file_name Ar string
  370. Name of the impacted file.
  371. .It Cm file_path Ar string
  372. Full path to the impacted file.
  373. .El
  374. .It Ic file-pre-edit
  375. Invoked
  376. .Em before
  377. an existent file
  378. .Em modified .
  379. The available template variables are the same as those available for the
  380. .Em file-pre-create
  381. type.
  382. .It Ic file-post-create
  383. Invoked
  384. .Em after
  385. a non-existent file
  386. .Em created .
  387. The available template variables are the same as those available for the
  388. .Em file-pre-create
  389. type.
  390. .It Ic file-post-edit
  391. Invoked
  392. .Em after
  393. an existent file
  394. .Em modified .
  395. The available template variables are the same as those available for the
  396. .Em file-pre-create
  397. type.
  398. .It Ic post-operation
  399. Invoked at the end of the certificate request process. The available template variables are:
  400. .Bl -tag -compact
  401. .It Cm algorithm Ar string
  402. Name of the algorithm used in the certificate.
  403. .It Cm domains Ar string
  404. Array containing the domain names included in the requested certificate.
  405. .It Cm env Ar array
  406. Array containing all the environment variables.
  407. .It Cm is_success Ar boolean
  408. True if the certificate request is successful.
  409. .It Cm status Ar string
  410. Human-readable status. If the certificate request failed, it contains the error description.
  411. .El
  412. .El
  413. .Sh DEFAULT HOOKS
  414. Because many people have the same needs, ACMEd comes with a set of hooks that should serve most situations. Hook names being unique, the following names and any other name starting by those is reserved and should not be used.
  415. .Bl -tag
  416. .It Pa git
  417. This hook uses
  418. .Xr git 1
  419. to archive private keys, public keys and certificates. It is possible to customize the commit username and email by using respectively the
  420. .Ev GIT_USERNAME
  421. and
  422. .Ev GIT_EMAIL
  423. environment variables.
  424. .It Pa http-01-echo
  425. This hook is designed to solve the http-01 challenge. For this purpose, it will write the proof into
  426. .Pa {{env.HTTP_ROOT}}/{{domain}}/.well-known/acme-challenge/{{file_name}} .
  427. .Pp
  428. The web server must be configured so the file
  429. .Pa http://{{domain}}/.well-known/acme-challenge/{{file_name}}
  430. can be accessed from the CA.
  431. .Pp
  432. If
  433. .Ev HTTP_ROOT
  434. is not specified, it will be set to
  435. .Pa /var/www .
  436. .It Pa tls-alpn-01-tacd-tcp
  437. This hook is designed to solve the tls-alpn-01 challenge using
  438. .Xr tacd 8 .
  439. It requires
  440. .Xr pkill 1
  441. to support the
  442. .Em Ar -F
  443. option.
  444. .Pp
  445. .Xr tacd 8
  446. will listen on the host defined by the
  447. .Ev TACD_HOST
  448. environment variable (default is the domain to be validated) and on the port defined by the
  449. .Ev TACD_PORT
  450. environment variable (default is 5001).
  451. .Pp
  452. .Xr tacd 8
  453. will store its pid into
  454. .Pa {{TACD_PID_ROOT}}/tacd_{{domain}}.pid .
  455. If
  456. .Ev TACD_PID_ROOT
  457. is not specified, it will be set to
  458. .Pa /run .
  459. .It Pa tls-alpn-01-tacd-unix
  460. This hook is designed to solve the tls-alpn-01 challenge using
  461. .Xr tacd 8 .
  462. It requires
  463. .Xr pkill 1
  464. to support the
  465. .Em Ar -F
  466. option.
  467. .Pp
  468. .Xr tacd 8
  469. will listen on the unix socket
  470. .Pa {{env.TACD_SOCK_ROOT}}/tacd_{{domain}}.sock .
  471. If
  472. .Ev TACD_SOCK_ROOT
  473. is not specified, it will be set to
  474. .Pa /run .
  475. .Pp
  476. .Xr tacd 8
  477. will store its pid into
  478. .Pa {{TACD_PID_ROOT}}/tacd_{{domain}}.pid .
  479. If
  480. .Ev TACD_PID_ROOT
  481. is not specified, it will be set to
  482. .Pa /run .
  483. .El
  484. .Sh TIME PERIODS
  485. ACMEd uses its own time period format, which is vaguely inspired by the ISO 8601 one. Periods are formatted as
  486. .Ar PM[PM...]
  487. where
  488. .Ar M
  489. is case sensitive character representing a length and
  490. .Ar P
  491. is an integer representing a multiplayer for the following length. The authorized length are:
  492. .Bl -dash -compact
  493. .It
  494. .Ar s :
  495. second
  496. .It
  497. .Ar m :
  498. minute
  499. .It
  500. .Ar h :
  501. hour
  502. .It
  503. .Ar d :
  504. day
  505. .It
  506. .Ar w :
  507. week
  508. .El
  509. The
  510. .Ar PM
  511. couples can be specified multiple times and in any order.
  512. .Pp
  513. For example,
  514. .Dq 1d42s and
  515. .Dq 40s20h4h2s
  516. both represents a period of one day and forty-two seconds.
  517. .Sh FILES
  518. .Bl -tag
  519. .It Pa /etc/acmed/acmed.toml
  520. Default
  521. .Xr acmed 8
  522. configuration file.
  523. .It Pa /etc/acmed/accounts
  524. Default accounts private and public keys directory.
  525. .It Pa /etc/acmed/certs
  526. Default certificates and associated private keys directory.
  527. .Sh EXAMPLES
  528. The following example defines a typical endpoint, account and certificate for a domain and several subdomains.
  529. .Bd -literal -offset indent
  530. [[endpoint]]
  531. name = "example name"
  532. url = "https://acme.example.org/directory"
  533. tos_agreed = true
  534. [[account]]
  535. name = "my test account"
  536. email = "certs@exemple.net"
  537. [[certificate]]
  538. endpoint = "example name"
  539. account = "my test account"
  540. domains = [
  541. { dns = "exemple.net", challenge = "http-01"},
  542. { dns = "1.exemple.net", challenge = "dns-01"},
  543. { dns = "2.exemple.net", challenge = "tls-alpn-01", env.TACD_PORT="5010"},
  544. { dns = "3.exemple.net", challenge = "tls-alpn-01", env.TACD_PORT="5011"},
  545. ]
  546. hooks = ["git", "http-01-echo", "tls-alpn-01-tacd-tcp", "some-dns-01-hook"]
  547. env.HTTP_ROOT = "/srv/http"
  548. .Ed
  549. .Pp
  550. It is possible to use
  551. .Xr echo 1
  552. to solve the
  553. .Em http-01
  554. challenge and
  555. .Xr rm 1
  556. to clean it.
  557. .Xr mkdir 1
  558. and
  559. .Xr chmod 1
  560. are used to prevent issues related to file access.
  561. .Bd -literal -offset indent
  562. [[hook]]
  563. name = "http-01-echo-mkdir"
  564. type = ["challenge-http-01"]
  565. cmd = "mkdir"
  566. args = [
  567. "-m", "0755",
  568. "-p", "{{%if env.HTTP_ROOT}}{{env.HTTP_ROOT}}{{else}}/var/www{{/if}}/{{domain}}/.well-known/acme-challenge"
  569. ]
  570. [[hook]]
  571. name = "http-01-echo-echo"
  572. type = ["challenge-http-01"]
  573. cmd = "echo"
  574. args = ["{{proof}}"]
  575. stdout = "{{%if env.HTTP_ROOT}}{{env.HTTP_ROOT}}{{else}}/var/www{{/if}}/{{domain}}/.well-known/acme-challenge/{{file_name}}"
  576. [[hook]]
  577. name = "http-01-echo-chmod"
  578. type = ["challenge-http-01-clean"]
  579. cmd = "chmod"
  580. args = [
  581. "a+r",
  582. "{{%if env.HTTP_ROOT}}{{env.HTTP_ROOT}}{{else}}/var/www{{/if}}/{{domain}}/.well-known/acme-challenge/{{file_name}}"
  583. ]
  584. [[hook]]
  585. name = "http-01-echo-clean"
  586. type = ["challenge-http-01-clean"]
  587. cmd = "rm"
  588. args = [
  589. "-f",
  590. "{{%if env.HTTP_ROOT}}{{env.HTTP_ROOT}}{{else}}/var/www{{/if}}/{{domain}}/.well-known/acme-challenge/{{file_name}}"
  591. ]
  592. .Ed
  593. .Pp
  594. The hooks from the previous example can be grouped in order to reduce the number of hooks to define in the certificate.
  595. .Bd -literal -offset indent
  596. [[group]]
  597. name = "http-01-echo-var-www"
  598. hooks = [
  599. "http-01-echo-mkdir",
  600. "http-01-echo-echo",
  601. "http-01-echo-chmod",
  602. "http-01-echo-clean"
  603. ]
  604. [[certificate]]
  605. # Some fields omitted
  606. hooks = ["http-01-echo"]
  607. env.HTTP_ROOT = "/srv/http"
  608. .Ed
  609. .Pp
  610. It is also possible to use
  611. .Xr sendmail 8
  612. in a hook in order to notif someone when the certificate request process is done.
  613. .Bd -literal -offset indent
  614. [[hook]]
  615. name = "email-report"
  616. type = ["post-operation"]
  617. cmd = "sendmail"
  618. args = [
  619. "-f", "noreply.certs@example.net",
  620. "contact@example.net"
  621. ]
  622. stdin_str = """Subject: Certificate renewal {{#if is_success}}succeeded{{else}}failed{{/if}} for {{domains.[0]}}
  623. The following certificate has {{#unless is_success}}*not* {{/unless}}been renewed.
  624. domains: {{#each domains}}{{#if @index}}, {{/if}}{{this}}{{/each}}
  625. algorithm: {{algorithm}}
  626. status: {{status}}"""
  627. .Ed
  628. .Sh SEE ALSO
  629. .Xr acmed 8 ,
  630. .Xr tacd 8
  631. .Sh STANDARDS
  632. .Bl
  633. .It
  634. .Rs
  635. .%A Tom Preston-Werner
  636. .%D July 2018
  637. .%T TOML v0.5.0
  638. .%U https://github.com/toml-lang/toml
  639. .Re
  640. .It
  641. .Rs
  642. .%A Yehuda Katz
  643. .%T Handlebars
  644. .%U https://handlebarsjs.com/
  645. .Re
  646. .It
  647. .Rs
  648. .%A M. Jones
  649. .%D May 2015
  650. .%R RFC 7518
  651. .%T JSON Web Algorithms (JWA)
  652. .Re
  653. .El
  654. .Sh AUTHORS
  655. .An Rodolphe Bréard
  656. .Aq rodolphe@breard.tf