HomeSort by relevance Sort by last modified time
    Searched defs:CTR (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/crypto/
encryptor.h 29 CTR,
32 // This class implements a 128-bits counter to be used in AES-CTR encryption.
62 // If |mode| is CBC, |iv| must not be empty; if it is CTR, then |iv| must be
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.
  /external/oprofile/opcontrol/
opcontrol.cpp 47 #define CTR(n) (1<<(n))
393 verbose("idx: %d, name: %s, mask: %02x, ctr#: %d\n",
397 (event_info[event_idx].counters & CTR(num_events)) == 0) {
463 printf(" name: %s\n", find_event_name_from_id(num, CTR(i)));
  /external/conscrypt/src/main/java/org/conscrypt/
OpenSSLCipher.java 54 CTR,
561 public static class CTR extends AES {
562 public CTR() {
563 super(Mode.CTR, Padding.NOPADDING);
611 case CTR:

Completed in 1358 milliseconds