HomeSort by: relevance | last modified time | path
    Searched defs:unencoded_m_buf (Results 1 - 2 of 2) sorted by relevancy

  /src/crypto/external/bsd/netpgp/dist/src/lib/
create.c 954 uint8_t *unencoded_m_buf; local
965 /* allocate unencoded_m_buf here */
969 unencoded_m_buf = calloc(1, cipherinfo.keysize + 1 + 2);
970 if (unencoded_m_buf == NULL) {
990 free(unencoded_m_buf);
996 free(unencoded_m_buf);
1003 free(unencoded_m_buf);
1022 free(unencoded_m_buf);
1036 if (create_unencoded_m_buf(sesskey, &cipherinfo, &unencoded_m_buf[0]) == 0) {
1037 free(unencoded_m_buf);
    [all...]
packet-parse.c 2779 uint8_t unencoded_m_buf[1024]; local
2853 n = pgp_decrypt_decode_mpi(unencoded_m_buf,
2854 (unsigned)sizeof(unencoded_m_buf), g_to_k, enc_m, secret);
2862 pkt.u.pk_sesskey.symm_alg = (pgp_symm_alg_t)unencoded_m_buf[0];
2891 (void) memcpy(pkt.u.pk_sesskey.key, unencoded_m_buf + 1, k);
2896 pkt.u.pk_sesskey.checksum = unencoded_m_buf[k + 1] +
2897 (unencoded_m_buf[k + 2] << 8);
2900 unencoded_m_buf[k + 1], unencoded_m_buf[k + 2]);
2905 if (unencoded_m_buf[k + 1] != cs[0] |
    [all...]

Completed in 15 milliseconds