Home
last modified time | relevance | path

Searched refs:tagLengthBits (Results 1 – 1 of 1) sorted by relevance

/frameworks/base/keystore/java/android/security/keystore/
DAndroidKeyStoreAuthenticatedAESCipherSpi.java108 int tagLengthBits = spec.getTLen(); in initAlgorithmSpecificParameters() local
109 if ((tagLengthBits < MIN_SUPPORTED_TAG_LENGTH_BITS) in initAlgorithmSpecificParameters()
110 || (tagLengthBits > MAX_SUPPORTED_TAG_LENGTH_BITS) in initAlgorithmSpecificParameters()
111 || ((tagLengthBits % 8) != 0)) { in initAlgorithmSpecificParameters()
113 "Unsupported tag length: " + tagLengthBits + " bits" in initAlgorithmSpecificParameters()
117 mTagLengthBits = tagLengthBits; in initAlgorithmSpecificParameters()