# evp(7) - man - phpMan

[EVP(7SSL)](https://www.chedong.com/phpMan.php/man/EVP/7SSL/markdown)                                      OpenSSL                                     [EVP(7SSL)](https://www.chedong.com/phpMan.php/man/EVP/7SSL/markdown)



## NAME
       evp - high-level cryptographic functions

## SYNOPSIS
        #include <openssl/evp.h>

## DESCRIPTION
       The EVP library provides a high-level interface to cryptographic functions.

       The **EVP**___**Seal**_XXX_ and **EVP**___**Open**_XXX_ functions provide public key encryption and decryption to
       implement digital "envelopes".

       The **EVP**___**DigestSign**_XXX_ and **EVP**___**DigestVerify**_XXX_ functions implement digital signatures and
       Message Authentication Codes (MACs). Also see the older **EVP**___**Sign**_XXX_ and **EVP**___**Verify**_XXX_
       functions.

       Symmetric encryption is available with the **EVP**___**Encrypt**_XXX_ functions.  The **EVP**___**Digest**_XXX_
       functions provide message digests.

       The **EVP**___**PKEY**_XXX_ functions provide a high-level interface to asymmetric algorithms. To create
       a new EVP_PKEY see **EVP**___**PKEY**___**[new**(3)](https://www.chedong.com/phpMan.php/man/new/3/markdown). EVP_PKEYs can be associated with a private key of a
       particular algorithm by using the functions described on the **EVP**___**PKEY**___**[fromdata**(3)](https://www.chedong.com/phpMan.php/man/fromdata/3/markdown) page, or
       new keys can be generated using **EVP**___**PKEY**___**[keygen**(3)](https://www.chedong.com/phpMan.php/man/keygen/3/markdown).  EVP_PKEYs can be compared using
       **EVP**___**PKEY**___**[eq**(3)](https://www.chedong.com/phpMan.php/man/eq/3/markdown), or printed using **EVP**___**PKEY**___**print**___**[private**(3)](https://www.chedong.com/phpMan.php/man/private/3/markdown). **EVP**___**PKEY**___**[todata**(3)](https://www.chedong.com/phpMan.php/man/todata/3/markdown) can be used to
       convert a key back into an **OSSL**___**[PARAM**(3)](https://www.chedong.com/phpMan.php/man/PARAM/3/markdown) array.

       The EVP_PKEY functions support the full range of asymmetric algorithm operations:

       For key agreement see **EVP**___**PKEY**___**[derive**(3)](https://www.chedong.com/phpMan.php/man/derive/3/markdown)
       For signing and verifying see **EVP**___**PKEY**___**[sign**(3)](https://www.chedong.com/phpMan.php/man/sign/3/markdown), **EVP**___**PKEY**___**[verify**(3)](https://www.chedong.com/phpMan.php/man/verify/3/markdown) and
       **EVP**___**PKEY**___**verify**___**[recover**(3)](https://www.chedong.com/phpMan.php/man/recover/3/markdown). However, note that these functions do not perform a digest of the
       data to be signed. Therefore, normally you would use the **EVP**___**[DigestSignInit**(3)](https://www.chedong.com/phpMan.php/man/DigestSignInit/3/markdown) functions for
       this purpose.
       For encryption and decryption see **EVP**___**PKEY**___**[encrypt**(3)](https://www.chedong.com/phpMan.php/man/encrypt/3/markdown) and **EVP**___**PKEY**___**[decrypt**(3)](https://www.chedong.com/phpMan.php/man/decrypt/3/markdown) respectively.
       However, note that these functions perform encryption and decryption only. As public key
       encryption is an expensive operation, normally you would wrap an encrypted message in a
       "digital envelope" using the **EVP**___**[SealInit**(3)](https://www.chedong.com/phpMan.php/man/SealInit/3/markdown) and **EVP**___**[OpenInit**(3)](https://www.chedong.com/phpMan.php/man/OpenInit/3/markdown) functions.

       The **EVP**___**[BytesToKey**(3)](https://www.chedong.com/phpMan.php/man/BytesToKey/3/markdown) function provides some limited support for password based encryption.
       Careful selection of the parameters will provide a PKCS#5 PBKDF1 compatible implementation.
       However, new applications should not typically use this (preferring, for example, PBKDF2 from
       PCKS#5).

       The **EVP**___**Encode**_XXX_ and **EVP**___**Decode**_XXX_ functions implement base 64 encoding and decoding.

       All the symmetric algorithms (ciphers), digests and asymmetric algorithms (public key
       algorithms) can be replaced by ENGINE modules providing alternative implementations. If
       ENGINE implementations of ciphers or digests are registered as defaults, then the various EVP
       functions will automatically use those implementations automatically in preference to built
       in software implementations. For more information, consult the [**engine**(3)](https://www.chedong.com/phpMan.php/man/engine/3/markdown) man page.

       Although low-level algorithm specific functions exist for many algorithms their use is
       discouraged. They cannot be used with an ENGINE and ENGINE versions of new algorithms cannot
       be accessed using the low-level functions.  Also makes code harder to adapt to new algorithms
       and some options are not cleanly supported at the low-level and some operations are more
       efficient using the high-level interface.

## SEE ALSO
       **EVP**___**[DigestInit**(3)](https://www.chedong.com/phpMan.php/man/DigestInit/3/markdown), **EVP**___**[EncryptInit**(3)](https://www.chedong.com/phpMan.php/man/EncryptInit/3/markdown), **EVP**___**[OpenInit**(3)](https://www.chedong.com/phpMan.php/man/OpenInit/3/markdown), **EVP**___**[SealInit**(3)](https://www.chedong.com/phpMan.php/man/SealInit/3/markdown),
       **EVP**___**[DigestSignInit**(3)](https://www.chedong.com/phpMan.php/man/DigestSignInit/3/markdown), **EVP**___**[SignInit**(3)](https://www.chedong.com/phpMan.php/man/SignInit/3/markdown), **EVP**___**[VerifyInit**(3)](https://www.chedong.com/phpMan.php/man/VerifyInit/3/markdown), **EVP**___**[EncodeInit**(3)](https://www.chedong.com/phpMan.php/man/EncodeInit/3/markdown),
       **EVP**___**PKEY**___**[new**(3)](https://www.chedong.com/phpMan.php/man/new/3/markdown), **EVP**___**PKEY**___**[fromdata**(3)](https://www.chedong.com/phpMan.php/man/fromdata/3/markdown), **EVP**___**PKEY**___**[todata**(3)](https://www.chedong.com/phpMan.php/man/todata/3/markdown), **EVP**___**PKEY**___**[keygen**(3)](https://www.chedong.com/phpMan.php/man/keygen/3/markdown),
       **EVP**___**PKEY**___**print**___**[private**(3)](https://www.chedong.com/phpMan.php/man/private/3/markdown), **EVP**___**PKEY**___**[decrypt**(3)](https://www.chedong.com/phpMan.php/man/decrypt/3/markdown), **EVP**___**PKEY**___**[encrypt**(3)](https://www.chedong.com/phpMan.php/man/encrypt/3/markdown), **EVP**___**PKEY**___**[sign**(3)](https://www.chedong.com/phpMan.php/man/sign/3/markdown),
       **EVP**___**PKEY**___**[verify**(3)](https://www.chedong.com/phpMan.php/man/verify/3/markdown), **EVP**___**PKEY**___**verify**___**[recover**(3)](https://www.chedong.com/phpMan.php/man/recover/3/markdown), **EVP**___**PKEY**___**[derive**(3)](https://www.chedong.com/phpMan.php/man/derive/3/markdown), **EVP**___**[BytesToKey**(3)](https://www.chedong.com/phpMan.php/man/BytesToKey/3/markdown),
       **ENGINE**___**by**___**[id**(3)](https://www.chedong.com/phpMan.php/man/id/3/markdown)

## COPYRIGHT
       Copyright 2000-2021 The OpenSSL Project Authors. All Rights Reserved.

       Licensed under the Apache License 2.0 (the "License").  You may not use this file except in
       compliance with the License.  You can obtain a copy in the file LICENSE in the source
       distribution or at <<https://www.openssl.org/source/license.html>>.



3.0.2                                        2026-04-07                                    [EVP(7SSL)](https://www.chedong.com/phpMan.php/man/EVP/7SSL/markdown)
