HomeSort by relevance Sort by last modified time
    Searched full:keyinfo (Results 1 - 25 of 44) sorted by null

1 2

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/util/
AsymmetricKeyInfoConverter.java 12 PrivateKey generatePrivate(PrivateKeyInfo keyInfo)
15 PublicKey generatePublic(SubjectPublicKeyInfo keyInfo)
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dh/
KeyFactorySpi.java 91 public PrivateKey generatePrivate(PrivateKeyInfo keyInfo)
94 ASN1ObjectIdentifier algOid = keyInfo.getPrivateKeyAlgorithm().getAlgorithm();
98 return new BCDHPrivateKey(keyInfo);
102 return new BCDHPrivateKey(keyInfo);
110 public PublicKey generatePublic(SubjectPublicKeyInfo keyInfo)
113 ASN1ObjectIdentifier algOid = keyInfo.getAlgorithm().getAlgorithm();
117 return new BCDHPublicKey(keyInfo);
121 return new BCDHPublicKey(keyInfo);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dsa/
KeyFactorySpi.java 64 public PrivateKey generatePrivate(PrivateKeyInfo keyInfo)
67 ASN1ObjectIdentifier algOid = keyInfo.getPrivateKeyAlgorithm().getAlgorithm();
71 return new BCDSAPrivateKey(keyInfo);
79 public PublicKey generatePublic(SubjectPublicKeyInfo keyInfo)
82 ASN1ObjectIdentifier algOid = keyInfo.getAlgorithm().getAlgorithm();
86 return new BCDSAPublicKey(keyInfo);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
SubjectKeyIdentifier.java 94 * @param keyInfo the key info object containing the subjectPublicKey field.
98 public static SubjectKeyIdentifier createSHA1KeyIdentifier(SubjectPublicKeyInfo keyInfo)
100 return new SubjectKeyIdentifier(keyInfo);
110 * @param keyInfo the key info object containing the subjectPublicKey field.
114 public static SubjectKeyIdentifier createTruncatedSHA1KeyIdentifier(SubjectPublicKeyInfo keyInfo)
116 byte[] dig = getDigest(keyInfo);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/rsa/
KeyFactorySpi.java 133 public PrivateKey generatePrivate(PrivateKeyInfo keyInfo)
136 ASN1ObjectIdentifier algOid = keyInfo.getPrivateKeyAlgorithm().getAlgorithm();
140 return new BCRSAPrivateCrtKey(keyInfo);
148 public PublicKey generatePublic(SubjectPublicKeyInfo keyInfo)
151 ASN1ObjectIdentifier algOid = keyInfo.getAlgorithm().getAlgorithm();
155 return new BCRSAPublicKey(keyInfo);
  /external/qemu/distrib/sdl-1.2.15/src/video/qtopia/
