Lines Matching +full:1 +full:- +full:eng
6 EVP_PKEY_decrypt - decrypt using a public key algorithm
50 return 1 for success and 0 or a negative value for failure. In particular a
51 return value of -2 indicates the operation is not supported by the public key
56 In OpenSSL versions before 3.2.0, when used in PKCS#1 v1.5 padding,
59 used private key. They had to be processed in a side-channel free way.
61 Since version 3.2.0, the EVP_PKEY_decrypt() method when used with PKCS#1
64 B<OSSL_ASYM_CIPHER_PARAM_IMPLICIT_REJECTION> in L<provider-asym_cipher(7)>).
66 instead it returns a pseudo-randomly generated message, removing the need
67 of side-channel secure code from applications using OpenSSL.
70 using side-channel free code.
71 Side-channel free handling of the error stack can be performed using
83 ENGINE *eng;
89 * NB: assumes key, eng, in, inlen are already set up
92 ctx = EVP_PKEY_CTX_new(key, eng);
129 Copyright 2006-2025 The OpenSSL Project Authors. All Rights Reserved.