HomeSort by relevance Sort by last modified time
    Searched full:bytes2int (Results 1 - 7 of 7) sorted by null

  /external/chromium-trace/catapult/third_party/gsutil/third_party/rsa/tests/
test_transform.py 6 from rsa.transform import int2bytes, bytes2int, _int2bytes
15 self.assertEqual(bytes2int(int2bytes(123456789, 128)), 123456789)
16 self.assertEqual(bytes2int(_int2bytes(123456789, 128)), 123456789)
47 self.assertEqual(bytes2int(int2bytes(value)),
50 self.assertEqual(bytes2int(_int2bytes(value)),
  /external/chromium-trace/catapult/third_party/gsutil/third_party/rsa/rsa/
transform.py 39 def bytes2int(raw_bytes): function
46 >>> bytes2int('\x80@\x0f')
61 >>> bytes2int(_int2bytes(123456789))
66 >>> bytes2int(_int2bytes(123456789, 128))
randnum.py 52 value = transform.bytes2int(randomdata)
_version133.py 48 def bytes2int(bytes): function
54 >>> bytes2int(l)
73 >>> bytes2int(int2bytes(123456789))
107 return bytes2int(randomdata)
395 value = bytes2int(block)
_version200.py 45 def bytes2int(bytes): function
51 >>> bytes2int(l) #same as bytes2int('\x80@\x0f')
186 return bytes2int(randomdata)
474 value = bytes2int(block)
pkcs1.py 168 payload = transform.bytes2int(padded)
226 encrypted = transform.bytes2int(crypto)
273 payload = transform.bytes2int(padded)
302 encrypted = transform.bytes2int(signature)
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/
ByteBufferTest.java 1009 assertEquals(bytes2int(bytes, buf.order()), value); method
1020 assertEquals(bytes2int(bytes, buf.order()), value); method
1615 assertEquals(bytes2int(bytes, buf.order()), value); method
1640 assertEquals(bytes2int(bytes, buf.order()), value); method
2085 private int bytes2int(byte bytes[], ByteOrder order) { method
    [all...]

Completed in 2797 milliseconds