Searched refs:ps (Results 1 – 15 of 15) sorted by relevance
/openssl-master/crypto/property/ |
A D | property_string.c | 57 OPENSSL_free(ps); in property_free() 123 PROPERTY_STRING *ps = OPENSSL_malloc(sizeof(*ps) + l); in new_property_string() local 125 if (ps != NULL) { in new_property_string() 126 memcpy(ps->body, s, l + 1); in new_property_string() 127 ps->s = ps->body; in new_property_string() 128 ps->idx = ++*pidx; in new_property_string() 129 if (ps->idx == 0) { in new_property_string() 130 OPENSSL_free(ps); in new_property_string() 134 return ps; in new_property_string() 164 ps = ps_new; in ossl_property_string() [all …]
|
/openssl-master/ |
A D | appveyor.yml | 28 - ps: >- 30 - ps: >- 32 - ps: >- 40 - ps: >- 54 - ps: >- 60 - ps: >- 71 - ps: >- 77 - ps: >-
|
A D | CHANGES.md | 14578 <http://theory.stanford.edu/~dabo/papers/faults.ps.gz>).
|
/openssl-master/crypto/crmf/ |
A D | crmf_lib.c | 367 static int create_popo_signature(OSSL_CRMF_POPOSIGNINGKEY *ps, in create_popo_signature() argument 372 if (ps == NULL || cr == NULL || pkey == NULL) { in create_popo_signature() 376 if (ps->poposkInput != NULL) { in create_popo_signature() 383 ps->algorithmIdentifier, NULL, ps->signature, cr, in create_popo_signature() 414 OSSL_CRMF_POPOSIGNINGKEY *ps = OSSL_CRMF_POPOSIGNINGKEY_new(); in OSSL_CRMF_MSG_create_popo() local 416 if (ps == NULL) in OSSL_CRMF_MSG_create_popo() 418 if (!create_popo_signature(ps, crm->certReq, pkey, digest, in OSSL_CRMF_MSG_create_popo() 420 OSSL_CRMF_POPOSIGNINGKEY_free(ps); in OSSL_CRMF_MSG_create_popo() 423 pp->value.signature = ps; in OSSL_CRMF_MSG_create_popo()
|
/openssl-master/crypto/dsa/ |
A D | dsa_sign.c | 135 void DSA_SIG_get0(const DSA_SIG *sig, const BIGNUM **pr, const BIGNUM **ps) in DSA_SIG_get0() argument 139 if (ps != NULL) in DSA_SIG_get0() 140 *ps = sig->s; in DSA_SIG_get0()
|
/openssl-master/crypto/ui/ |
A D | ui_openssl.c | 278 static int ps; in read_string_inner() local 288 ps = 0; in read_string_inner() 291 ps = 1; in read_string_inner() 295 ps = 2; in read_string_inner() 359 if (ps >= 2 && !echo && !echo_console(ui)) in read_string_inner() 362 if (ps >= 1) in read_string_inner()
|
/openssl-master/test/ |
A D | property_test.c | 160 const char *ps; member 185 const char *ps; in test_property_parse_error() local 190 ps = parse_error_tests[n].ps; in test_property_parse_error() 192 if (!TEST_ptr_null(p = ossl_parse_query(NULL, ps, 1))) in test_property_parse_error() 194 } else if (!TEST_ptr_null(p = ossl_parse_property(NULL, ps))) { in test_property_parse_error()
|
A D | testdsapub.pem | 2 MIIBuDCCASwGByqGSM44BAEwggEfAoGBAP0qjYTPLaYp45XigmyPLxV6z0C/ps++
|
/openssl-master/doc/man1/ |
A D | openssl-passphrase-options.pod | 38 to utilities (like 'ps' under Unix) this form should only be used 45 (e.g. ps under certain Unix OSes) this option should be used with caution.
|
A D | openssl-ca.pod.in | 182 =for openssl foreign manual ps(1) 186 L<ps(1)> on Unix),
|
/openssl-master/doc/man3/ |
A D | ECDSA_SIG_new.pod | 17 void ECDSA_SIG_get0(const ECDSA_SIG *sig, const BIGNUM **pr, const BIGNUM **ps); 57 in I<sig> and stores them in I<*pr> and I<*ps>, respectively. 58 The pointer I<pr> or I<ps> can be NULL, in which case the corresponding value
|
A D | DSA_SIG_new.pod | 14 void DSA_SIG_get0(const DSA_SIG *sig, const BIGNUM **pr, const BIGNUM **ps);
|
/openssl-master/include/openssl/ |
A D | dsa.h | 65 void DSA_SIG_get0(const DSA_SIG *sig, const BIGNUM **pr, const BIGNUM **ps);
|
A D | ec.h | 1336 void ECDSA_SIG_get0(const ECDSA_SIG *sig, const BIGNUM **pr, const BIGNUM **ps);
|
/openssl-master/crypto/ec/ |
A D | ec_asn1.c | 1278 void ECDSA_SIG_get0(const ECDSA_SIG *sig, const BIGNUM **pr, const BIGNUM **ps) in ECDSA_SIG_get0() argument 1282 if (ps != NULL) in ECDSA_SIG_get0() 1283 *ps = sig->s; in ECDSA_SIG_get0()
|
Completed in 43 milliseconds