Home | History | Annotate | Download | only in openssl

Lines Matching refs:method

30  * Methods are reference counted but |ENGINE|s are not. When creating a method,
38 /* ENGINE_new returns an empty ENGINE that uses the default method for all
47 /* Method accessors.
49 * Method accessors take a method pointer and the size of the structure. The
50 * size allows for ABI compatibility in the case that the method structure is
57 const RSA_METHOD *method,
62 const ECDSA_METHOD *method,
67 /* Generic method functions.
69 * These functions take a void* type but actually operate on all method
72 /* METHOD_ref increments the reference count of |method|. This is a no-op for
74 void METHOD_ref(void *method);
76 /* METHOD_unref decrements the reference count of |method| and frees it if the
79 void METHOD_unref(void *method);
84 /* openssl_method_common_st contains the common part of all method structures.
85 * This must be the first member of all method structures. */