HomeSort by relevance Sort by last modified time
    Searched defs:DSA_SIG (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/third_party/boringssl/src/include/openssl/
dsa.h 133 /* DSA_SIG contains a DSA signature as a pair of integers. */
136 } DSA_SIG;
140 OPENSSL_EXPORT DSA_SIG *DSA_SIG_new(void);
143 OPENSSL_EXPORT void DSA_SIG_free(DSA_SIG *sig);
146 * and returns an allocated, DSA_SIG structure, or NULL on error. */
147 OPENSSL_EXPORT DSA_SIG *DSA_do_sign(const uint8_t *digest, size_t digest_len,
161 DSA_SIG *sig, const DSA *dsa);
170 size_t digest_len, DSA_SIG *sig,
226 * written directly into |*out_sig|, otherwise a fresh |DSA_SIG| is allocated.
229 OPENSSL_EXPORT DSA_SIG *d2i_DSA_SIG(DSA_SIG **out_sig, const uint8_t **inp
    [all...]
  /external/openssl/crypto/dsa/
dsa.h 131 } DSA_SIG;
136 DSA_SIG * (*dsa_do_sign)(const unsigned char *dgst, int dlen, DSA *dsa);
141 DSA_SIG *sig, DSA *dsa);
197 DSA_SIG * DSA_SIG_new(void);
198 void DSA_SIG_free(DSA_SIG *a);
199 int i2d_DSA_SIG(const DSA_SIG *a, unsigned char **pp);
200 DSA_SIG * d2i_DSA_SIG(DSA_SIG **v, const unsigned char **pp, long length);
202 DSA_SIG * DSA_do_sign(const unsigned char *dgst,int dlen,DSA *dsa);
204 DSA_SIG *sig,DSA *dsa)
    [all...]
  /external/openssl/include/openssl/
dsa.h 131 } DSA_SIG;
136 DSA_SIG * (*dsa_do_sign)(const unsigned char *dgst, int dlen, DSA *dsa);
141 DSA_SIG *sig, DSA *dsa);
197 DSA_SIG * DSA_SIG_new(void);
198 void DSA_SIG_free(DSA_SIG *a);
199 int i2d_DSA_SIG(const DSA_SIG *a, unsigned char **pp);
200 DSA_SIG * d2i_DSA_SIG(DSA_SIG **v, const unsigned char **pp, long length);
202 DSA_SIG * DSA_do_sign(const unsigned char *dgst,int dlen,DSA *dsa);
204 DSA_SIG *sig,DSA *dsa)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/data/
infinite_recursion.py 573 DSA_SIG = DSA_SIG_st
578 ('dsa_do_sign', CFUNCTYPE(POINTER(DSA_SIG), POINTER(c_ubyte), c_int, POINTER(DSA))),
580 ('dsa_do_verify', CFUNCTYPE(c_int, POINTER(c_ubyte), c_int, POINTER(DSA_SIG), POINTER(DSA))),
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/data/
infinite_recursion.py 573 DSA_SIG = DSA_SIG_st
578 ('dsa_do_sign', CFUNCTYPE(POINTER(DSA_SIG), POINTER(c_ubyte), c_int, POINTER(DSA))),
580 ('dsa_do_verify', CFUNCTYPE(c_int, POINTER(c_ubyte), c_int, POINTER(DSA_SIG), POINTER(DSA))),
    [all...]

Completed in 1166 milliseconds