HomeSort by: relevance | last modified time | path
    Searched defs:in (Results 1 - 25 of 1065) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/crypto/external/apache2/openssl/dist/demos/cms/
cms_uncomp.c 5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
17 BIO *in = NULL, *out = NULL; local
26 in = BIO_new_file("smcomp.txt", "r");
28 if (!in)
32 cms = SMIME_read_CMS(in, NULL);
53 BIO_free(in);
  /src/crypto/external/apache2/openssl/dist/providers/implementations/ciphers/
cipher_aes.c 5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
36 PROV_AES_CTX *in = (PROV_AES_CTX *)ctx; local
45 in->base.hw->copyctx(&ret->base, &in->base);
cipher_aria.c 5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
29 PROV_ARIA_CTX *in = (PROV_ARIA_CTX *)ctx; local
38 in->base.hw->copyctx(&ret->base, &in->base);
cipher_camellia.c 5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
35 PROV_CAMELLIA_CTX *in = (PROV_CAMELLIA_CTX *)ctx; local
44 in->base.hw->copyctx(&ret->base, &in->base);
cipher_idea.c 5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
36 PROV_IDEA_CTX *in = (PROV_IDEA_CTX *)ctx; local
45 *ret = *in;
cipher_seed.c 5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
35 PROV_SEED_CTX *in = (PROV_SEED_CTX *)ctx; local
44 *ret = *in;
cipher_sm4.c 5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
29 PROV_SM4_CTX *in = (PROV_SM4_CTX *)ctx; local
38 in->base.hw->copyctx(&ret->base, &in->base);
  /src/crypto/external/bsd/openssl/dist/demos/cms/
cms_uncomp.c 5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
17 BIO *in = NULL, *out = NULL; local
26 in = BIO_new_file("smcomp.txt", "r");
28 if (!in)
32 cms = SMIME_read_CMS(in, NULL);
55 BIO_free(in);
  /src/crypto/external/bsd/openssl/dist/providers/implementations/ciphers/
cipher_aes.c 5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
36 PROV_AES_CTX *in = (PROV_AES_CTX *)ctx; local
47 in->base.hw->copyctx(&ret->base, &in->base);
cipher_aria.c 5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
29 PROV_ARIA_CTX *in = (PROV_ARIA_CTX *)ctx; local
40 in->base.hw->copyctx(&ret->base, &in->base);
cipher_camellia.c 5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
35 PROV_CAMELLIA_CTX *in = (PROV_CAMELLIA_CTX *)ctx; local
46 in->base.hw->copyctx(&ret->base, &in->base);
cipher_idea.c 5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
36 PROV_IDEA_CTX *in = (PROV_IDEA_CTX *)ctx; local
47 *ret = *in;
cipher_seed.c 5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
35 PROV_SEED_CTX *in = (PROV_SEED_CTX *)ctx; local
46 *ret = *in;
cipher_sm4.c 5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
29 PROV_SM4_CTX *in = (PROV_SM4_CTX *)ctx; local
40 in->base.hw->copyctx(&ret->base, &in->base);
  /src/crypto/external/bsd/openssl.old/dist/demos/cms/
cms_uncomp.c 5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
17 BIO *in = NULL, *out = NULL; local
26 in = BIO_new_file("smcomp.txt", "r");
28 if (!in)
32 cms = SMIME_read_CMS(in, NULL);
55 BIO_free(in);
  /src/external/bsd/wpa/dist/src/crypto/
md5_i.h 15 u8 in[64]; member in struct:MD5Context
  /src/external/lgpl3/mpc/dist/tests/
clear_parameters.c 12 GNU MPC is distributed in the hope that it will be useful, but WITHOUT ANY
70 int in, out; local
80 for (in = params->nbout; in < total; in++)
82 clear_param (&(params->P[in]), params->T[in]);
init_parameters.c 12 GNU MPC is distributed in the hope that it will be useful, but WITHOUT ANY
71 int in, out; local
80 for (in = params->nbout; in < total; in++)
82 init_param (&(params->P[in]), params->T[in]);
  /src/sys/crypto/blowfish/
bf_skey.c 14 * apply to all code found in this distribution, be it the RC4, RSA,
19 * Copyright remains Eric Young's, and as such any Copyright notices in
21 * If this package is used in a product, Eric Young should be given attribution
23 * This can be in the form of a textual message at program startup or
24 * in documentation (online or textual) provided with the package.
26 * Redistribution and use in source and binary forms, with or without
31 * 2. Redistributions in binary form must reproduce the above copyright
32 * notice, this list of conditions and the following disclaimer in the
47 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
51 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRIC
80 BF_LONG *p, ri, in[2]; local
    [all...]
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_stream/salsa2012/ref/
stream_salsa2012_ref.c 17 unsigned char in[16]; local
30 in[i] = n[i];
33 in[i] = 0;
36 crypto_core_salsa2012(c, in, kcopy, NULL);
39 u += (unsigned int)in[i];
40 in[i] = u;
47 crypto_core_salsa2012(block, in, kcopy, NULL);
63 unsigned char in[16]; local
76 in[i] = n[i];
79 in[i] = 0
    [all...]
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_stream/salsa208/ref/
stream_salsa208_ref.c 17 unsigned char in[16]; local
30 in[i] = n[i];
33 in[i] = 0;
36 crypto_core_salsa208(c, in, kcopy, NULL);
39 u += (unsigned int)in[i];
40 in[i] = u;
47 crypto_core_salsa208(block, in, kcopy, NULL);
63 unsigned char in[16]; local
76 in[i] = n[i];
79 in[i] = 0
    [all...]
  /src/sys/external/isc/libsodium/dist/test/default/
core4.c 10 static unsigned char in[16] = { 101, 102, 103, 104, 105, 106, 107, 108, variable
23 crypto_core_salsa20(out, in, k, c);
core5.c 10 static unsigned char in[16] = { variable
25 crypto_core_hsalsa20(out, in, k, c);
  /src/usr.sbin/bootp/common/
trylook.c 13 #include <netinet/in.h>
29 struct in_addr in; local
41 if (lookup_ipa(argv[i], &in.s_addr))
44 a = inet_ntoa(in);
  /src/crypto/external/apache2/openssl/dist/crypto/bf/
bf_skey.c 5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
25 BF_LONG *p, ri, in[2]; local
59 in[0] = 0L;
60 in[1] = 0L;
62 BF_encrypt(in, key);
63 p[i] = in[0];
64 p[i + 1] = in[1];
69 BF_encrypt(in, key)
    [all...]

Completed in 22 milliseconds

1 2 3 4 5 6 7 8 91011>>