mirror of https://github.com/XTLS/Xray-core
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.
15 lines
748 B
15 lines
748 B
4 years ago
|
package aead
|
||
|
|
||
|
const (
|
||
|
KDFSaltConstAuthIDEncryptionKey = "AES Auth ID Encryption"
|
||
|
KDFSaltConstAEADRespHeaderLenKey = "AEAD Resp Header Len Key"
|
||
|
KDFSaltConstAEADRespHeaderLenIV = "AEAD Resp Header Len IV"
|
||
|
KDFSaltConstAEADRespHeaderPayloadKey = "AEAD Resp Header Key"
|
||
|
KDFSaltConstAEADRespHeaderPayloadIV = "AEAD Resp Header IV"
|
||
|
KDFSaltConstVMessAEADKDF = "VMess AEAD KDF"
|
||
|
KDFSaltConstVMessHeaderPayloadAEADKey = "VMess Header AEAD Key"
|
||
|
KDFSaltConstVMessHeaderPayloadAEADIV = "VMess Header AEAD Nonce"
|
||
|
KDFSaltConstVMessHeaderPayloadLengthAEADKey = "VMess Header AEAD Key_Length"
|
||
|
KDFSaltConstVMessHeaderPayloadLengthAEADIV = "VMess Header AEAD Nonce_Length"
|
||
|
)
|