FD.io VPP  v19.08-27-gf4dcae4
Vector Packet Processing
quic_crypto.c File Reference
+ Include dependency graph for quic_crypto.c:

Go to the source code of this file.

Data Structures

struct  cipher_context_t
 
struct  aead_crypto_context_t
 

Typedefs

typedef void(* quicly_do_transform_fn) (ptls_cipher_context_t *, void *, const void *, size_t)
 

Functions

static void vpp_crypto_cipher_do_init (ptls_cipher_context_t *_ctx, const void *iv)
 
static void vpp_crypto_cipher_dispose (ptls_cipher_context_t *_ctx)
 
static void vpp_crypto_cipher_encrypt (ptls_cipher_context_t *_ctx, void *output, const void *input, size_t _len)
 
static int vpp_crypto_cipher_setup_crypto (ptls_cipher_context_t *_ctx, int is_enc, const void *key, const EVP_CIPHER *cipher, quicly_do_transform_fn do_transform)
 
static int aes128ctr_setup_crypto (ptls_cipher_context_t *ctx, int is_enc, const void *key)
 
static int aes256ctr_setup_crypto (ptls_cipher_context_t *ctx, int is_enc, const void *key)
 
size_t vpp_crypto_aead_encrypt (ptls_aead_context_t *_ctx, void *output, const void *input, size_t inlen, uint64_t seq, const void *iv, const void *aad, size_t aadlen)
 
size_t vpp_crypto_aead_decrypt (ptls_aead_context_t *_ctx, void *_output, const void *input, size_t inlen, const void *iv, const void *aad, size_t aadlen)
 
static void vpp_crypto_aead_dispose_crypto (ptls_aead_context_t *_ctx)
 
static int vpp_crypto_aead_setup_crypto (ptls_aead_context_t *_ctx, int is_enc, const void *key, const EVP_CIPHER *cipher)
 
static int vpp_crypto_aead_aes128gcm_setup_crypto (ptls_aead_context_t *ctx, int is_enc, const void *key)
 
static int vpp_crypto_aead_aes256gcm_setup_crypto (ptls_aead_context_t *ctx, int is_enc, const void *key)
 

Variables

vnet_crypto_main_tcm = &crypto_main
 
ptls_cipher_algorithm_t vpp_crypto_aes128ctr
 
ptls_cipher_algorithm_t vpp_crypto_aes256ctr
 
ptls_aead_algorithm_t vpp_crypto_aes128gcm
 
ptls_aead_algorithm_t vpp_crypto_aes256gcm
 
ptls_cipher_suite_t vpp_crypto_aes128gcmsha256
 
ptls_cipher_suite_t vpp_crypto_aes256gcmsha384
 
ptls_cipher_suite_t * vpp_crypto_cipher_suites []
 

Typedef Documentation

typedef void(* quicly_do_transform_fn) (ptls_cipher_context_t *, void *, const void *, size_t)

Definition at line 24 of file quic_crypto.c.

Function Documentation

static int aes128ctr_setup_crypto ( ptls_cipher_context_t *  ctx,
int  is_enc,
const void *  key 
)
static

Definition at line 124 of file quic_crypto.c.

+ Here is the call graph for this function:

static int aes256ctr_setup_crypto ( ptls_cipher_context_t *  ctx,
int  is_enc,
const void *  key 
)
static

Definition at line 132 of file quic_crypto.c.

+ Here is the call graph for this function:

static int vpp_crypto_aead_aes128gcm_setup_crypto ( ptls_aead_context_t *  ctx,
int  is_enc,
const void *  key 
)
static

Definition at line 264 of file quic_crypto.c.

+ Here is the call graph for this function:

static int vpp_crypto_aead_aes256gcm_setup_crypto ( ptls_aead_context_t *  ctx,
int  is_enc,
const void *  key 
)
static

Definition at line 271 of file quic_crypto.c.

+ Here is the call graph for this function:

size_t vpp_crypto_aead_decrypt ( ptls_aead_context_t *  _ctx,
void *  _output,
const void *  input,
size_t  inlen,
const void *  iv,
const void *  aad,
size_t  aadlen 
)

Definition at line 182 of file quic_crypto.c.

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

static void vpp_crypto_aead_dispose_crypto ( ptls_aead_context_t *  _ctx)
static

Definition at line 224 of file quic_crypto.c.

+ Here is the caller graph for this function:

size_t vpp_crypto_aead_encrypt ( ptls_aead_context_t *  _ctx,
void *  output,
const void *  input,
size_t  inlen,
uint64_t  seq,
const void *  iv,
const void *  aad,
size_t  aadlen 
)

Definition at line 140 of file quic_crypto.c.

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

