VirtualBox

Ignore:
Timestamp:
Mar 3, 2022 7:17:34 PM (3 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
150325
Message:

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

Location:
trunk/src/libs/openssl-3.0.1
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/libs/openssl-3.0.1

    • Property svn:mergeinfo
      •  

        old new  
        1212/vendor/openssl/1.1.1c:131722-131725
        1313/vendor/openssl/1.1.1k:145841-145843
         14/vendor/openssl/3.0.1:150323-150324
         15/vendor/openssl/current:147554-150322
  • trunk/src/libs/openssl-3.0.1/include/openssl/cmac.h

    r91772 r94082  
    11/*
    2  * Copyright 2010-2016 The OpenSSL Project Authors. All Rights Reserved.
     2 * Copyright 2010-2020 The OpenSSL Project Authors. All Rights Reserved.
    33 *
    4  * Licensed under the OpenSSL license (the "License").  You may not use
     4 * Licensed under the Apache License 2.0 (the "License").  You may not use
    55 * this file except in compliance with the License.  You can obtain a copy
    66 * in the file LICENSE in the source distribution or at
     
    88 */
    99
    10 #ifndef HEADER_CMAC_H
    11 # define HEADER_CMAC_H
     10#ifndef OPENSSL_CMAC_H
     11# define OPENSSL_CMAC_H
     12# pragma once
     13
     14# include <openssl/macros.h>
     15# ifndef OPENSSL_NO_DEPRECATED_3_0
     16#  define HEADER_CMAC_H
     17# endif
    1218
    1319# ifndef OPENSSL_NO_CMAC
    1420
    15 #ifdef __cplusplus
     21#  ifdef __cplusplus
    1622extern "C" {
    17 #endif
     23#  endif
    1824
    19 # include <openssl/evp.h>
     25#  include <openssl/evp.h>
    2026
     27#  ifndef OPENSSL_NO_DEPRECATED_3_0
    2128/* Opaque */
    2229typedef struct CMAC_CTX_st CMAC_CTX;
     30#  endif
     31#  ifndef OPENSSL_NO_DEPRECATED_3_0
     32OSSL_DEPRECATEDIN_3_0 CMAC_CTX *CMAC_CTX_new(void);
     33OSSL_DEPRECATEDIN_3_0 void CMAC_CTX_cleanup(CMAC_CTX *ctx);
     34OSSL_DEPRECATEDIN_3_0 void CMAC_CTX_free(CMAC_CTX *ctx);
     35OSSL_DEPRECATEDIN_3_0 EVP_CIPHER_CTX *CMAC_CTX_get0_cipher_ctx(CMAC_CTX *ctx);
     36OSSL_DEPRECATEDIN_3_0 int CMAC_CTX_copy(CMAC_CTX *out, const CMAC_CTX *in);
     37OSSL_DEPRECATEDIN_3_0 int CMAC_Init(CMAC_CTX *ctx,
     38                                    const void *key, size_t keylen,
     39                                    const EVP_CIPHER *cipher, ENGINE *impl);
     40OSSL_DEPRECATEDIN_3_0 int CMAC_Update(CMAC_CTX *ctx,
     41                                      const void *data, size_t dlen);
     42OSSL_DEPRECATEDIN_3_0 int CMAC_Final(CMAC_CTX *ctx,
     43                                     unsigned char *out, size_t *poutlen);
     44OSSL_DEPRECATEDIN_3_0 int CMAC_resume(CMAC_CTX *ctx);
     45#  endif
    2346
    24 CMAC_CTX *CMAC_CTX_new(void);
    25 void CMAC_CTX_cleanup(CMAC_CTX *ctx);
    26 void CMAC_CTX_free(CMAC_CTX *ctx);
    27 EVP_CIPHER_CTX *CMAC_CTX_get0_cipher_ctx(CMAC_CTX *ctx);
    28 int CMAC_CTX_copy(CMAC_CTX *out, const CMAC_CTX *in);
    29 
    30 int CMAC_Init(CMAC_CTX *ctx, const void *key, size_t keylen,
    31               const EVP_CIPHER *cipher, ENGINE *impl);
    32 int CMAC_Update(CMAC_CTX *ctx, const void *data, size_t dlen);
    33 int CMAC_Final(CMAC_CTX *ctx, unsigned char *out, size_t *poutlen);
    34 int CMAC_resume(CMAC_CTX *ctx);
    35 
    36 #ifdef  __cplusplus
     47#  ifdef  __cplusplus
    3748}
    38 #endif
     49#  endif
    3950
    4051# endif
Note: See TracChangeset for help on using the changeset viewer.

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