Lines Matching defs:in
5 * (the "License"); you may not use this file except in compliance with
10 * Unless required by applicable law or agreed to in writing, software
31 #error Crypto support must be enabled in APR
123 session_crypto_dir_conf *dconf, const char *in, char **out)
143 if (!in || !*in) {
154 /* encrypt using the first passphrase in the list */
186 res = apr_crypto_block_encrypt(&encrypt, &encryptlen, (unsigned char *)in,
187 strlen(in), block);
225 session_crypto_dir_conf *dconf, const char *in, char **out)
240 decoded = apr_palloc(r->pool, apr_base64_decode_len(in));
241 decodedlen = apr_base64_decode(decoded, in);
249 /* try each passphrase in turn */
255 /* encrypt using the first passphrase in the list */
399 * Initialise the SSL in the post_config hook.