Displaying 2 results from an estimated 2 matches for "in_key".
Did you mean:
id_key
2001 Mar 07
0
Compiling openssh-2.5.1p1 on IRIX in o32 mode
...\"
-D_PATH_SFTP_SERVER=\"/usr/local/ssh/libexec/sftp-server\" -DHAVE_CONFIG_H
-c rijndael.c
cfe: Error: rijndael.c, line 272: redeclaration of 'rijndael_set_key';
previous declaration at line 31 in file './rijndael.h'
rijndael_set_key(rijndael_ctx *ctx, const u4byte *in_key, const u4byte key_len, ^
cfe: Error: rijndael.c, line 272: Incompatible type for the function parameter
rijndael_set_key(rijndael_ctx *ctx, const u4byte *in_key, const u4byte key_len,
-----------------------------------------------------------------------^
*** Error code 1 (bu21)
2001 Sep 12
0
AES update..
...amp; 0xff000000) ^
+ (Td4[(t2 >> 16) & 0xff] & 0x00ff0000) ^
+ (Td4[(t1 >> 8) & 0xff] & 0x0000ff00) ^
+ (Td4[(t0 ) & 0xff] & 0x000000ff) ^
+ rk[3];
+ PUTU32(pt + 12, s3);
}
-rijndael_ctx *
-rijndael_set_key(rijndael_ctx *ctx, const u4byte *in_key, const u4byte key_len,
- int encrypt)
+void
+rijndael_set_key(rijndael_ctx *ctx, u_char *key, int bits, int encrypt)
{
- u4byte i, t, u, v, w;
- u4byte *e_key = ctx->e_key;
- u4byte *d_key = ctx->d_key;
-
- ctx->decrypt = !encrypt;
-
- if(!tab_gen)
- gen_tabs();
-
- ctx->k_len = (k...