HomeSort by relevance Sort by last modified time
    Searched refs:Key (Results 76 - 100 of 1018) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/modules/crypto/
SubtleCrypto.h 44 class Key;
50 ScriptPromise encrypt(const Dictionary&, Key*, ArrayBufferView* data, ExceptionState&);
51 ScriptPromise decrypt(const Dictionary&, Key*, ArrayBufferView* data, ExceptionState&);
52 ScriptPromise sign(const Dictionary&, Key*, ArrayBufferView* data, ExceptionState&);
54 ScriptPromise verifySignature(const Dictionary&, Key*, ArrayBufferView* signature, ArrayBufferView* data, ExceptionState&);
59 ScriptPromise exportKey(const String&, Key*, ExceptionState&);
61 ScriptPromise wrapKey(const String&, Key*, Key*, const Dictionary&, ExceptionState&);
62 ScriptPromise unwrapKey(const String&, ArrayBufferView*, Key*, const Dictionary&, const Dictionary&, bool, const Vector<String>&, ExceptionState&);
SubtleCrypto.idl 34 [RaisesException] Promise encrypt(Dictionary algorithm, Key key, ArrayBufferView data);
35 [RaisesException] Promise decrypt(Dictionary algorithm, Key key, ArrayBufferView data);
36 [RaisesException] Promise sign(Dictionary algorithm, Key key, ArrayBufferView data);
37 [RaisesException, ImplementedAs=verifySignature] Promise verify(Dictionary algorithm, Key key, ArrayBufferView signature, ArrayBufferView data);
42 [RaisesException] Promise exportKey(DOMString format, Key key);
    [all...]
  /external/chromium_org/third_party/cld/base/
stl_decl_msvc.h 74 template <typename Key>
77 template <class Key,
78 class HashFcn = hash<Key> >
81 template <class Key, class Val,
82 class HashFcn = hash<Key> >
85 template <class Key,
86 class HashFcn = hash<Key> >
89 template <class Key, class Val,
90 class HashFcn = hash<Key> >
  /external/clang/lib/AST/
