HomeSort by relevance Sort by last modified time
    Searched full:dsa (Results 1 - 25 of 571) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/boringssl/src/crypto/err/
dsa.errordata 0 DSA,100,BAD_Q_VALUE
2 DSA,101,MISSING_PARAMETERS
3 DSA,102,MODULUS_TOO_LARGE
4 DSA,103,NEED_NEW_SETUP_VALUES
  /external/boringssl/src/crypto/dsa/
CMakeLists.txt 4 dsa
8 dsa.c
dsa.c 60 #include <openssl/dsa.h>
88 DSA *DSA_new(void) {
89 DSA *dsa = (DSA *)OPENSSL_malloc(sizeof(DSA)); local
90 if (dsa == NULL) {
91 OPENSSL_PUT_ERROR(DSA, ERR_R_MALLOC_FAILURE);
95 memset(dsa, 0, sizeof(DSA));
    [all...]
dsa_asn1.c 55 #include <openssl/dsa.h>
76 OPENSSL_PUT_ERROR(DSA, ERR_R_MALLOC_FAILURE);
103 DSA_free((DSA *)*pval);
113 ASN1_SIMPLE(DSA, version, LONG),
114 ASN1_SIMPLE(DSA, p, BIGNUM),
115 ASN1_SIMPLE(DSA, q, BIGNUM),
116 ASN1_SIMPLE(DSA, g, BIGNUM),
117 ASN1_SIMPLE(DSA, pub_key, BIGNUM),
118 ASN1_SIMPLE(DSA, priv_key, BIGNUM)} ASN1_SEQUENCE_END_cb(DSA,
    [all...]
  /cts/tests/tests/util/assets/
removed.jar 
  /libcore/support/src/test/java/tests/resources/
removed.jar 
  /cts/hostsidetests/appsecurity/res/pkgsigverify/
v1-only-with-dsa-sha1-1024.apk 
v1-only-with-dsa-sha1-2048.apk 
v1-only-with-dsa-sha1-3072.apk 
v1-only-with-dsa-sha224-1024.apk 
v1-only-with-dsa-sha224-2048.apk 
v1-only-with-dsa-sha224-3072.apk 
v1-only-with-dsa-sha256-1024.apk 
v1-only-with-dsa-sha256-2048.apk 
v1-only-with-dsa-sha256-3072.apk 
v1-only-with-dsa-sha384-1024.apk 
v1-only-with-dsa-sha384-2048.apk 
v1-only-with-dsa-sha384-3072.apk 
v1-only-with-dsa-sha512-1024.apk 
v1-only-with-dsa-sha512-2048.apk 
v1-only-with-dsa-sha512-3072.apk 
  /external/apache-harmony/support/src/test/resources/tests/resources/
Created_by_1_4.jar 
  /external/boringssl/src/crypto/evp/
p_dsa_asn1.c 61 #include <openssl/dsa.h>
67 #include "../dsa/internal.h"
80 DSA *dsa = NULL; local
92 dsa = d2i_DSAparams(NULL, &pm, pmlen);
93 if (dsa == NULL) {
98 dsa = DSA_new();
99 if (dsa == NULL) {
114 dsa->pub_key = ASN1_INTEGER_to_BN(public_key, NULL);
115 if (dsa->pub_key == NULL)
131 DSA *dsa; local
187 DSA *dsa = NULL; local
307 DSA *dsa; local
421 DSA *dsa; local
452 DSA *dsa; local
    [all...]
  /external/boringssl/src/include/openssl/
dsa.h 74 /* DSA contains functions for signing and verifing with the Digital Signature
80 /* DSA_new returns a new, empty DSA object or NULL on error. */
81 OPENSSL_EXPORT DSA *DSA_new(void);
83 /* DSA_free decrements the reference count of |dsa| and frees it if the
85 OPENSSL_EXPORT void DSA_free(DSA *dsa);
87 /* DSA_up_ref increments the reference count of |dsa|. */
88 OPENSSL_EXPORT int DSA_up_ref(DSA *dsa);
93 /* DSA_generate_parameters_ex generates a set of DSA parameters by followin
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_atom_depth.c 98 struct pipe_depth_stencil_alpha_state *dsa = &st->state.depth_stencil; local
102 memset(dsa, 0, sizeof(*dsa));
106 dsa->depth.enabled = 1;
107 dsa->depth.writemask = ctx->Depth.Mask;
108 dsa->depth.func = st_compare_func_to_pipe(ctx->Depth.Func);
112 dsa->stencil[0].enabled = 1;
113 dsa->stencil[0].func = st_compare_func_to_pipe(ctx->Stencil.Function[0]);
114 dsa->stencil[0].fail_op = gl_stencil_op_to_pipe(ctx->Stencil.FailFunc[0]);
115 dsa->stencil[0].zfail_op = gl_stencil_op_to_pipe(ctx->Stencil.ZFailFunc[0])
    [all...]

Completed in 1430 milliseconds

1 2 3 4 5 6 7 8 91011>>