~ubuntu-branches/ubuntu/lucid/openssl/lucid-proposed

« back to all changes in this revision

Viewing changes to crypto/cast/c_skey.c

  • Committer: Bazaar Package Importer
  • Author(s): Kurt Roeckx
  • Date: 2009-06-13 18:15:46 UTC
  • mto: (11.1.5 squeeze)
  • mto: This revision was merged to the branch mainline in revision 34.
  • Revision ID: james.westby@ubuntu.com-20090613181546-vbfntai3b009dl1u
Tags: upstream-0.9.8k
ImportĀ upstreamĀ versionĀ 0.9.8k

Show diffs side-by-side

added added

removed removed

Lines of Context:
57
57
 */
58
58
 
59
59
#include <openssl/cast.h>
 
60
#include <openssl/crypto.h>
 
61
#ifdef OPENSSL_FIPS
 
62
#include <openssl/fips.h>
 
63
#endif
 
64
 
60
65
#include "cast_lcl.h"
61
66
#include "cast_s.h"
62
67
 
72
77
#define S6 CAST_S_table6
73
78
#define S7 CAST_S_table7
74
79
 
75
 
void CAST_set_key(CAST_KEY *key, int len, const unsigned char *data)
 
80
FIPS_NON_FIPS_VCIPHER_Init(CAST)
76
81
        {
77
82
        CAST_LONG x[16];
78
83
        CAST_LONG z[16];