Lines Matching refs:I

85 EVP_PKEY_up_ref() increments the reference count of I<key>.
87 EVP_PKEY_dup() duplicates the I<key>. The I<key> must not be ENGINE based or
90 EVP_PKEY_free() decrements the reference count of I<key> and, if the reference
91 count is zero, frees it up. If I<key> is NULL, nothing is done.
95 the library context I<libctx> and the property query string I<propq>. The
96 I<keytype> argument indicates what kind of key this is. The value should be a
98 "X25519", "ED25519", "X448" or "ED448". I<key> points to the raw private key
99 data for this B<EVP_PKEY> which should be of length I<keylen>. The length
106 default property query are used instead. If I<e> is non-NULL then the new
107 B<EVP_PKEY> structure is associated with the engine I<e>. The I<type> argument
119 EVP_PKEY_new_raw_private_key_ex() except that I<key> points to the raw
125 EVP_PKEY_new_raw_private_key() except that I<key> points to the raw public key
133 EVP_PKEY_get_raw_private_key() fills the buffer provided by I<priv> with raw
134 private key data. The size of the I<priv> buffer should be in I<*len> on entry
135 to the function, and on exit I<*len> is updated with the number of bytes
136 actually written. If the buffer I<priv> is NULL then I<*len> is populated with
143 EVP_PKEY_get_raw_public_key() fills the buffer provided by I<pub> with raw
144 public key data. The size of the I<pub> buffer should be in I<*len> on entry
145 to the function, and on exit I<*len> is updated with the number of bytes
146 actually written. If the buffer I<pub> is NULL then I<*len> is populated with