~ubuntu-branches/ubuntu/lucid/wpasupplicant/lucid

« back to all changes in this revision

Viewing changes to crypto.h

  • Committer: Bazaar Package Importer
  • Author(s): Kyle McMartin
  • Date: 2005-02-15 00:51:28 UTC
  • Revision ID: james.westby@ubuntu.com-20050215005128-xr4m8owiunur2008
Tags: upstream-0.3.8
ImportĀ upstreamĀ versionĀ 0.3.8

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef CRYPTO_H
 
2
#define CRYPTO_H
 
3
 
 
4
void md4_vector(size_t num_elem, const u8 *addr[], const size_t *len, u8 *mac);
 
5
void md4(const u8 *addr, size_t len, u8 *mac);
 
6
void des_encrypt(const u8 *clear, const u8 *key, u8 *cypher);
 
7
 
 
8
#endif /* CRYPTO_H */