summaryrefslogtreecommitdiff
path: root/lib/dns/sec/dnssafe/ahchencr.c
blob: 64cf959c34da096824221eac6c8083e5c3c44d7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
/* Copyright (C) RSA Data Security, Inc. created 1993, 1996.  This is an
   unpublished work protected as such under copyright law.  This work
   contains proprietary, confidential, and trade secret information of
   RSA Data Security, Inc.  Use, disclosure or reproduction without the
   express written authorization of RSA Data Security, Inc. is
   prohibited.
 */

/* Define this so that the type of the 'this' pointer in the
     virtual functions will be correct for this derived class.
 */
struct AHChooseEncryptDecrypt;
#define THIS_ENCRYPT_DECRYPT struct AHChooseEncryptDecrypt

#include "global.h"
#include "algae.h"
#include "bsafe2.h"
#include "bkey.h"
#include "balg.h"
#include "balgmeth.h"
#include "ahchencr.h"
#include "amencdec.h"

static int InitEncryptDecryptAlga PROTO_LIST
  ((AlgaChoice *, POINTER, B_ALGORITHM_METHOD *, A_SURRENDER_CTX *));

static AHEncryptDecryptVTable V_TABLE = {
  AHChooseEncryptDestructor, AHChooseEncryptGetBlockLen,
  AHChooseEncryptEncryptInit, AHChooseEncryptDecryptInit,
  AHChooseEncryptEncryptUpdate, AHChooseEncryptDecryptUpdate,
  AHChooseEncryptEncryptFinal, AHChooseEncryptDecryptFinal
};

/* In C++:
AHChooseEncryptDecrypt::AHChooseEncryptDecrypt
  (B_AlgorithmInfoType *infoType, POINTER info)
  : algaChoice (InitEncryptDecryptAlga)
{
  algaChoice.setAlgorithmInfoType (infoType);
  algaChoice.setAlgorithmInfo (info);
}
 */
AHChooseEncryptDecrypt *AHChooseEncryptConstructor2 (handler, infoType, info)
AHChooseEncryptDecrypt *handler;
struct B_AlgorithmInfoType *infoType;
POINTER info;
{
  if (handler == (AHChooseEncryptDecrypt *)NULL_PTR) {
    /* This constructor is being used to do a new */
    if ((handler = (AHChooseEncryptDecrypt *)T_malloc (sizeof (*handler)))
        == (AHChooseEncryptDecrypt *)NULL_PTR)
      return (handler);
  }

  /* Construct base class */
  AHEncryptDecryptConstructor (&handler->encryptDecrypt);

  ALGA_CHOICE_Constructor (&handler->algaChoice, InitEncryptDecryptAlga);
  handler->algaChoice._algorithmInfoType = infoType;
  handler->algaChoice._algorithmInfo = info;

  handler->encryptDecrypt.vTable = &V_TABLE;

  return (handler);
}

void AHChooseEncryptDestructor (handler)
AHChooseEncryptDecrypt *handler;
{
  ALGA_CHOICE_Destructor (&handler->algaChoice);
  /* There is no desructor to call for the base class. */
}

int AHChooseEncryptGetBlockLen (handler, blockLen)
AHChooseEncryptDecrypt *handler;
unsigned int *blockLen;
{
  int status;

  if ((status = (*((A_ENCRYPT_DECRYPT_ALGA *)handler->algaChoice._alga)->
                 GetBlockLen)
       (handler->algaChoice.context.z.context, blockLen)) != 0)
    return (ConvertAlgaeError (status));
  return (0);
}

/* In C++:
int AHChooseEncryptDecrypt::encryptInit
  (B_Key *key, B_ALGORITHM_CHOOSER chooser, A_SURRENDER_CTX *surrenderContext)
{
  return (algaChoice.choose (1, key, chooser, surrenderContext));
}
 */
int AHChooseEncryptEncryptInit (handler, key, chooser, surrenderContext)
AHChooseEncryptDecrypt *handler;
B_Key *key;
B_ALGORITHM_CHOOSER chooser;
A_SURRENDER_CTX *surrenderContext;
{
  return (AlgaChoiceChoose
          (&handler->algaChoice, 1, key, chooser, surrenderContext));
}

int AHChooseEncryptDecryptInit (handler, key, chooser, surrenderContext)
AHChooseEncryptDecrypt *handler;
B_Key *key;
B_ALGORITHM_CHOOSER chooser;
A_SURRENDER_CTX *surrenderContext;
{
  return (AlgaChoiceChoose
          (&handler->algaChoice, 0, key, chooser, surrenderContext));
}

/* In C++:
int AHChooseEncryptDecrypt::encryptUpdate
  (unsigned char *partOut, unsigned int *partOutLen,
   unsigned int maxPartOutLen, unsigned char *partIn, unsigned int partInLen,
   B_Algorithm *randomAlgorithm, A_SURRENDER_CTX *surrenderContext)
{
  int status;

  if ((status = (*((A_ENCRYPT_DECRYPT_ALGA *)algaChoice.alga ()) ->Update)
       (algaChoice.context (), partOut, partOutLen, maxPartOutLen,
        partIn, partInLen, surrenderContext)) != 0)
    return (ConvertAlgaeError (status));
  return (0);
}  
 */
