Searched defs:signature (Results 1 - 25 of 314) sorted by last modified time

1234567891011>>

/external/wpa_supplicant_8/hostapd/src/tls/
H A Dx509v3.h52 struct x509_algorithm_identifier signature; member in struct:x509_certificate
/external/wpa_supplicant_8/src/tls/
H A Dx509v3.h52 struct x509_algorithm_identifier signature; member in struct:x509_certificate
/external/wpa_supplicant_8/wpa_supplicant/src/tls/
H A Dx509v3.h52 struct x509_algorithm_identifier signature; member in struct:x509_certificate
/external/valgrind/main/coregrind/m_debuginfo/
H A Dreaddwarf3.c442 signature and the uncooked DIE offset of the TU's signatured
1027 /* This represents a single signatured type. It maps a type signature
1029 in the type signature hash table. */
1052 /* Given a type signature hash table and a type signature, return the
1319 ULong signature = get_ULong (c); local
1320 ULong work = signature;
1321 TRACE_D3("8 byte signature: ");
1330 cts->u.val = lookup_signatured_type (cc->signature_types, signature,
3780 mapping from a type signature t
[all...]
H A Dreadpdb.c114 unsigned short e_magic; /* 00: MZ Header signature */
310 // that ends in "\r\n\032". This is followed by a 4-byte "signature"
316 //unsigned long signature; // "JG\0\0"
326 //char signature[32]; // "Microsoft C/C++ MSF 7.00\r\n\032DS\0\0"
488 unsigned long signature; member in struct:_PDB_SYMBOLS
831 char signature[4]; member in struct:codeview_symbol::__anon32510
1016 unsigned* signature )
1025 *signature = *(unsigned*)(1+ txteof);
1664 BYTE md5[16]; /* MD5 signature of file (signature o
2190 unsigned signature; local
[all...]
/external/srec/srec/crec/
H A Dsrec_context.c2723 asr_int32_t signature = 0; local
2724 ENCODE(signature, arcID);
2725 ENCODE(signature, nodeID);
2726 ENCODE(signature, wordID);
2727 ENCODE(signature, labelID);
2728 ENCODE(signature, costdata);
2729 return signature;
/external/smack/src/org/xbill/DNS/
H A DDNSSEC.java178 * @param previous If this is a response, the signature from the query.
233 "does not match signature " +
241 * A DNSSEC verification failed because the signature has expired.
247 super("signature expired");
253 * @return When the signature expired
270 * A DNSSEC verification failed because the signature has not yet become valid.
276 super("signature is not yet valid");
282 * @return When the signature will become valid
299 * A DNSSEC verification failed because the cryptographic signature
304 super("signature verificatio
612 DSASignaturetoDNS(byte [] signature, int t) argument
651 ECDSASignaturefromDNS(byte [] signature, ECKeyInfo keyinfo) argument
689 ECDSASignaturetoDNS(byte [] signature, ECKeyInfo keyinfo) argument
726 verify(PublicKey key, int alg, byte [] data, byte [] signature) argument
[all...]
H A DRRSIGRecord.java8 * Recource Record Signature - An RRSIG provides the digital signature of an
10 * The signature is generated by a key contained in a DNSKEY Record.
31 * @param covered The RRset type covered by this signature
33 * signature
35 * @param expire The time at which the signature expires
36 * @param timeSigned The time at which this signature was generated
39 * @param signature Binary data representing the signature
44 byte [] signature)
47 timeSigned, footprint, signer, signature);
42 RRSIGRecord(Name name, int dclass, long ttl, int covered, int alg, long origttl, Date expire, Date timeSigned, int footprint, Name signer, byte [] signature) argument
[all...]
H A DSIGBase.java25 protected byte [] signature; field in class:SIGBase
33 byte [] signature)
48 this.signature = signature;
61 signature = in.readByteArray();
80 signature = st.getBase64();
106 sb.append(base64.formatString(signature, 64, "\t",
110 sb.append(base64.toString(signature));
115 /** Returns the RRset type covered by this signature */
122 * Returns the cryptographic algorithm of the key that generated the signature
31 SIGBase(Name name, int type, int dclass, long ttl, int covered, int alg, long origttl, Date expire, Date timeSigned, int footprint, Name signer, byte [] signature) argument
176 setSignature(byte [] signature) argument
[all...]
H A DSIGRecord.java8 * Signature - A SIG provides the digital signature of an RRset, so that
10 * signature is usually generated by a key contained in a KEYRecord
31 * @param covered The RRset type covered by this signature
33 * signature
35 * @param expire The time at which the signature expires
36 * @param timeSigned The time at which this signature was generated
39 * @param signature Binary data representing the signature
44 byte [] signature)
47 timeSigned, footprint, signer, signature);
42 SIGRecord(Name name, int dclass, long ttl, int covered, int alg, long origttl, Date expire, Date timeSigned, int footprint, Name signer, byte [] signature) argument
[all...]
H A DTSIGRecord.java26 private byte [] signature; field in class:TSIGRecord
44 * received is not in the range [now - fudge, now + fudge], the signature
46 * @param signature The signature
55 int fudge, byte [] signature, int originalID, int error,
62 this.signature = signature;
79 signature = in.readByteArray(sigLen);
109 sb.append (signature.length);
112 sb.append (base64.formatString(signature, 6
54 TSIGRecord(Name name, int dclass, long ttl, Name alg, Date timeSigned, int fudge, byte [] signature, int originalID, int error, byte other[]) argument
[all...]
/external/smack/src/org/xbill/DNS/utils/
H A DHMAC.java127 * @return An array with the signature
139 * @param signature The signature to compare against
140 * @return true if the signature matches, false otherwise
143 verify(byte [] signature) { argument
144 return verify(signature, false);
149 * @param signature The signature to compare against
150 * @param truncation_ok If true, the signature may be truncated; only the
151 * number of bytes in the provided signature ar
155 verify(byte [] signature, boolean truncation_ok) argument
[all...]
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/Debug/
H A DLocalFormatter.java53 * One of name, type or signature must be non-null
56 @Nullable String signature) throws IOException {
68 if (signature != null) {
70 ReferenceFormatter.writeStringReference(writer, signature);
55 writeLocal(@onnull IndentingWriter writer, @Nullable String name, @Nullable String type, @Nullable String signature) argument
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/
H A DMethodImplementationBuilder.java125 @Nullable StringReference signature) {
126 currentLocation.addStartLocal(registerNumber, name, type, signature);
124 addStartLocal(int registerNumber, @Nullable StringReference name, @Nullable TypeReference type, @Nullable StringReference signature) argument
H A DMethodLocation.java224 @Nullable StringReference signature) {
225 getDebugItems().add(new BuilderStartLocal(registerNumber, name, type, signature));
223 addStartLocal(int registerNumber, @Nullable StringReference name, @Nullable TypeReference type, @Nullable StringReference signature) argument
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/debug/
H A DBuilderStartLocal.java46 @Nullable private final StringReference signature; field in class:BuilderStartLocal
51 @Nullable StringReference signature) {
55 this.signature = signature;
62 @Nullable @Override public StringReference getSignatureReference() { return signature; }
73 return signature==null?null:signature.getString();
48 BuilderStartLocal(int register, @Nullable StringReference name, @Nullable TypeReference type, @Nullable StringReference signature) argument
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/debug/
H A DImmutableEndLocal.java44 @Nullable protected final String signature; field in class:ImmutableEndLocal
52 this.signature = null;
59 @Nullable String signature) {
64 this.signature = signature;
83 @Nullable @Override public String getSignature() { return signature; }
55 ImmutableEndLocal(int codeAddress, int register, @Nullable String name, @Nullable String type, @Nullable String signature) argument
H A DImmutableRestartLocal.java44 @Nullable protected final String signature; field in class:ImmutableRestartLocal
52 this.signature = null;
59 @Nullable String signature) {
64 this.signature = signature;
83 @Nullable @Override public String getSignature() { return signature; }
55 ImmutableRestartLocal(int codeAddress, int register, @Nullable String name, @Nullable String type, @Nullable String signature) argument
H A DImmutableStartLocal.java48 @Nullable protected final String signature; field in class:ImmutableStartLocal
54 @Nullable String signature) {
59 this.signature = signature;
94 return signature==null?null:new BaseStringReference() {
96 return signature;
103 @Nullable @Override public String getSignature() { return signature; }
50 ImmutableStartLocal(int codeAddress, int register, @Nullable String name, @Nullable String type, @Nullable String signature) argument
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
H A DDebugWriter.java64 @Nullable StringKey signature) throws IOException {
67 int signatureIndex = stringSection.getNullableItemIndex(signature);
61 writeStartLocal(int codeAddress, int register, @Nullable StringKey name, @Nullable TypeKey type, @Nullable StringKey signature) argument
/external/skia/platform_tools/android/app/jni/
H A Dcom_skia_SkiaSampleRenderer.cpp167 const char signature[])
169 jmethodID m = env->GetMethodID(clazz, name, signature);
166 GetJMethod(JNIEnv* env, jclass clazz, const char name[], const char signature[]) argument
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
H A Djavassist-3.14.0-GA.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/bytecode/ javassist/bytecode/analysis/ javassist/bytecode/annotation/ javassist/ ...
/external/robolectric/lib/test/
H A Dmockito-core-1.8.5.jar ... MF org/ org/mockito/ org/mockito/asm/ org/mockito/asm/signature/ org/mockito/asm/tree/ org/mockito/asm/tree/analysis/ org ...
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowSignature.java20 public void __constructor__(byte[] signature) { argument
21 mSignature = signature.clone();
59 byte[] signature = source.createByteArray();
60 return new Signature(signature);

Completed in 302 milliseconds

1234567891011>>