/src/openssl/crypto/des/ecb_enc.c
Line | Count | Source (jump to first uncovered line) |
1 | | /* |
2 | | * Copyright 1995-2020 The OpenSSL Project Authors. All Rights Reserved. |
3 | | * |
4 | | * Licensed under the Apache License 2.0 (the "License"). You may not use |
5 | | * this file except in compliance with the License. You can obtain a copy |
6 | | * in the file LICENSE in the source distribution or at |
7 | | * https://www.openssl.org/source/license.html |
8 | | */ |
9 | | |
10 | | /* |
11 | | * DES low level APIs are deprecated for public use, but still ok for internal |
12 | | * use. |
13 | | */ |
14 | | #include "internal/deprecated.h" |
15 | | |
16 | | #include "des_local.h" |
17 | | #include <openssl/opensslv.h> |
18 | | #include <openssl/bio.h> |
19 | | |
20 | | |
21 | | const char *DES_options(void) |
22 | 0 | { |
23 | 0 | static int init = 1; |
24 | 0 | static char buf[12]; |
25 | |
|
26 | 0 | if (init) { |
27 | 0 | if (sizeof(DES_LONG) != sizeof(long)) |
28 | 0 | OPENSSL_strlcpy(buf, "des(int)", sizeof(buf)); |
29 | 0 | else |
30 | 0 | OPENSSL_strlcpy(buf, "des(long)", sizeof(buf)); |
31 | 0 | init = 0; |
32 | 0 | } |
33 | 0 | return buf; |
34 | 0 | } |
35 | | |
36 | | void DES_ecb_encrypt(const_DES_cblock *input, DES_cblock *output, |
37 | | DES_key_schedule *ks, int enc) |
38 | 0 | { |
39 | 0 | register DES_LONG l; |
40 | 0 | DES_LONG ll[2]; |
41 | 0 | const unsigned char *in = &(*input)[0]; |
42 | 0 | unsigned char *out = &(*output)[0]; |
43 | |
|
44 | 0 | c2l(in, l); |
45 | 0 | ll[0] = l; |
46 | 0 | c2l(in, l); |
47 | 0 | ll[1] = l; |
48 | 0 | DES_encrypt1(ll, ks, enc); |
49 | 0 | l = ll[0]; |
50 | 0 | l2c(l, out); |
51 | 0 | l = ll[1]; |
52 | 0 | l2c(l, out); |
53 | 0 | l = ll[0] = ll[1] = 0; |
54 | 0 | } |