int AHChooseEncryptEncryptUpdate
  (handler, partOut, partOutLen, maxPartOutLen, partIn, partInLen,
   randomAlgorithm, surrenderContext)
AHChooseEncryptDecrypt *handler;
unsigned char *partOut;
unsigned int *partOutLen;
unsigned int maxPartOutLen;
unsigned char *partIn;
unsigned int partInLen;
B_Algorithm *randomAlgorithm;
A_SURRENDER_CTX *surrenderContext;
{
  int status;

UNUSED_ARG (randomAlgorithm)

  if ((status = (*((A_ENCRYPT_DECRYPT_ALGA *)handler->algaChoice._alga)->
                 Update)
       (handler->algaChoice.context.z.context, partOut, partOutLen,
        maxPartOutLen, partIn, partInLen, surrenderContext)) != 0)
    return (ConvertAlgaeError (status));
  return (0);
}

int AHChooseEncryptDecryptUpdate
  (handler, partOut, partOutLen, maxPartOutLen, partIn, partInLen,
   randomAlgorithm, surrenderContext)
AHChooseEncryptDecrypt *handler;
unsigned char *partOut;
unsigned int *partOutLen;
unsigned int maxPartOutLen;
unsigned char *partIn;
unsigned int partInLen;
B_Algorithm *randomAlgorithm;
A_SURRENDER_CTX *surrenderContext;
{
  int status;

UNUSED_ARG (randomAlgorithm)

  if ((status = (*((A_ENCRYPT_DECRYPT_ALGA *)handler->algaChoice._alga)->
                 Update)
       (handler->algaChoice.context.z.context, partOut, partOutLen,
        maxPartOutLen, partIn, partInLen, surrenderContext)) != 0)
    return (ConvertAlgaeError (status));
  return (0);
}

int AHChooseEncryptEncryptFinal
  (handler, partOut, partOutLen, maxPartOutLen, randomAlgorithm,
   surrenderContext)
AHChooseEncryptDecrypt *handler;
unsigned char *partOut;
unsigned int *partOutLen;
unsigned int maxPartOutLen;
B_Algorithm *randomAlgorithm;
A_SURRENDER_CTX *surrenderContext;
{
  int status;

UNUSED_ARG (randomAlgorithm)

  if ((status = (*((A_ENCRYPT_DECRYPT_ALGA *)handler->algaChoice._alga)->Final)
       (handler->algaChoice.context.z.context, partOut, partOutLen,
        maxPartOutLen, surrenderContext)) != 0)
    return (ConvertAlgaeError (status));
  return (0);
}

int AHChooseEncryptDecryptFinal
  (handler, partOut, partOutLen, maxPartOutLen, randomAlgorithm,
   surrenderContext)
AHChooseEncryptDecrypt *handler;
unsigned char *partOut;
unsigned int *partOutLen;
unsigned int maxPartOutLen;
B_Algorithm *randomAlgorithm;
A_SURRENDER_CTX *surrenderContext;
{
  int status;

UNUSED_ARG (randomAlgorithm)

  if ((status = (*((A_ENCRYPT_DECRYPT_ALGA *)handler->algaChoice._alga)->Final)
       (handler->algaChoice.context.z.context, partOut, partOutLen,
        maxPartOutLen, surrenderContext)) != 0)
    return (ConvertAlgaeError (status));
  return (0);
}

/* In C++:
static int InitEncryptDecryptAlga
  (AlgaChoice *algaChoice, POINTER keyInfo, POINTER alga,
   A_SURRENDER_CTX *surrenderContext)
{
  int status;
  unsigned int contextSize;

  if ((status = (*((A_ENCRYPT_DECRYPT_ALGA *)alga)->Query)
       (&contextSize, keyInfo, algaChoice->algorithmInfo ())) != 0)
    return (ConvertAlgaeError (status));

  if ((status = algaChoice->makeNewContext (contextSize)) != 0)
    return (status);

  if ((status = (*((A_ENCRYPT_DECRYPT_ALGA *)alga)->Init)
       (algaChoice->context (), keyInfo, algaChoice->algorithmInfo (),
        surrenderContext)) != 0)
    return (ConvertAlgaeError (status));

  return (0);
}
 */
static int InitEncryptDecryptAlga
  (algaChoice, keyInfo, algorithmMethod, surrenderContext)
AlgaChoice *algaChoice;
POINTER keyInfo;
B_ALGORITHM_METHOD *algorithmMethod;
A_SURRENDER_CTX *surrenderContext;
{
  int status;
  unsigned int contextSize;

  if ((status = (*((A_ENCRYPT_DECRYPT_ALGA *)algorithmMethod->alga)->Query)
       (&contextSize, keyInfo, algaChoice->_algorithmInfo)) != 0)
    return (ConvertAlgaeError (status));

  if ((status = ResizeContextMakeNewContext
       (&algaChoice->context, contextSize)) != 0)
    return (status);

  if ((status = (*((A_ENCRYPT_DECRYPT_ALGA *)algorithmMethod->alga)->Init)
       (algaChoice->context.z.context, keyInfo, algaChoice->_algorithmInfo,
        surrenderContext)) != 0)
    return (ConvertAlgaeError (status));

  return (0);
}