Lines Matching refs:I

34 EVP_PKEY_get_params() retrieves parameters from the key I<pkey>, according to
35 the contents of I<params>.
37 EVP_PKEY_gettable_params() returns a constant list of I<params> indicating
49 EVP_PKEY_get_int_param() retrieves a key I<pkey> integer value I<*out>
50 associated with a name of I<key_name> if it fits into C<int> type. For
53 EVP_PKEY_get_size_t_param() retrieves a key I<pkey> size_t value I<*out>
54 associated with a name of I<key_name> if it fits into C<size_t> type. For
57 EVP_PKEY_get_bn_param() retrieves a key I<pkey> BIGNUM value I<**bn>
58 associated with a name of I<key_name>. If I<*bn> is NULL then the BIGNUM
61 EVP_PKEY_get_utf8_string_param() get a key I<pkey> UTF8 string value into a
62 buffer I<str> of maximum size I<max_buf_sz> associated with a name of
63 I<key_name>. The maximum size must be large enough to accommodate the string
65 If I<out_len> is not NULL, I<*out_len> is set to the length of the string
67 the terminating NUL byte can be obtained from I<*out_len> by calling the
68 function with I<str> set to NULL.
70 EVP_PKEY_get_octet_string_param() get a key I<pkey>'s octet string value into a
71 buffer I<buf> of maximum size I<max_buf_sz> associated with a name of I<key_name>.
72 If I<out_len> is not NULL, I<*out_len> is set to the length of the contents.
73 The required buffer size can be obtained from I<*out_len> by calling the
74 function with I<buf> set to NULL.
84 All other methods return 1 if a value associated with the key's I<key_name> was
87 EVP_PKEY_get_octet_string_param() if I<max_buf_sz> is not big enough to hold the
88 value. If I<out_len> is not NULL, I<*out_len> will be assigned the required