Software / code / prosody
Annotate
.editorconfig @ 13537:fb970df95374
util.crypto: Add more ECC methods
pkey_meth_derive: to derive a shared symmetric key from two ECC keys
pkey_meth_public_raw: to get the raw form of the public key
import_public_ec_raw: to import the raw form of the public key
generate_p256_keypair: key generation for the P-256 curve
| author | Stephen Paul Weber <singpolyma@singpolyma.net> |
|---|---|
| date | Tue, 29 Oct 2024 09:15:50 -0500 |
| parent | 13194:b8398218dd23 |
| rev | line source |
|---|---|
|
13191
1266efb7101c
editorconfig: Add link to format description
Kim Alvefur <zash@zash.se>
parents:
11706
diff
changeset
|
1 # https://editorconfig.org/ |
|
1266efb7101c
editorconfig: Add link to format description
Kim Alvefur <zash@zash.se>
parents:
11706
diff
changeset
|
2 |
| 11706 | 3 root = true |
| 4 | |
| 5 [*] | |
|
13192
4a107a63b0a3
editorconfig: Explicitly specify preferred charset (UTF-8)
Kim Alvefur <zash@zash.se>
parents:
13191
diff
changeset
|
6 charset = utf-8 |
| 11706 | 7 end_of_line = lf |
| 8 indent_style = tab | |
| 9 insert_final_newline = true | |
| 10 trim_trailing_whitespace = true | |
|
13193
e2e4779c6790
editorconfig: Specify max line length to match luacheck settings
Kim Alvefur <zash@zash.se>
parents:
13192
diff
changeset
|
11 max_line_length = 150 |
| 11706 | 12 |
| 13 [CHANGES] | |
| 14 indent_size = 4 | |
| 15 indent_style = space | |
| 16 | |
| 17 [configure] | |
| 18 indent_size = 3 | |
| 19 indent_style = space | |
| 20 | |
|
13194
b8398218dd23
editorconfig: Include the command used to normalize *.xml
Kim Alvefur <zash@zash.se>
parents:
13193
diff
changeset
|
21 [*.xml] |
|
b8398218dd23
editorconfig: Include the command used to normalize *.xml
Kim Alvefur <zash@zash.se>
parents:
13193
diff
changeset
|
22 # xmllint --nsclean --encode UTF-8 --noent --format - |
| 11706 | 23 indent_size = 2 |
| 24 indent_style = space |