Home | History | Annotate | Download | only in crypto

Lines Matching refs:Init

41   // Initializes this instance using |key| of the length |key_length|. Call Init
50 // Init() may fail.
51 bool Init(const unsigned char* key, size_t key_length) WARN_UNUSED_RESULT;
53 // Initializes this instance using |key|. Call Init
55 bool Init(SymmetricKey* key) WARN_UNUSED_RESULT;
57 // Initializes this instance using |key|. Call Init only once. It returns
59 bool Init(const base::StringPiece& key) WARN_UNUSED_RESULT {
60 return Init(reinterpret_cast<const unsigned char*>(key.data()),
65 // to the constructor and the key supplied to the Init method. The HMAC is
72 // supplied to the Init method. Use of this method is strongly recommended