diff options
Diffstat (limited to 'src/lib/libcrypto/evp/e_acss.c')
-rw-r--r-- | src/lib/libcrypto/evp/e_acss.c | 85 |
1 files changed, 85 insertions, 0 deletions
diff --git a/src/lib/libcrypto/evp/e_acss.c b/src/lib/libcrypto/evp/e_acss.c new file mode 100644 index 0000000000..a16b85c627 --- /dev/null +++ b/src/lib/libcrypto/evp/e_acss.c | |||
@@ -0,0 +1,85 @@ | |||
1 | /* $Id: e_acss.c,v 1.2 2004/02/13 10:05:44 hshoexer Exp $ */ | ||
2 | /* | ||
3 | * Copyright (c) 2004 The OpenBSD project | ||
4 | * | ||
5 | * Permission to use, copy, modify, and distribute this software for any | ||
6 | * purpose with or without fee is hereby granted, provided that the above | ||
7 | * copyright notice and this permission notice appear in all copies. | ||
8 | * | ||
9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | ||
10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | ||
11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR | ||
12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | ||
13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | ||
14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | ||
15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | ||
16 | */ | ||
17 | |||
18 | #ifndef OPENSSL_NO_ACSS | ||
19 | |||
20 | #include "cryptlib.h" | ||
21 | #include <openssl/evp.h> | ||
22 | #include <openssl/objects.h> | ||
23 | #include "evp_locl.h" | ||
24 | #include <openssl/acss.h> | ||
25 | |||
26 | typedef struct { | ||
27 | ACSS_KEY ks; | ||
28 | } EVP_ACSS_KEY; | ||
29 | |||
30 | #define data(ctx) EVP_C_DATA(EVP_ACSS_KEY,ctx) | ||
31 | |||
32 | static int acss_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key, | ||
33 | const unsigned char *iv, int enc); | ||
34 | static int acss_ciph(EVP_CIPHER_CTX *ctx, unsigned char *out, | ||
35 | const unsigned char *in, unsigned int inl); | ||
36 | static int acss_ctrl(EVP_CIPHER_CTX *ctx, int type, int arg, void *ptr); | ||
37 | static const EVP_CIPHER acss_cipher = { | ||
38 | NID_undef, | ||
39 | 1,5,0, | ||
40 | 0, | ||
41 | acss_init_key, | ||
42 | acss_ciph, | ||
43 | NULL, | ||
44 | sizeof(EVP_ACSS_KEY), | ||
45 | NULL, | ||
46 | NULL, | ||
47 | acss_ctrl, | ||
48 | NULL | ||
49 | }; | ||
50 | |||
51 | const | ||
52 | EVP_CIPHER *EVP_acss(void) | ||
53 | { | ||
54 | return(&acss_cipher); | ||
55 | } | ||
56 | |||
57 | static int | ||
58 | acss_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key, | ||
59 | const unsigned char *iv, int enc) | ||
60 | { | ||
61 | acss_setkey(&data(ctx)->ks,key,enc,ACSS_MODE1); | ||
62 | return 1; | ||
63 | } | ||
64 | |||
65 | static int | ||
66 | acss_ciph(EVP_CIPHER_CTX *ctx, unsigned char *out, const unsigned char *in, | ||
67 | unsigned int inl) | ||
68 | { | ||
69 | acss(&data(ctx)->ks,inl,in,out); | ||
70 | return 1; | ||
71 | } | ||
72 | |||
73 | static int | ||
74 | acss_ctrl(EVP_CIPHER_CTX *ctx, int type, int arg, void *ptr) | ||
75 | { | ||
76 | switch(type) { | ||
77 | case EVP_CTRL_SET_ACSS_MODE: | ||
78 | data(ctx)->ks.mode = arg; | ||
79 | return 1; | ||
80 | |||
81 | default: | ||
82 | return -1; | ||
83 | } | ||
84 | } | ||
85 | #endif | ||