Home
last modified time | relevance | path

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

123

/aosp_15_r20/external/aws-sdk-java-v2/core/http-auth-aws/src/main/java/software/amazon/awssdk/http/auth/aws/internal/signer/util/
H A DChecksumUtil.java45 SHA256.algorithmId(), Sha256Checksum::new,
46 SHA1.algorithmId(), Sha1Checksum::new,
47 CRC32.algorithmId(), Crc32Checksum::new,
48 CRC32C.algorithmId(), Crc32CChecksum::new,
49 MD5.algorithmId(), Md5Checksum::new
63 return "x-amz-checksum-" + checksumAlgorithm.algorithmId().toLowerCase(Locale.US); in checksumHeaderName()
70 String algorithmId = checksumAlgorithm.algorithmId(); in fromChecksumAlgorithm() local
71 Supplier<SdkChecksum> checksumSupplier = CHECKSUM_MAP.get(algorithmId); in fromChecksumAlgorithm()
76 if (CONSTANT_CHECKSUM.equals(algorithmId)) { in fromChecksumAlgorithm()
80 throw new UnsupportedOperationException("Checksum not supported for " + algorithmId); in fromChecksumAlgorithm()
[all …]
/aosp_15_r20/packages/modules/IPsec/src/java/com/android/internal/net/ipsec/ike/crypto/
DIkeCipher.java85 int algorithmId, in IkeCipher() argument
92 super(algorithmId, keyLength, algorithmName); in IkeCipher()
112 int algorithmId = encryptionTransform.id; in create() local
116 switch (algorithmId) { in create()
119 algorithmId, KEY_LEN_3DES, IV_LEN_3DES, "DESede/CBC/NoPadding"); in create()
122 algorithmId, in create()
128 algorithmId, in create()
140 algorithmId, in create()
147 algorithmId, in create()
155 "Unrecognized Encryption Algorithm ID: " + algorithmId); in create()
DIkeMacIntegrity.java66 @SaProposal.IntegrityAlgorithm int algorithmId, in IkeMacIntegrity()
71 super(algorithmId, keyLength, algorithmName, isJceSupported); in IkeMacIntegrity()
82 int algorithmId = integrityTransform.id; in create() local
89 switch (algorithmId) { in create()
125 "Unrecognized Integrity Algorithm ID: " + algorithmId); in create()
129 algorithmId, keyLength, algorithmName, isJceSupported, checksumLength); in create()
DIkeMacPrf.java51 @SaProposal.PseudorandomFunction int algorithmId, in IkeMacPrf()
55 super(algorithmId, keyLength, algorithmName, isJceSupported); in IkeMacPrf()
65 int algorithmId = prfTransform.id; in create() local
71 switch (algorithmId) { in create()
98 throw new IllegalArgumentException("Unrecognized PRF ID: " + algorithmId); in create()
101 return new IkeMacPrf(algorithmId, keyLength, algorithmName, isJceSupported); in create()
DIkeCombinedModeCipher.java54 int algorithmId, int keyLength, int ivLength, String algorithmName, int saltLen) { in IkeCombinedModeCipher() argument
55 this(algorithmId, keyLength, ivLength, algorithmName, saltLen, BLOCK_SIZE_NOT_SPECIFIED); in IkeCombinedModeCipher()
60 int algorithmId, in IkeCombinedModeCipher() argument
66 super(algorithmId, keyLength, ivLength, algorithmName, true /*isAead*/, saltLen, blockSize); in IkeCombinedModeCipher()
67 switch (algorithmId) { in IkeCombinedModeCipher()
82 "Unrecognized Encryption Algorithm ID: " + algorithmId); in IkeCombinedModeCipher()
DIkeNormalModeCipher.java45 IkeNormalModeCipher(int algorithmId, int keyLength, int ivLength, String algorithmName) { in IkeNormalModeCipher() argument
46 this(algorithmId, keyLength, ivLength, algorithmName, SALT_LEN_NOT_INCLUDED); in IkeNormalModeCipher()
51 int algorithmId, int keyLength, int ivLength, String algorithmName, int saltLen) { in IkeNormalModeCipher() argument
53 algorithmId, in IkeNormalModeCipher()
DIkeCrypto.java31 protected IkeCrypto(int algorithmId, int keyLength, String algorithmName) { in IkeCrypto() argument
32 mAlgorithmId = algorithmId; in IkeCrypto()
DIkeMac.java37 protected IkeMac(int algorithmId, int keyLength, String algorithmName, boolean isJceSupported) { in IkeMac() argument
38 super(algorithmId, keyLength, algorithmName); in IkeMac()
/aosp_15_r20/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/
H A 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()
/aosp_15_r20/external/aws-sdk-java-v2/core/checksums/src/test/java/software/amazon/awssdk/checksums/
H A DDefaultChecksumAlgorithmTest.java26 assertEquals("CRC32C", DefaultChecksumAlgorithm.CRC32C.algorithmId()); in hasCRC32C()
31 assertEquals("CRC32", DefaultChecksumAlgorithm.CRC32.algorithmId()); in hasCRC32()
36 assertEquals("MD5", DefaultChecksumAlgorithm.MD5.algorithmId()); in hasMD5()
41 assertEquals("SHA256", DefaultChecksumAlgorithm.SHA256.algorithmId()); in hasSHA256()
46 assertEquals("SHA1", DefaultChecksumAlgorithm.SHA1.algorithmId()); in hasSHA1()
/aosp_15_r20/libcore/ojluni/src/main/java/sun/security/provider/certpath/
H A DAlgorithmChecker.java272 AlgorithmId algorithmId; in check() local
275 algorithmId = (AlgorithmId)x509Cert.get(X509CertImpl.SIG_ALG); in check()
280 AlgorithmParameters currSigAlgParams = algorithmId.getParameters(); in check()
401 AlgorithmId algorithmId = x509CRLImpl.getSigAlgId(); in check() local
402 check(key, algorithmId); in check()
411 static void check(PublicKey key, AlgorithmId algorithmId) in check() argument
413 String sigAlgName = algorithmId.getName(); in check()
414 AlgorithmParameters sigAlgParams = algorithmId.getParameters(); in check()
/aosp_15_r20/frameworks/base/services/core/java/com/android/server/
H A DBinaryTransparencyService.java589 Integer algorithmId = entry.getKey(); in onShellCommand() local
592 pw.print(translateContentDigestAlgorithmIdToString(algorithmId)); in onShellCommand()
626 Integer algorithmId = entry.getKey(); in onShellCommand() local
633 algorithmId)); in onShellCommand()
1747 private String translateContentDigestAlgorithmIdToString(int algorithmId) { in translateContentDigestAlgorithmIdToString() argument
1748 switch (algorithmId) { in translateContentDigestAlgorithmIdToString()
1758 return "UNKNOWN_ALGO_ID(" + algorithmId + ")"; in translateContentDigestAlgorithmIdToString()
/aosp_15_r20/external/tpm2-tss/src/tss2-fapi/
H A Dfapi_crypto.c1094 TPM2_ALG_ID algorithmId = TPM2_ALG_ERROR; in ifapi_get_signature_algorithm_from_pem() local
1098 algorithmId = TPM2_ALG_ERROR; in ifapi_get_signature_algorithm_from_pem()
1104 algorithmId = TPM2_ALG_RSA; in ifapi_get_signature_algorithm_from_pem()
1106 algorithmId = TPM2_ALG_ECC; in ifapi_get_signature_algorithm_from_pem()
1108 algorithmId = TPM2_ALG_ERROR; in ifapi_get_signature_algorithm_from_pem()
1113 return algorithmId; in ifapi_get_signature_algorithm_from_pem()
/aosp_15_r20/external/aws-sdk-java-v2/core/checksums-spi/src/main/java/software/amazon/awssdk/checksums/spi/
H A DChecksumAlgorithm.java30 String algorithmId(); in algorithmId() method
/aosp_15_r20/external/coreboot/src/vendorcode/intel/edk2/UDK2017/MdePkg/Include/IndustryStandard/
H A DUefiTcgPlatform.h226 UINT16 algorithmId; member
/aosp_15_r20/external/coreboot/src/vendorcode/intel/edk2/edk2-stable202111/MdePkg/Include/IndustryStandard/
H A DUefiTcgPlatform.h360 UINT16 algorithmId; member
/aosp_15_r20/external/coreboot/src/vendorcode/intel/edk2/edk2-stable202005/MdePkg/Include/IndustryStandard/
H A DUefiTcgPlatform.h360 UINT16 algorithmId; member
/aosp_15_r20/external/coreboot/src/vendorcode/intel/edk2/edk2-stable202302/MdePkg/Include/IndustryStandard/
H A DUefiTcgPlatform.h359 UINT16 algorithmId; member
/aosp_15_r20/tools/apksig/src/main/java/com/android/apksig/internal/apk/
H A DApkSigningBlockUtils.java1408 public Signature(int algorithmId, byte[] value) { in Signature() argument
1409 mAlgorithmId = algorithmId; in Signature()
/aosp_15_r20/out/soong/.intermediates/packages/modules/IPsec/android.net.ipsec.ike.impl/android_common_apex30/javac/
Dandroid.net.ipsec.ike.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/net/ android/ ...
/aosp_15_r20/out/soong/.intermediates/packages/modules/IPsec/android.net.ipsec.ike.impl/android_common_apex30/combined/
Dandroid.net.ipsec.ike.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/net/ android/ ...
/aosp_15_r20/out/soong/.intermediates/packages/modules/IPsec/android.net.ipsec.ike.impl/android_common_apex30/package-check/
Dandroid.net.ipsec.ike.jarcom/android/internal/net/vcn/util/PersistableBundleUtils.class PersistableBundleUtils.java package ...
/aosp_15_r20/out/target/common/obj/JAVA_LIBRARIES/android.net.ipsec.ike.com.android.ipsec_intermediates/
Dclasses.jarcom/android/internal/net/vcn/util/PersistableBundleUtils.class PersistableBundleUtils.java package ...
/aosp_15_r20/out/soong/.intermediates/packages/modules/IPsec/android.net.ipsec.ike.impl/android_common_apex30/jarjar/
Dandroid.net.ipsec.ike.jarcom/android/internal/net/vcn/util/PersistableBundleUtils.class PersistableBundleUtils.java package ...
/aosp_15_r20/out/soong/.intermediates/frameworks/base/services/core/services.core.unboosted/android_common/repackaged-jarjar/javac-0/
Dservices.core.unboosted.jarcom/android/server/ondeviceintelligence/callbacks/ListenableDownloadCallback.class ListenableDownloadCallback.java package com. ...

123