SDL_lowvideo.h 52 //struct key_info keyinfo[2];
63 #define keyinfo (_this->hidden->keyinfo) macro
SDL_sysevents.cc 76 get_key_info(&keyinfo[key_flip]);
89 if ( SDL_memcmp(keyinfo[0].key_states, keyinfo[1].key_states, 16) != 0 ) {
93 new_state = keyinfo[key_flip].key_states[i];
94 transition = keyinfo[!key_flip].key_states[i] ^
95 keyinfo[ key_flip].key_states[i];
153 SDL_memset(keyinfo[key_flip].key_states, 0, 16);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/util/
PublicKeyFactory.java 81 * @param keyInfo the SubjectPublicKeyInfo containing the key data
85 public static AsymmetricKeyParameter createKey(SubjectPublicKeyInfo keyInfo) throws IOException
87 AlgorithmIdentifier algId = keyInfo.getAlgorithm();
92 RSAPublicKey pubKey = RSAPublicKey.getInstance(keyInfo.parsePublicKey());
98 DHPublicKey dhPublicKey = DHPublicKey.getInstance(keyInfo.parsePublicKey());
131 ASN1Integer derY = (ASN1Integer)keyInfo.parsePublicKey();
143 // ASN1Integer derY = (ASN1Integer)keyInfo.parsePublicKey();
152 ASN1Integer derY = (ASN1Integer)keyInfo.parsePublicKey();
179 ASN1OctetString key = new DEROctetString(keyInfo.getPublicKeyData().getBytes());
PrivateKeyFactory.java 74 * @param keyInfo the PrivateKeyInfo object containing the key material
78 public static AsymmetricKeyParameter createKey(PrivateKeyInfo keyInfo) throws IOException
80 AlgorithmIdentifier algId = keyInfo.getPrivateKeyAlgorithm();
84 RSAPrivateKey keyStructure = RSAPrivateKey.getInstance(keyInfo.parsePrivateKey());
96 ASN1Integer derX = (ASN1Integer)keyInfo.parsePrivateKey();
108 // ASN1Integer = (ASN1Integer)keyInfo.parsePrivateKey();
116 ASN1Integer derX = (ASN1Integer)keyInfo.parsePrivateKey();
143 ECPrivateKey ec = ECPrivateKey.getInstance(keyInfo.parsePrivateKey());
  /external/openfst/src/include/fst/extensions/far/
info.h 41 struct KeyInfo {
47 KeyInfo(string k, string t, int64 ns = 0, int64 na = 0)
60 vector<KeyInfo> *infos = list_fsts ? new vector<KeyInfo>() : 0;
71 KeyInfo info(key, fst.Type());
101 const KeyInfo &info = (*infos)[i];
117 const KeyInfo &info = (*infos)[i];
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/ec/
KeyFactorySpi.java 156 public PrivateKey generatePrivate(PrivateKeyInfo keyInfo)
159 ASN1ObjectIdentifier algOid = keyInfo.getPrivateKeyAlgorithm().getAlgorithm();
163 return new BCECPrivateKey(algorithm, keyInfo, configuration);
171 public PublicKey generatePublic(SubjectPublicKeyInfo keyInfo)
174 ASN1ObjectIdentifier algOid = keyInfo.getAlgorithm().getAlgorithm();
178 return new BCECPublicKey(algorithm, keyInfo, configuration);
  /external/smack/src/org/xbill/DNS/
DNSSEC.java 415 toECDSAPublicKey(KEYBase r, ECKeyInfo keyinfo) throws IOException,
421 BigInteger x = readBigInteger(in, keyinfo.length);
422 BigInteger y = readBigInteger(in, keyinfo.length);
426 return factory.generatePublic(new ECPublicKeySpec(q, keyinfo.spec));
651 ECDSASignaturefromDNS(byte [] signature, ECKeyInfo keyinfo)
654 if (signature.length != keyinfo.length * 2)
660 byte [] r = in.readByteArray(keyinfo.length);
661 int rlen = keyinfo.length;
665 byte [] s = in.readByteArray(keyinfo.length);
666 int slen = keyinfo.length
    [all...]
  /external/chromium_org/third_party/sqlite/src/src/
vdbe.h 61 KeyInfo *pKeyInfo; /* Used when p4type is P4_KEYINFO */
108 #define P4_KEYINFO (-6) /* P4 is a pointer to a KeyInfo structure */
120 /* When adding a P4 argument using P4_KEYINFO, a copy of the KeyInfo structure
125 ** function should *not* try to free the KeyInfo.
211 UnpackedRecord *sqlite3VdbeRecordUnpack(KeyInfo*,int,const void*,char*,int);
btree.h 142 struct KeyInfo*, /* First argument to compare function */
select.c 733 ** Given an expression list, generate a KeyInfo structure that records
737 ** KeyInfo structure is appropriate for initializing a virtual index to
739 ** then the KeyInfo structure is appropriate for initializing a virtual
742 ** Space to hold the KeyInfo structure is obtain from malloc. The calling
744 ** freed. Add the KeyInfo structure to the P4 field of an opcode using
747 static KeyInfo *keyInfoFromExprList(Parse *pParse, ExprList *pList){
750 KeyInfo *pInfo;
    [all...]
expr.c     [all...]
  /frameworks/wilhelm/tests/examples/
slesTestDecodeAac.cpp 680 SLMetadataInfo *keyInfo, *value;
682 keyInfo = NULL; keySize = 0;
688 keyInfo = (SLMetadataInfo*) malloc(keySize);
689 if (NULL != keyInfo) {
690 res = (*mdExtrItf)->GetKey(mdExtrItf, i, keySize, keyInfo);
693 i, keyInfo->size, keyInfo->data, valueSize, keyInfo->encoding,
694 keyInfo->langCountry);
696 if (!strcmp((char*)keyInfo->data, ANDROID_KEY_PCMFORMAT_NUMCHANNELS))
    [all...]
slesTestDecodeToBuffQueue.cpp 466 SLMetadataInfo *keyInfo, *value;
468 keyInfo = NULL; keySize = 0;
474 keyInfo = (SLMetadataInfo*) malloc(keySize);
475 if (NULL != keyInfo) {
476 result = (*mdExtrItf)->GetKey(mdExtrItf, i, keySize, keyInfo);
479 i, keyInfo->size, keyInfo->data, valueSize);
481 if (!strcmp((char*)keyInfo->data, ANDROID_KEY_PCMFORMAT_NUMCHANNELS)) {
483 } else if (!strcmp((char*)keyInfo->data, ANDROID_KEY_PCMFORMAT_SAMPLERATE)) {
486 free(keyInfo);
    [all...]
  /frameworks/ex/variablespeed/jni/
variablespeed.cc 237 SLMetadataInfo *keyInfo, *value;
239 keyInfo = value = NULL;
242 keyInfo = static_cast<SLMetadataInfo*>(malloc(keySize));
243 if (keyInfo) {
244 OpenSL(decoderMetadata, GetKey, i, keySize, keyInfo);
245 if (keyInfo->encoding == SL_CHARACTERENCODING_ASCII
246 || keyInfo->encoding == SL_CHARACTERENCODING_UTF8) {
251 if (strcmp((char*) keyInfo->data, ANDROID_KEY_PCMFORMAT_SAMPLERATE) == 0) {
255 } else if (strcmp((char*) keyInfo->data, ANDROID_KEY_PCMFORMAT_NUMCHANNELS) == 0) {
263 free(keyInfo);
    [all...]
  /external/qemu/android/skin/
file.c 120 } KeyInfo;
122 static KeyInfo _keyinfo_table[] = {
210 KeyInfo *ki = _keyinfo_table;
  /external/llvm/test/CodeGen/X86/
2009-04-29-RegAllocAssert.ll 24 %struct.Cursor = type { %struct.BtCursor*, i32, i64, i64, i8, i8, i8, i8, i8, i8, i8, i8, i8, i8, i8, i64, %struct.Btree*, i32, i8*, i64, i8*, %struct.KeyInfo*, i32, i64, %struct.sqlite3_vtab_cursor*, %struct.sqlite3_module*, i32, i32, i32*, i32*, i8* }
38 %struct.KeyInfo = type { %struct.sqlite3*, i8, i8, i8, i32, i8*, [1 x %struct.CollSeq*] }
  /external/llvm/test/Transforms/GVN/
2009-01-22-SortInvalidation.ll 22 %struct.Cursor = type { %struct.BtCursor*, i32, i64, i64, i8, i8, i8, i8, i8, i8, i8, i8, i8, i8, i8, i64, %struct.Btree*, i32, i8*, i64, i8*, %struct.KeyInfo*, i32, i64, %struct.sqlite3_vtab_cursor*, %struct.sqlite3_module*, i32, i32, i32*, i32*, i8* }
35 %struct.KeyInfo = type { %struct.sqlite3*, i8, i8, i8, i32, i8*, [1 x %struct.CollSeq*] }
  /frameworks/base/core/java/android/app/
SearchableInfo.java 498 private void addActionKey(ActionKeyInfo keyInfo) {
502 mActionKeys.put(keyInfo.getKeyCode(), keyInfo);
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.api.tools.ee.javase16_1.0.0.200901281111/org/eclipse/pde/api/tools/internal/api_stubs/
JavaSE-1.6.zip 
  /external/clang/lib/Basic/
IdentifierTable.cpp 313 IdentifierInfo **KeyInfo = reinterpret_cast<IdentifierInfo **>(this+1);
315 KeyInfo[i] = IIV[i];

Completed in 697 milliseconds

1 2