MangleNumberingContext.cpp 27 QualType Key = Context.getFunctionType(Context.VoidTy, Proto->getArgTypes(),
29 Key = Context.getCanonicalType(Key);
30 return ++ManglingNumbers[Key->castAs<FunctionProtoType>()];
  /external/openssh/
hostfile.h 29 Key *key; member in struct:hostkey_entry
38 HostStatus check_key_in_hostkeys(struct hostkeys *, Key *,
43 int hostfile_read_key(char **, u_int *, Key *);
44 int add_host_to_hostfile(const char *, const char *, const Key *, int);
dns.h 49 int verify_host_key_dns(const char *, struct sockaddr *, Key *, int *);
50 int export_dns_rr(const char *, Key *, FILE *, int);
  /external/v8/src/
splay-tree.h 40 // typedef Key: the key type
42 // static const kNoKey: the dummy key used when no key is set
44 // int (Compare)(Key& a, Key& b) -> {-1, 0, 1}: comparison function
56 typedef typename Config::Key Key;
69 // Inserts the given key in this tree with the given value. Returns
71 // is enabled and provides access to the mapping for the key
122 Key key() { return key_; } function in class:v8::internal::SplayTree::Node
142 const Key& key() { return node_->key_; } function in class:v8::internal::SplayTree::BASE_EMBEDDED
    [all...]
  /libcore/luni/src/main/java/java/security/
Key.java 23 * {@code Key} is the common interface for all keys.
28 public interface Key extends Serializable {
36 * Returns the name of the algorithm of this key. If the algorithm is
39 * @return the name of the algorithm of this key or {@code null} if the
45 * Returns the name of the format used to encode this key, or {@code null}
48 * @return the name of the format used to encode this key, or {@code null}
54 * Returns the encoded form of this key, or {@code null} if encoding is not
55 * supported by this key.
57 * @return the encoded form of this key, or {@code null} if encoding is not
58 * supported by this key
    [all...]
  /libcore/luni/src/main/java/javax/crypto/
ExemptionMechanismSpi.java 23 import java.security.Key;
39 * Generates the result key blob for this exemption mechanism.
41 * @return the result key blob for this exemption mechanism.
49 * Generates the result key blob for this exemption mechanism and stores it
53 * the output buffer for the result key blob.
58 * if the provided buffer is too small for the result key blob.
79 * key.
81 * @param key
82 * the key to initialize this instance with.
84 * if the key cannot be used to initialize this mechanism
    [all...]
NullCipher.java 26 import java.security.Key;
43 this.init(Cipher.ENCRYPT_MODE, (Key)null, (SecureRandom)null);
  /external/chromium_org/third_party/skia/src/gpu/
GrTHashTable.h 18 * Key needs
19 * static bool Equals(const Entry&, const Key&);
20 * static bool LessThan(const Entry&, const Key&);
25 * Allows duplicate key entries but on find you may get
28 template <typename T, typename Key, size_t kHashBits> class GrTHashTable {
36 // Return the first resource that matches the key.
40 T* find(const Key& key) const { return this->find(key, Any()); }
41 template <typename Filter> T* find(const Key&, Filter filter) const
    [all...]
  /external/skia/src/gpu/
GrTHashTable.h 18 * Key needs
19 * static bool Equals(const Entry&, const Key&);
20 * static bool LessThan(const Entry&, const Key&);
25 * Allows duplicate key entries but on find you may get
28 template <typename T, typename Key, size_t kHashBits> class GrTHashTable {
36 // Return the first resource that matches the key.
40 T* find(const Key& key) const { return this->find(key, Any()); }
41 template <typename Filter> T* find(const Key&, Filter filter) const
    [all...]
  /external/chromium_org/base/containers/
scoped_ptr_hash_map.h 22 template <typename Key, typename Value>
24 typedef base::hash_map<Key, Value*> Container;
34 void swap(ScopedPtrHashMap<Key, Value>& other) {
39 std::pair<Key, const scoped_ptr<Value> > pair) {
41 std::pair<Key, Value*>(pair.first, pair.second.release()));
44 // Replaces value but not key if key is already present.
45 std::pair<iterator, bool> set(Key key, scoped_ptr<Value> data) {
46 iterator it = find(key);
    [all...]
  /external/marisa-trie/lib/marisa/
key.h 7 class Key {
9 Key() : str_(), weight_(0.0), id_(0), terminal_(0) {}
45 inline bool operator<(const Key<T> &lhs, const T &rhs) {
50 inline bool operator<(const T &lhs, const Key<T> &rhs) {
55 inline bool operator<(const Key<T> &lhs, const Key<T> &rhs) {
60 inline bool operator==(const Key<T> &lhs, const Key<T> &rhs) {
  /external/marisa-trie/v0_1_5/lib/marisa_alpha/
key.h 9 class Key {
11 Key() : str_(), weight_(0.0), id_(0), terminal_(0) {}
47 inline bool operator<(const Key<T> &lhs, const T &rhs) {
52 inline bool operator<(const T &lhs, const Key<T> &rhs) {
57 inline bool operator<(const Key<T> &lhs, const Key<T> &rhs) {
62 inline bool operator==(const Key<T> &lhs, const Key<T> &rhs) {
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
KeyTest.java 25 import java.security.Key;
30 * Tests for <code>Key</code> class field
40 assertEquals("Incorrect serialVersionUID", mk.getSerVerUID(), //Key.serialVersionUID,
44 public class checkKey implements Key {
46 return "Key";
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/basic_tree_policy/
null_node_metadata.hpp 50 template<typename Key, class Data, class Allocator>
54 typedef typename types_traits<Key, Data, Allocator, false>::pointer const_iterator;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/ov_tree_map_/
traits.hpp 51 template<typename Key,
61 Key,
71 Key,
80 Key,
118 template<typename Key,
127 Key,
137 Key,
146 Key,
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/ext/pb_ds/detail/basic_tree_policy/
null_node_metadata.hpp 50 template<typename Key, class Data, class Allocator>
54 typedef typename types_traits<Key, Data, Allocator, false>::pointer const_iterator;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/ext/pb_ds/detail/ov_tree_map_/
traits.hpp 51 template<typename Key,
61 Key,
71 Key,
80 Key,
118 template<typename Key,
127 Key,
137 Key,
146 Key,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/ext/pb_ds/detail/basic_tree_policy/
null_node_metadata.hpp 50 template<typename Key, class Data, class Allocator>
54 typedef typename types_traits<Key, Data, Allocator, false>::pointer const_iterator;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/ext/pb_ds/detail/ov_tree_map_/
traits.hpp 51 template<typename Key,
61 Key,
71 Key,
80 Key,
118 template<typename Key,
127 Key,
137 Key,
146 Key,
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/basic_tree_policy/
null_node_metadata.hpp 50 template<typename Key, class Data, class Allocator>
54 typedef typename types_traits<Key, Data, Allocator, false>::pointer const_iterator;
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/ov_tree_map_/
traits.hpp 51 template<typename Key,
61 Key,
71 Key,
80 Key,
118 template<typename Key,
127 Key,
137 Key,
146 Key,
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/basic_tree_policy/
null_node_metadata.hpp 50 template<typename Key, class Data, class Allocator>
54 typedef typename types_traits<Key, Data, Allocator, false>::pointer const_iterator;

Completed in 2653 milliseconds

1 2 34 5 6 7 8 91011>>