dc68054305
- Restore 29 recipe symlinks (libdrm, qtbase, dbus, sddm, pipewire, etc.) - Restore 33 patches (KDE, libdrm, mesa, pipewire, sddm, wireplumber) - Restore 20+ local/scripts (audit, lint, test, build helpers) - Restore src/cook/scheduler.rs, status.rs, gnu-config/ - Restore scripts/patch-inclusion-gate.sh, run_mini1.sh, validate-collision-log.sh - Recover TLC source from HEAD (was overwritten by 0.2.3 checkout) - Recover 11 local/docs plans from HEAD (were overwritten) - Recover qt6-wayland-smoke symlink from HEAD - Fix MOTD: remove garbled ASCII art, use clean text - Update version: 0.2.0 -> 0.2.4 in os-release, motd, config - Reduce filesystem_size: 1536 -> 512 MiB - Add ABSOLUTE RULE to AGENTS.md: never delete/ignore packages - Reduce pcid scheme log verbosity: info -> debug
25 lines
865 B
C
25 lines
865 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/* Copyright (c) 2024 Meta Platforms, Inc. and affiliates. */
|
|
#ifndef _BPF_CRYPTO_H
|
|
#define _BPF_CRYPTO_H
|
|
|
|
struct bpf_crypto_type {
|
|
void *(*alloc_tfm)(const char *algo);
|
|
void (*free_tfm)(void *tfm);
|
|
int (*has_algo)(const char *algo);
|
|
int (*setkey)(void *tfm, const u8 *key, unsigned int keylen);
|
|
int (*setauthsize)(void *tfm, unsigned int authsize);
|
|
int (*encrypt)(void *tfm, const u8 *src, u8 *dst, unsigned int len, u8 *iv);
|
|
int (*decrypt)(void *tfm, const u8 *src, u8 *dst, unsigned int len, u8 *iv);
|
|
unsigned int (*ivsize)(void *tfm);
|
|
unsigned int (*statesize)(void *tfm);
|
|
u32 (*get_flags)(void *tfm);
|
|
struct module *owner;
|
|
char name[14];
|
|
};
|
|
|
|
int bpf_crypto_register_type(const struct bpf_crypto_type *type);
|
|
int bpf_crypto_unregister_type(const struct bpf_crypto_type *type);
|
|
|
|
#endif /* _BPF_CRYPTO_H */
|