http://git.etherboot.org
/
people
/
cooldavid
/
gpxe.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
[crypto] Add AES key-wrap mode (RFC 3394)
[people/cooldavid/gpxe.git]
/
src
/
include
/
gpxe
/
aes.h
diff --git
a/src/include/gpxe/aes.h
b/src/include/gpxe/aes.h
index
9e0e34a
..
fc1694b
100644
(file)
--- a/
src/include/gpxe/aes.h
+++ b/
src/include/gpxe/aes.h
@@
-24,4
+24,7
@@
struct aes_context {
extern struct cipher_algorithm aes_algorithm;
extern struct cipher_algorithm aes_cbc_algorithm;
extern struct cipher_algorithm aes_algorithm;
extern struct cipher_algorithm aes_cbc_algorithm;
+int aes_wrap ( const void *kek, const void *src, void *dest, int nblk );
+int aes_unwrap ( const void *kek, const void *src, void *dest, int nblk );
+
#endif /* _GPXE_AES_H */
#endif /* _GPXE_AES_H */