diff options
Diffstat (limited to 'crypto/evp/p_lib.c')
| -rw-r--r-- | crypto/evp/p_lib.c | 7 | 
1 files changed, 6 insertions, 1 deletions
| diff --git a/crypto/evp/p_lib.c b/crypto/evp/p_lib.c index 148df90f84b1..3cd7ca8d54ca 100644 --- a/crypto/evp/p_lib.c +++ b/crypto/evp/p_lib.c @@ -1,5 +1,5 @@  /* - * Copyright 1995-2018 The OpenSSL Project Authors. All Rights Reserved. + * Copyright 1995-2019 The OpenSSL Project Authors. All Rights Reserved.   *   * Licensed under the OpenSSL license (the "License").  You may not use   * this file except in compliance with the License.  You can obtain a copy @@ -394,6 +394,11 @@ int EVP_PKEY_set1_engine(EVP_PKEY *pkey, ENGINE *e)      pkey->pmeth_engine = e;      return 1;  } + +ENGINE *EVP_PKEY_get0_engine(const EVP_PKEY *pkey) +{ +    return pkey->engine; +}  #endif  int EVP_PKEY_assign(EVP_PKEY *pkey, int type, void *key)  { | 
