Home
last modified time | relevance | path

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

/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/
DAbstractSampleEncryptionBox.java24 int algorithmId = -1; field in AbstractSampleEncryptionBox
45 algorithmId = IsoTypeReader.readUInt24(content); in _parseDetails()
94 return algorithmId; in getAlgorithmId()
97 public void setAlgorithmId(int algorithmId) { in setAlgorithmId() argument
98 this.algorithmId = algorithmId; in setAlgorithmId()
147 IsoTypeWriter.writeUInt24(byteBuffer, algorithmId); in getContent()
313 if (algorithmId != that.algorithmId) { in equals()
331 int result = algorithmId; in hashCode()
/external/chromium_org/third_party/WebKit/Source/platform/
DCrypto.cpp34 blink::WebCryptoAlgorithmId algorithmId = toWebCryptoAlgorithmId(algorithm); in computeDigest() local
41 OwnPtr<blink::WebCryptoDigestor> digestor = adoptPtr(crypto->createDigestor(algorithmId)); in computeDigest()
/external/chromium_org/third_party/WebKit/Source/modules/crypto/
DNormalizeAlgorithm.cpp55 blink::WebCryptoAlgorithmId algorithmId; member
183 id = it->algorithmId; in lookupAlgorithmIdByName()
693 blink::WebCryptoAlgorithmId algorithmId; in parseAlgorithm() local
694 if (!lookupAlgorithmIdByName(algorithmName, algorithmId)) { in parseAlgorithm()
704 …ebCryptoAlgorithmInfo* algorithmInfo = blink::WebCryptoAlgorithm::lookupAlgorithmInfo(algorithmId); in parseAlgorithm()
718 algorithm = blink::WebCryptoAlgorithm(algorithmId, params.release()); in parseAlgorithm()
/external/chromium_org/third_party/WebKit/public/platform/
DWebCrypto.h230 virtual WebCryptoDigestor* createDigestor(WebCryptoAlgorithmId algorithmId) { return 0; } in createDigestor() argument