static int vpp_crypto_aead_setup_crypto ( ptls_aead_context_t *  _ctx,
int  is_enc,
const void *  key,
const EVP_CIPHER *  cipher 
)
static

Definition at line 230 of file quic_crypto.c.

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

static void vpp_crypto_cipher_dispose ( ptls_cipher_context_t *  _ctx)
static

Definition at line 70 of file quic_crypto.c.

+ Here is the caller graph for this function:

static void vpp_crypto_cipher_do_init ( ptls_cipher_context_t *  _ctx,
const void *  iv 
)
static

Definition at line 44 of file quic_crypto.c.

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

static void vpp_crypto_cipher_encrypt ( ptls_cipher_context_t *  _ctx,
void *  output,
const void *  input,
size_t  _len 
)
static

Definition at line 76 of file quic_crypto.c.

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

static int vpp_crypto_cipher_setup_crypto ( ptls_cipher_context_t *  _ctx,
int  is_enc,
const void *  key,
const EVP_CIPHER *  cipher,
quicly_do_transform_fn  do_transform 
)
static

Definition at line 90 of file quic_crypto.c.

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

Variable Documentation

Definition at line 41 of file quic_crypto.c.

ptls_cipher_algorithm_t vpp_crypto_aes128ctr
Initial value:
= { "AES128-CTR",
PTLS_AES128_KEY_SIZE,
1, PTLS_AES_IV_SIZE,
sizeof (struct cipher_context_t),
}
static int aes128ctr_setup_crypto(ptls_cipher_context_t *ctx, int is_enc, const void *key)
Definition: quic_crypto.c:124

Definition at line 277 of file quic_crypto.c.

ptls_aead_algorithm_t vpp_crypto_aes128gcm
Initial value:
= { "AES128-GCM",
PTLS_AES128_KEY_SIZE,
PTLS_AESGCM_IV_SIZE,
PTLS_AESGCM_TAG_SIZE,
sizeof (struct aead_crypto_context_t),
}
static int vpp_crypto_aead_aes128gcm_setup_crypto(ptls_aead_context_t *ctx, int is_enc, const void *key)
Definition: quic_crypto.c:264
#define NULL
Definition: clib.h:58
ptls_cipher_algorithm_t vpp_crypto_aes128ctr
Definition: quic_crypto.c:277

Definition at line 292 of file quic_crypto.c.

ptls_cipher_suite_t vpp_crypto_aes128gcmsha256
Initial value:
=
{ PTLS_CIPHER_SUITE_AES_128_GCM_SHA256,
&ptls_openssl_sha256
}
ptls_aead_algorithm_t vpp_crypto_aes128gcm
Definition: quic_crypto.c:292

Definition at line 312 of file quic_crypto.c.

ptls_cipher_algorithm_t vpp_crypto_aes256ctr
Initial value:
= { "AES256-CTR",
PTLS_AES256_KEY_SIZE,
1 ,
PTLS_AES_IV_SIZE,
sizeof (struct cipher_context_t),
}
static int aes256ctr_setup_crypto(ptls_cipher_context_t *ctx, int is_enc, const void *key)
Definition: quic_crypto.c:132

Definition at line 284 of file quic_crypto.c.

ptls_aead_algorithm_t vpp_crypto_aes256gcm
Initial value:
= { "AES256-GCM",
PTLS_AES256_KEY_SIZE,
PTLS_AESGCM_IV_SIZE,
PTLS_AESGCM_TAG_SIZE,
sizeof (struct aead_crypto_context_t),
}
static int vpp_crypto_aead_aes256gcm_setup_crypto(ptls_aead_context_t *ctx, int is_enc, const void *key)
Definition: quic_crypto.c:271
#define NULL
Definition: clib.h:58
ptls_cipher_algorithm_t vpp_crypto_aes256ctr
Definition: quic_crypto.c:284

Definition at line 302 of file quic_crypto.c.

ptls_cipher_suite_t vpp_crypto_aes256gcmsha384
Initial value:
=
{ PTLS_CIPHER_SUITE_AES_256_GCM_SHA384,
&ptls_openssl_sha384
}
ptls_aead_algorithm_t vpp_crypto_aes256gcm
Definition: quic_crypto.c:302

Definition at line 318 of file quic_crypto.c.

ptls_cipher_suite_t* vpp_crypto_cipher_suites[]
Initial value:
=
}
#define NULL
Definition: clib.h:58
ptls_cipher_suite_t vpp_crypto_aes256gcmsha384
Definition: quic_crypto.c:318
ptls_cipher_suite_t vpp_crypto_aes128gcmsha256
Definition: quic_crypto.c:312

Definition at line 324 of file quic_crypto.c.