Searched refs:inlen (Results 1 – 2 of 2) sorted by relevance
/busybox-1.35.0/networking/ |
D | tls_rsa.c | 14 #define pkcs1Pad(in, inlen, out, outlen, cryptType, userPtr) \ argument 15 pkcs1Pad(in, inlen, out, outlen, cryptType) 17 int32 pkcs1Pad(unsigned char *in, uint32 inlen, unsigned char *out, in pkcs1Pad() argument 23 randomLen = outlen - 3 - inlen; in pkcs1Pad() 54 memcpy(c, in, inlen); in pkcs1Pad() 59 #define psRsaCrypt(pool, in, inlen, out, outlen, key, type, data) \ argument 60 psRsaCrypt( in, inlen, out, outlen, key, type) 62 int32 psRsaCrypt(psPool_t *pool, const unsigned char *in, uint32 inlen, in psRsaCrypt() argument 79 if (pstm_init_for_read_unsigned_bin(pool, &tmp, inlen + sizeof(pstm_digit)) in psRsaCrypt() 83 if (pstm_read_unsigned_bin(&tmp, (unsigned char *)in, inlen) != PS_SUCCESS){ in psRsaCrypt() [all …]
|
D | tls_rsa.h | 28 #define psRsaEncryptPub(pool, key, in, inlen, out, outlen, data) \ argument 29 psRsaEncryptPub( key, in, inlen, out, outlen) 31 unsigned char *in, uint32 inlen,
|