~ubuntu-branches/ubuntu/raring/ipxe/raring

« back to all changes in this revision

Viewing changes to src/include/ipxe/aes.h

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2012-11-14 15:47:31 UTC
  • mfrom: (1.1.3)
  • Revision ID: package-import@ubuntu.com-20121114154731-jhuy5d1h2jw75qe9
Tags: 1.0.0+git-4.d6b0b76-0ubuntu1
* New upstream snapshot:
  - d/p/iscsi*.patch: Dropped - included in snapshot.
  - Refreshed all other patches.
* d/p/enable-https.patch: Enable HTTPS support (LP: #1025239).

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
/** AES context size */
22
22
#define AES_CTX_SIZE sizeof ( struct aes_context )
23
23
 
 
24
/* AXTLS functions */
 
25
extern void axtls_aes_encrypt ( const AES_CTX *ctx, uint32_t *data );
 
26
extern void axtls_aes_decrypt ( const AES_CTX *ctx, uint32_t *data );
 
27
 
24
28
extern struct cipher_algorithm aes_algorithm;
25
29
extern struct cipher_algorithm aes_cbc_algorithm;
26
30