Home | History | Annotate | Download | only in crypto

Lines Matching defs:Mode

27   enum Mode {
62 // If |mode| is CBC, |iv| must not be empty; if it is CTR, then |iv| must be
64 bool Init(SymmetricKey* key, Mode mode, const base::StringPiece& iv);
67 // the mode is CBC.
72 // WARNING: In CBC mode, Decrypt() returns false if it detects the padding
81 // Sets the counter value when in CTR mode. Currently only 128-bits
90 // Generates a mask using |counter_| to be used for encryption in CTR mode.
99 // This method is used only in CTR mode.
114 Mode mode_;