HomeSort by relevance Sort by last modified time
    Searched defs:DB (Results 1 - 10 of 10) sorted by null

  /external/dropbear/libtomcrypt/src/pk/pkcs1/
pkcs_1_oaep_decode.c 39 unsigned char *DB, *seed, *mask;
63 /* allocate ram for DB/mask/salt of size modulus_len */
64 DB = XMALLOC(modulus_len);
67 if (DB == NULL || mask == NULL || seed == NULL) {
68 if (DB != NULL) {
69 XFREE(DB);
99 /* now read the masked DB */
100 XMEMCPY(DB, msg + x, modulus_len - hLen - 1);
104 if ((err = pkcs_1_mgf1(hash_idx, DB, modulus_len - hLen - 1, mask, hLen)) != CRYPT_OK) {
118 /* xor against DB */
    [all...]
pkcs_1_oaep_encode.c 40 unsigned char *DB, *seed, *mask;
66 /* allocate ram for DB/mask/salt of size modulus_len */
67 DB = XMALLOC(modulus_len);
70 if (DB == NULL || mask == NULL || seed == NULL) {
71 if (DB != NULL) {
72 XFREE(DB);
84 /* DB == lhash || PS || 0x01 || M, PS == k - mlen - 2hlen - 2 zeroes */
87 if ((err = hash_memory(hash_idx, lparam, lparamlen, DB, &x)) != CRYPT_OK) {
91 /* can't pass hash_memory a NULL so use DB with zero length */
92 if ((err = hash_memory(hash_idx, DB, 0, DB, &x)) != CRYPT_OK)
    [all...]
pkcs_1_pss_decode.c 37 unsigned char *DB, *mask, *salt, *hash;
62 /* allocate ram for DB/mask/salt/hash of size modulus_len */
63 DB = XMALLOC(modulus_len);
67 if (DB == NULL || mask == NULL || salt == NULL || hash == NULL) {
68 if (DB != NULL) {
69 XFREE(DB);
89 /* copy out the DB */
91 XMEMCPY(DB, sig + x, modulus_len - hLen - 1);
109 /* xor against DB */
111 DB[y] ^= mask[y]
    [all...]
pkcs_1_pss_encode.c 39 unsigned char *DB, *mask, *salt, *hash;
64 /* allocate ram for DB/mask/salt/hash of size modulus_len */
65 DB = XMALLOC(modulus_len);
69 if (DB == NULL || mask == NULL || salt == NULL || hash == NULL) {
70 if (DB != NULL) {
71 XFREE(DB);
98 zeromem(DB, 8);
99 if ((err = hash_descriptor[hash_idx].process(&md, DB, 8)) != CRYPT_OK) {
112 /* generate DB = PS || 0x01 || salt, PS == modulus_len - saltlen - hLen - 2 zero bytes */
114 XMEMSET(DB + x, 0, modulus_len - saltlen - hLen - 2)
    [all...]
  /development/scripts/
add-accounts 32 DB = "/data/data/com.google.android.googleapps/databases/accounts.db"
55 "/system/bin/ls", DB)
81 db = DbExists(adb_flags)
82 if db is None:
87 if db:
add-accounts-sdk 32 DB = "/data/data/com.google.android.googleapps/databases/accounts.db"
52 args = ("adb",) + adb_flags + ("shell", "/system/bin/ls", DB)
78 db = DbExists(adb_flags)
79 if db is None:
84 if db:
  /external/clearsilver/python/examples/trans/
db_trans.py 48 class DB(Database):
49 def __init__(self, db, debug=0):
50 self.db = db
59 # share one cursor for this db object!
62 self._cursor = profiler.ProfilerCursor(self.db.cursor())
64 self._cursor = self.db.cursor()
78 db = MySQLdb.connect(host = host, user=USER, passwd = PASSWORD, db=DATABASE)
81 retval = DB(db, debug=debug
    [all...]
  /external/openssl/crypto/rsa/
rsa_pss.c 80 unsigned char *DB = NULL;
125 DB = OPENSSL_malloc(maskedDBLen);
126 if (!DB)
131 if (PKCS1_MGF1(DB, maskedDBLen, H, hLen, Hash) < 0)
134 DB[i] ^= EM[i];
136 DB[0] &= 0xFF >> (8 - MSBits);
137 for (i = 0; DB[i] == 0 && i < (maskedDBLen-1); i++) ;
138 if (DB[i++] != 0x1)
153 EVP_DigestUpdate(&ctx, DB + i, maskedDBLen - i);
165 if (DB)
    [all...]
  /frameworks/base/services/java/com/android/server/
Watchdog.java 51 static final boolean DB = false;
58 static final int TIME_TO_RESTART = DB ? 15*1000 : 60*1000;
61 static final int MEMCHECK_DEFAULT_MIN_SCREEN_OFF = DB ? 1*60 : 5*60; // 5 minutes
62 static final int MEMCHECK_DEFAULT_MIN_ALARM = DB ? 1*60 : 3*60; // 3 minutes
63 static final int MEMCHECK_DEFAULT_RECHECK_INTERVAL = DB ? 1*60 : 5*60; // 5 minutes
65 static final int REBOOT_DEFAULT_INTERVAL = DB ? 1 : 0; // never force reboot
258 if (DB || mReqRebootNoWait ||
  /system/core/libpixelflinger/codeflinger/
ARMAssemblerInterface.h 47 IB, IA, DB, DA

Completed in 592 milliseconds