Lines Matching refs:I
32 EVP_PKEY_get_params() retrieves parameters from the key I<pkey>, according to
33 the contents of I<params>.
36 EVP_PKEY_gettable_params() returns a constant list of I<params> indicating
40 EVP_PKEY_get_int_param() retrieves a key I<pkey> integer value I<*out>
41 associated with a name of I<key_name>.
43 EVP_PKEY_get_size_t_param() retrieves a key I<pkey> size_t value I<*out>
44 associated with a name of I<key_name>.
46 EVP_PKEY_get_bn_param() retrieves a key I<pkey> BIGNUM value I<**bn>
47 associated with a name of I<key_name>. If I<*bn> is NULL then the BIGNUM
50 EVP_PKEY_get_utf8_string_param() get a key I<pkey> UTF8 string value into a
51 buffer I<str> of maximum size I<max_buf_sz> associated with a name of
52 I<key_name>. The maximum size must be large enough to accomodate the string
54 If I<out_len> is not NULL, I<*out_len> is set to the length of the string
56 the terminating NUL byte can be obtained from I<*out_len> by calling the
57 function with I<str> set to NULL.
59 EVP_PKEY_get_octet_string_param() get a key I<pkey>'s octet string value into a
60 buffer I<buf> of maximum size I<max_buf_sz> associated with a name of I<key_name>.
61 If I<out_len> is not NULL, I<*out_len> is set to the length of the contents.
62 The required buffer size can be obtained from I<*out_len> by calling the
63 function with I<buf> set to NULL.
73 All other methods return 1 if a value associated with the key's I<key_name> was
76 EVP_PKEY_get_octet_string_param() if I<max_buf_sz> is not big enough to hold the
77 value. If I<out_len> is not NULL, I<*out_len> will be assigned the required