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

1 2

  /external/srtp/
timing 18 # timing.plt # # gnuplot script file for plotting the output generated by srtp_driver -t # # David A. McGrew # Cisco Systems, Inc. # set xrange [0:2500] set term pict "Times-Roman" 9 # # plot authentication-only data # set title "Authentication Only" set ylabel "Megabits per second" set xlabel "Octets in packet" set yrange [0:2000] set output "plot-auth.pict" plot "timing.dat" index 0 title "HMAC SHA1" with lines, "timing.dat" index 1 title "TMMH/AES" with lines, "timing.dat" index 2 title "TMMH/SEAL" with lines # # plot encryption-only data # set title "Encryption Only" set ylabel "Megabits per second" set xlabel "Octets in packet" set output "plot-enc.pict" set yrange [0:1200] plot "timing.dat" index 3 title "SEAL" with lines, "timing.dat" index 4 title "AES ICM" with lines # # plot encryption and authentication data # set title "Encryption and Authentication" set ylabel "Megabits per second" set xlabel "Octets in packet" set yrange [0:1000] set output "plot-enc-auth.pict" plot "timing.dat" index 5 title "TMMH/SEAL" with lines, "timing.dat" index 6 title "TMMH/AES" with lines, "timing.dat" index 7 title "HMAC/AE (…)
Changes 115 Added index check to SEAL cipher (only values less than 2^32 are
  /external/v8/test/mjsunit/
object-seal.js 28 // Tests the Object.seal and Object.isSealed methods - ES 15.2.3.9 and
37 Object.seal(non_objects[key]);
40 assertTrue(/Object.seal called on non-object/.test(e));
71 Object.seal(obj);
95 // Since writable is not affected by seal we should still be able to
114 Object.seal(obj2);
131 // Test seal on arrays.
146 Object.seal(arr);
192 // Make sure that Object.seal returns the sealed object.
194 assertTrue(obj4 === Object.seal(obj4))
    [all...]
strict-mode.js 787 var sealed = Object.seal({});
    [all...]
  /external/v8/test/mjsunit/regress/
regress-1447.js 29 [0].every(function(){ Object.seal(Array.prototype.every); });
34 [0].every(function(){ Object.seal(Array.prototype.every); });
regress-842.js 29 // changed (a property is added) after which freeze and seal would fail
regress-95920.js 33 [0].every(function(){ Object.seal((new Int8Array(42))); });
  /external/v8/test/mjsunit/harmony/
proxies-hash.js 73 TestSet(Set, Object.seal)
116 TestMap(Map, Object.seal)
120 TestMap(WeakMap, Object.seal)
proxies.js     [all...]
  /external/tcpdump/
rpc_auth.h 53 SUNRPC_AUTH_BADCRED=1, /* bogus credentials (seal broken) */
55 SUNRPC_AUTH_BADVERF=3, /* bogus verifier (seal broken) */
  /packages/apps/Mms/res/values-tl/
arrays.xml 36 <item msgid="850324578089267455">"Naka-seal ang mga labi"</item>
  /external/srtp/crypto/include/
crypto_types.h 108 * @brief SEAL 3.0
110 * SEAL is the Software-Optimized Encryption Algorithm of Coppersmith
113 #define SEAL 2
sha1.h 92 * here because it is also used by the cipher SEAL 3.0 in its key
  /libcore/benchmarks/src/benchmarks/regression/
IntegerBenchmark.java 100 * Table for Seal's algorithm for Number of Trailing Zeros. Hacker's Delight
112 // Seal's algorithm - Hacker's Delight 5-18
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/rpc/
auth.h 60 AUTH_BADCRED=1, /* bogus credentials (seal broken) */
62 AUTH_BADVERF=3, /* bogus verifier (seal broken) */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/rpc/
auth.h 60 AUTH_BADCRED=1, /* bogus credentials (seal broken) */
62 AUTH_BADVERF=3, /* bogus verifier (seal broken) */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/rpc/
auth.h 60 AUTH_BADCRED=1, /* bogus credentials (seal broken) */
62 AUTH_BADVERF=3, /* bogus verifier (seal broken) */
  /external/apache-harmony/crypto/src/test/api/java.injected/javax/crypto/
SealedObjectTest.java 104 assertEquals("The algorithm which was used to seal the object "
105 + "should be the same as the algorithm used to seal the "
  /external/webkit/Source/JavaScriptCore/runtime/
ObjectConstructor.cpp 69 seal objectConstructorSeal DontEnum|Function 1
357 return throwVMError(exec, createTypeError(exec, "Object.seal can only be called on Objects."));
358 asObject(obj)->seal(exec->globalData());
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
SealedObjectTest.java 145 assertEquals("The algorithm which was used to seal the object "
146 + "should be the same as the algorithm used to seal the "
  /bionic/libc/arch-mips/bionic/
ffs.S 37 * This is the ffs algorithm devised by d.seal and posted to comp.sys.arm on
  /external/srtp/crypto/hash/
sha1.c 94 * this function is used in the SEAL 3.0 key setup routines
95 * (crypto/cipher/seal.c)
  /hardware/msm7k/librpc/rpc/
types.h 236 AUTH_BADCRED=1, /* bogus credentials (seal broken) */
238 AUTH_BADVERF=3, /* bogus verifier (seal broken) */
  /external/libvpx/libvpx/examples/includes/geshi/geshi/
progress.php 186 'SCROLL-TO-ITEM','SCROLL-TO-SELECTED-ROW','SEAL','SEARCH',
198 'VALIDATE','VALIDATE-SEAL','WRITE','WRITE-CDATA','USE-INDEX',
370 'SCROLLBAR-HORIZONTAL','SCROLL-BARS','SCROLLBAR-VERTICAL','SEAL-TIMESTAMP',
  /libcore/luni/src/main/java/javax/crypto/
SealedObject.java 77 * the object to seal, can be {@code null}.

Completed in 777 milliseconds

1 2