HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 626 - 650 of 3043) sorted by null

<<21222324252627282930>>

  /external/chromium_org/third_party/openssl/openssl/crypto/chacha/
chachatest.c 53 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
111 static void hex_decode(unsigned char *out, const char* hex)
120 out[j++] = v;
155 unsigned char *expected, *out_bytes, *zero_bytes, *out, *zeros; local
172 out = misalign(out_bytes);
177 CRYPTO_chacha_20(out, zeros, len, key, nonce, 0);
179 if (memcmp(out, expected, len) != 0)
183 hexdump(out, len);
195 CRYPTO_chacha_20(out, zeros, len - 64, key, nonce, 1);
196 if (memcmp(out, expected + 64, len - 64) != 0
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/des/
des_enc.c 35 * The word 'cryptographic' can be left out if the rouines from the library
50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
82 * for pointing this out. */
175 * for pointing this out. */
296 unsigned char *out; local
302 out=output;
322 l2c(tout0,out);
323 l2c(tout1,out);
337 l2c(tout0,out);
338 l2c(tout1,out);
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/ecdh/
ecdhtest.c 60 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
109 static void *KDF1_SHA1(const void *in, size_t inlen, void *out, size_t *outlen)
116 return SHA1(in, inlen, out);
123 static int test_ecdh_curve(int nid, const char *text, BN_CTX *ctx, BIO *out)
146 BIO_puts(out,"Testing key generation with ");
147 BIO_puts(out,text);
149 BIO_puts(out,"\n");
151 (void)BIO_flush(out);
169 BIO_puts(out," pri 1=");
170 BN_print(out,a->priv_key)
307 BIO *out; local
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/rand/
randfile.c 35 * The word 'cryptographic' can be left out if the rouines from the library
50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
185 FILE *out = NULL; local
214 out = fdopen(fd, "wb");
238 out = vms_fopen(file,"rb+",VMS_OPEN_ATTRS);
239 if (out == NULL)
240 out = vms_fopen(file,"wb",VMS_OPEN_ATTRS);
242 if (out == NULL)
243 out = fopen(file,"wb");
245 if (out == NULL) goto err
    [all...]