Searched refs:ppin (Results 1 – 8 of 8) sorted by relevance
| /freebsd/crypto/openssl/crypto/ |
| H A D | asn1_dsa.c | 235 const unsigned char **ppin, size_t len) in ossl_decode_der_dsa_sig() argument 241 if (!PACKET_buf_init(&pkt, *ppin, len) in ossl_decode_der_dsa_sig() 250 consumed = PACKET_data(&pkt) - *ppin; in ossl_decode_der_dsa_sig() 251 *ppin += consumed; in ossl_decode_der_dsa_sig()
|
| /freebsd/contrib/libfido2/src/ |
| H A D | pin.c | 70 pad64(const char *pin, fido_blob_t **ppin) in pad64() argument 81 if ((*ppin = fido_blob_new()) == NULL) in pad64() 86 ((*ppin)->ptr = calloc(1, ppin_len)) == NULL) { in pad64() 87 fido_blob_free(ppin); in pad64() 91 memcpy((*ppin)->ptr, pin, pin_len); in pad64() 92 (*ppin)->len = ppin_len; in pad64() 101 fido_blob_t *ppin = NULL; in pin_pad64_enc() local 104 if ((r = pad64(pin, &ppin)) != FIDO_OK) { in pin_pad64_enc() 114 if (aes256_cbc_enc(dev, shared, ppin, *out) < 0) { in pin_pad64_enc() 122 fido_blob_free(&ppin); in pin_pad64_enc()
|
| /freebsd/crypto/openssl/doc/man3/ |
| H A D | d2i_RSAPrivateKey.pod | 75 TYPE *d2i_TYPEPrivateKey(TYPE **a, const unsigned char **ppin, long length); 78 TYPE *d2i_TYPEPublicKey(TYPE **a, const unsigned char **ppin, long length); 81 TYPE *d2i_TYPEparams(TYPE **a, const unsigned char **ppin, long length); 84 TYPE *d2i_TYPE_PUBKEY(TYPE **a, const unsigned char **ppin, long length); 121 The function parameters I<ppin> and I<ppout> are generally either both named 265 The ways that I<*ppin> and I<*ppout> are incremented after the operation
|
| H A D | d2i_X509.pod | 451 TYPE *d2i_TYPE(TYPE **a, const unsigned char **ppin, long length); 466 The function parameters I<ppin> and I<ppout> are generally 474 B<d2i_I<TYPE>>() attempts to decode I<len> bytes at I<*ppin>. If successful a 475 pointer to the B<I<TYPE>> structure is returned and I<*ppin> is incremented to 534 The ways that I<*ppin> and I<*ppout> are incremented after the operation
|
| /freebsd/crypto/openssl/include/crypto/ |
| H A D | asn1_dsa.h | 21 size_t ossl_decode_der_dsa_sig(BIGNUM *r, BIGNUM *s, const unsigned char **ppin,
|
| /freebsd/crypto/openssl/crypto/dsa/ |
| H A D | dsa_sign.c | 50 DSA_SIG *d2i_DSA_SIG(DSA_SIG **psig, const unsigned char **ppin, long len) in d2i_DSA_SIG() argument 68 || ossl_decode_der_dsa_sig(sig->r, sig->s, ppin, (size_t)len) == 0) { in d2i_DSA_SIG()
|
| /freebsd/sys/dev/gpio/ |
| H A D | gpiobus.c | 154 gpio_pin_get_by_bus_pinnum(device_t busdev, uint32_t pinnum, gpio_pin_t *ppin) in gpio_pin_get_by_bus_pinnum() argument 169 *ppin = pin; in gpio_pin_get_by_bus_pinnum() 174 gpio_pin_get_by_child_index(device_t childdev, uint32_t idx, gpio_pin_t *ppin) in gpio_pin_get_by_child_index() argument 183 devi->pins[idx], ppin)); in gpio_pin_get_by_child_index()
|
| /freebsd/crypto/openssl/crypto/ec/ |
| H A D | ec_asn1.c | 1199 ECDSA_SIG *d2i_ECDSA_SIG(ECDSA_SIG **psig, const unsigned char **ppin, long len) in d2i_ECDSA_SIG() argument 1217 || ossl_decode_der_dsa_sig(sig->r, sig->s, ppin, (size_t)len) == 0) { in d2i_ECDSA_SIG()
|