Searched defs:out (Results 126 - 150 of 2458) sorted by relevance

1234567891011>>

/external/openssl/apps/
H A Derrstr.c35 * The word 'cryptographic' can be left out if the rouines from the library
89 BIO *out=NULL; local
91 out=BIO_new(BIO_s_file());
92 if ((out != NULL) && BIO_set_fp(out,stdout,BIO_NOCLOSE))
97 out = BIO_push(tmpbio, out);
101 ERR_get_string_table(), out); local
103 out); local
105 ERR_get_string_table(),out); local
[all...]
/external/openssl/crypto/aes/
H A Daes_cfb.c60 void AES_cfb128_encrypt(const unsigned char *in, unsigned char *out, argument
64 CRYPTO_cfb128_encrypt(in,out,length,key,ivec,num,enc,(block128_f)AES_encrypt);
68 void AES_cfb1_encrypt(const unsigned char *in, unsigned char *out, argument
72 CRYPTO_cfb128_1_encrypt(in,out,length,key,ivec,num,enc,(block128_f)AES_encrypt);
75 void AES_cfb8_encrypt(const unsigned char *in, unsigned char *out, argument
79 CRYPTO_cfb128_8_encrypt(in,out,length,key,ivec,num,enc,(block128_f)AES_encrypt);
H A Daes_ctr.c55 void AES_ctr128_encrypt(const unsigned char *in, unsigned char *out, argument
60 CRYPTO_ctr128_encrypt(in,out,length,key,ivec,ecount_buf,num,(block128_f)AES_encrypt);
/external/openssl/crypto/asn1/
H A Dt_spki.c71 /* Print out an SPKI */
73 int NETSCAPE_SPKI_print(BIO *out, NETSCAPE_SPKI *spki) argument
79 BIO_printf(out, "Netscape SPKI:\n");
81 BIO_printf(out," Public Key Algorithm: %s\n",
84 if(!pkey) BIO_printf(out, " Unable to load public key\n");
87 EVP_PKEY_print_public(out, pkey, 4, NULL);
92 BIO_printf(out, " Challenge String: %s\n", chal->data);
94 BIO_printf(out," Signature Algorithm: %s",
101 if ((i%18) == 0) BIO_write(out,"\n ",7);
102 BIO_printf(out,"
[all...]
/external/openssl/crypto/bf/
H A Dbf_ecb.c35 * The word 'cryptographic' can be left out if the rouines from the library
81 void BF_ecb_encrypt(const unsigned char *in, unsigned char *out, argument
92 l=d[0]; l2n(l,out);
93 l=d[1]; l2n(l,out);
/external/openssl/crypto/comp/
H A Dc_rle.c7 static int rle_compress_block(COMP_CTX *ctx, unsigned char *out,
9 static int rle_expand_block(COMP_CTX *ctx, unsigned char *out,
28 static int rle_compress_block(COMP_CTX *ctx, unsigned char *out, argument
39 *(out++)=0;
40 memcpy(out,in,ilen);
44 static int rle_expand_block(COMP_CTX *ctx, unsigned char *out, argument
58 memcpy(out,in,ilen-1);
/external/openssl/crypto/ecdh/
H A Dech_key.c72 int ECDH_compute_key(void *out, size_t outlen, const EC_POINT *pub_key, argument
74 void *(*KDF)(const void *in, size_t inlen, void *out, size_t *outlen))
79 return ecdh->meth->compute_key(out, outlen, pub_key, eckey, KDF);
/external/openssl/crypto/rc2/
H A Drc2_ecb.c35 * The word 'cryptographic' can be left out if the rouines from the library
73 void RC2_ecb_encrypt(const unsigned char *in, unsigned char *out, RC2_KEY *ks, argument
84 l=d[0]; l2c(l,out);
85 l=d[1]; l2c(l,out);
/external/qemu/distrib/libsparse/src/
H A Dsimg2img.c41 int out; local
51 out = open(argv[argc - 1], O_WRONLY | O_CREAT | O_TRUNC | O_BINARY, 0664);
52 if (out < 0) {
74 lseek(out, SEEK_SET, 0);
76 ret = sparse_file_write(s, out, false, false, false);
85 close(out);
/external/zopfli/src/zopfli/
H A Dzopfli_lib.c30 unsigned char** out, size_t* outsize) {
32 ZopfliGzipCompress(options, in, insize, out, outsize);
34 ZopfliZlibCompress(options, in, insize, out, outsize);
38 in, insize, &bp, out, outsize);
28 ZopfliCompress(const ZopfliOptions* options, ZopfliFormat output_type, const unsigned char* in, size_t insize, unsigned char** out, size_t* outsize) argument
/external/apache-http/src/org/apache/http/impl/io/
H A DContentLengthOutputStream.java58 private final SessionOutputBuffer out; field in class:ContentLengthOutputStream
75 * @param out The data transmitter to wrap
81 public ContentLengthOutputStream(final SessionOutputBuffer out, long contentLength) { argument
83 if (out == null) {
89 this.out = out;
101 this.out.flush();
106 this.out.flush();
118 this.out.write(b, off, len);
132 this.out
[all...]
H A DIdentityOutputStream.java58 private final SessionOutputBuffer out; field in class:IdentityOutputStream
63 public IdentityOutputStream(final SessionOutputBuffer out) { argument
65 if (out == null) {
68 this.out = out;
79 this.out.flush();
84 this.out.flush();
91 this.out.write(b, off, len);
102 this.out.write(b);
/external/arduino/hardware/arduino/cores/arduino/
H A Dwiring_digital.c129 volatile uint8_t *out; local
137 out = portOutputRegister(port);
142 *out &= ~bit;
147 *out |= bit;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DASN1Null.java62 abstract void encode(ASN1OutputStream out) argument
H A DBERTaggedObject.java96 ASN1OutputStream out)
99 out.writeTag(BERTags.CONSTRUCTED | BERTags.TAGGED, tagNo);
100 out.write(0x80);
135 out.writeObject((ASN1Encodable)e.nextElement());
140 out.writeObject(obj);
144 out.write(0x00);
145 out.write(0x00);
95 encode( ASN1OutputStream out) argument
H A DDEROctetString.java35 ASN1OutputStream out)
38 out.writeEncoded(BERTags.OCTET_STRING, string);
34 encode( ASN1OutputStream out) argument
H A DDERSequence.java82 ASN1OutputStream out)
85 ASN1OutputStream dOut = out.getDERSubStream();
88 out.write(BERTags.SEQUENCE | BERTags.CONSTRUCTED);
89 out.writeLength(length);
81 encode( ASN1OutputStream out) argument
H A DDERSet.java92 ASN1OutputStream out)
95 ASN1OutputStream dOut = out.getDERSubStream();
98 out.write(BERTags.SET | BERTags.CONSTRUCTED);
99 out.writeLength(length);
91 encode( ASN1OutputStream out) argument
H A DDERTaggedObject.java81 ASN1OutputStream out)
90 out.writeTag(BERTags.CONSTRUCTED | BERTags.TAGGED, tagNo);
91 out.writeLength(primitive.encodedLength());
92 out.writeObject(primitive);
109 out.writeTag(flags, tagNo);
110 out.writeImplicitObject(primitive);
115 out.writeEncoded(BERTags.CONSTRUCTED | BERTags.TAGGED, tagNo, ZERO_BYTES);
80 encode( ASN1OutputStream out) argument
H A DDLSequence.java85 ASN1OutputStream out)
88 ASN1OutputStream dOut = out.getDLSubStream();
91 out.write(BERTags.SEQUENCE | BERTags.CONSTRUCTED);
92 out.writeLength(length);
84 encode( ASN1OutputStream out) argument
H A DDLSet.java130 ASN1OutputStream out)
133 ASN1OutputStream dOut = out.getDLSubStream();
136 out.write(BERTags.SET | BERTags.CONSTRUCTED);
137 out.writeLength(length);
129 encode( ASN1OutputStream out) argument
H A DDLTaggedObject.java75 ASN1OutputStream out)
84 out.writeTag(BERTags.CONSTRUCTED | BERTags.TAGGED, tagNo);
85 out.writeLength(primitive.encodedLength());
86 out.writeObject(primitive);
103 out.writeTag(flags, tagNo);
104 out.writeImplicitObject(primitive);
109 out.writeEncoded(BERTags.CONSTRUCTED | BERTags.TAGGED, tagNo, ZERO_BYTES);
74 encode( ASN1OutputStream out) argument
H A DLazyEncodedSequence.java97 ASN1OutputStream out)
102 out.writeEncoded(BERTags.SEQUENCE | BERTags.CONSTRUCTED, encoded);
106 super.toDLObject().encode(out);
96 encode( ASN1OutputStream out) argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/
H A DBlockCipher.java37 * the out array.
41 * @param out the array the output data will be copied into.
42 * @param outOff the offset into the out array the output will start at.
44 * space in out.
48 public int processBlock(byte[] in, int inOff, byte[] out, int outOff) argument
H A DDigest.java42 * @param out the array the digest is to be copied into.
43 * @param outOff the offset into the out array the digest is to start at.
45 public int doFinal(byte[] out, int outOff); argument

Completed in 149 milliseconds

1234567891011>>