mirror of
https://github.com/ipxe/ipxe
synced 2025-12-24 15:23:42 +03:00
The various types of cryptographic algorithm are fundamentally different, and it was probably a mistake to try to handle them via a single common type. pubkey_algorithm is a placeholder type for now.
9 lines
143 B
C
9 lines
143 B
C
#ifndef _GPXE_AES_H
|
|
#define _GPXE_AES_H
|
|
|
|
struct cipher_algorithm;
|
|
|
|
extern struct cipher_algorithm aes_cbc_algorithm;
|
|
|
|
#endif /* _GPXE_AES_H */
|