VirtualBox

source: vbox/trunk/src/libs/openssl-3.0.7/include/openssl/idea.h@ 97673

最後變更 在這個檔案從97673是 94082,由 vboxsync 提交於 3 年 前

libs/openssl-3.0.1: started applying and adjusting our OpenSSL changes to 3.0.1. bugref:10128

檔案大小: 2.9 KB
 
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#ifndef OPENSSL_IDEA_H
11# define OPENSSL_IDEA_H
12# pragma once
13
14# include <openssl/macros.h>
15# ifndef OPENSSL_NO_DEPRECATED_3_0
16# define HEADER_IDEA_H
17# endif
18
19# include <openssl/opensslconf.h>
20
21# ifndef OPENSSL_NO_IDEA
22# ifdef __cplusplus
23extern "C" {
24# endif
25
26# define IDEA_BLOCK 8
27# define IDEA_KEY_LENGTH 16
28
29# ifndef OPENSSL_NO_DEPRECATED_3_0
30
31typedef unsigned int IDEA_INT;
32
33# define IDEA_ENCRYPT 1
34# define IDEA_DECRYPT 0
35
36typedef struct idea_key_st {
37 IDEA_INT data[9][6];
38} IDEA_KEY_SCHEDULE;
39#endif
40#ifndef OPENSSL_NO_DEPRECATED_3_0
41OSSL_DEPRECATEDIN_3_0 const char *IDEA_options(void);
42OSSL_DEPRECATEDIN_3_0 void IDEA_ecb_encrypt(const unsigned char *in,
43 unsigned char *out,
44 IDEA_KEY_SCHEDULE *ks);
45OSSL_DEPRECATEDIN_3_0 void IDEA_set_encrypt_key(const unsigned char *key,
46 IDEA_KEY_SCHEDULE *ks);
47OSSL_DEPRECATEDIN_3_0 void IDEA_set_decrypt_key(IDEA_KEY_SCHEDULE *ek,
48 IDEA_KEY_SCHEDULE *dk);
49OSSL_DEPRECATEDIN_3_0 void IDEA_cbc_encrypt(const unsigned char *in,
50 unsigned char *out, long length,
51 IDEA_KEY_SCHEDULE *ks,
52 unsigned char *iv, int enc);
53OSSL_DEPRECATEDIN_3_0 void IDEA_cfb64_encrypt(const unsigned char *in,
54 unsigned char *out, long length,
55 IDEA_KEY_SCHEDULE *ks,
56 unsigned char *iv, int *num,
57 int enc);
58OSSL_DEPRECATEDIN_3_0 void IDEA_ofb64_encrypt(const unsigned char *in,
59 unsigned char *out, long length,
60 IDEA_KEY_SCHEDULE *ks,
61 unsigned char *iv, int *num);
62OSSL_DEPRECATEDIN_3_0 void IDEA_encrypt(unsigned long *in,
63 IDEA_KEY_SCHEDULE *ks);
64#endif
65
66# ifndef OPENSSL_NO_DEPRECATED_1_1_0
67# define idea_options IDEA_options
68# define idea_ecb_encrypt IDEA_ecb_encrypt
69# define idea_set_encrypt_key IDEA_set_encrypt_key
70# define idea_set_decrypt_key IDEA_set_decrypt_key
71# define idea_cbc_encrypt IDEA_cbc_encrypt
72# define idea_cfb64_encrypt IDEA_cfb64_encrypt
73# define idea_ofb64_encrypt IDEA_ofb64_encrypt
74# define idea_encrypt IDEA_encrypt
75# endif
76
77# ifdef __cplusplus
78}
79# endif
80# endif
81
82#endif
注意: 瀏覽 TracBrowser 來幫助您使用儲存庫瀏覽器

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette