VirtualBox

source: vbox/trunk/src/libs/openssl-3.1.7/include/internal/sm3.h@ 108351

最後變更 在這個檔案從108351是 104078,由 vboxsync 提交於 12 月 前

openssl-3.1.5: Applied and adjusted our OpenSSL changes to 3.1.4. bugref:10638

檔案大小: 1.3 KB
 
1/*
2 * Copyright 2017-2021 The OpenSSL Project Authors. All Rights Reserved.
3 * Copyright 2017 Ribose Inc. All Rights Reserved.
4 *
5 * Licensed under the Apache License 2.0 (the "License"). You may not use
6 * this file except in compliance with the License. You can obtain a copy
7 * in the file LICENSE in the source distribution or at
8 * https://www.openssl.org/source/license.html
9 */
10
11/* This header can move into provider when legacy support is removed */
12#ifndef OSSL_INTERNAL_SM3_H
13# define OSSL_INTERNAL_SM3_H
14# ifndef RT_WITHOUT_PRAGMA_ONCE /* VBOX */
15# pragma once
16# endif /* VBOX */
17
18# include <openssl/opensslconf.h>
19
20# ifdef OPENSSL_NO_SM3
21# error SM3 is disabled.
22# endif
23
24# define SM3_DIGEST_LENGTH 32
25# define SM3_WORD unsigned int
26
27# define SM3_CBLOCK 64
28# define SM3_LBLOCK (SM3_CBLOCK/4)
29
30typedef struct SM3state_st {
31 SM3_WORD A, B, C, D, E, F, G, H;
32 SM3_WORD Nl, Nh;
33 SM3_WORD data[SM3_LBLOCK];
34 unsigned int num;
35} SM3_CTX;
36
37int ossl_sm3_init(SM3_CTX *c);
38int ossl_sm3_update(SM3_CTX *c, const void *data, size_t len);
39int ossl_sm3_final(unsigned char *md, SM3_CTX *c);
40
41#endif /* OSSL_INTERNAL_SM3_H */
注意: 瀏覽 TracBrowser 來幫助您使用儲存庫瀏覽器

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