Lines Matching refs:malg
275 ssize_t i_stream_decrypt_key(struct decrypt_istream *stream, const char *malg, unsigned int rounds,
393 malg, rounds, temp_key, 32+16, &error)) {
439 const struct hash_method *hash = hash_method_lookup(t_str_lcase(malg));
442 io_stream_set_error(&stream->istream.iostream, "Decryption error: unsupported hash algorithm: %s", malg);
486 const char *malg;
487 if (!i_stream_decrypt_der(&data, end, &malg))
489 if (malg == NULL || !dcrypt_ctx_hmac_create(malg, &stream->ctx_mac, NULL)) {
490 io_stream_set_error(&stream->istream.iostream, "Decryption error: unsupported/invalid MAC algorithm: %s", malg);
519 if ((ret = i_stream_decrypt_key(stream, malg, rounds, data, end, keydata, kl)) <= 0)