OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:macAlgorithm
(Results
1 - 4
of
4
) sorted by null
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/
CMSAlgorithmProtection.java
18
*
macAlgorithm
[2] MessageAuthenticationCodeAlgorithm
22
*
macAlgorithm
ABSENT } |
24
*
macAlgorithm
PRESENT })
35
private final AlgorithmIdentifier
macAlgorithm
;
49
this.
macAlgorithm
= null;
54
this.
macAlgorithm
= algorithmIdentifier;
66
throw new IllegalArgumentException("Sequence wrong size: One of signatureAlgorithm or
macAlgorithm
must be present");
75
this.
macAlgorithm
= null;
81
this.
macAlgorithm
= AlgorithmIdentifier.getInstance(tagged, false);
112
return
macAlgorithm
;
[
all
...]
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/asn1/cms/
CMSAlgorithmProtection.java
19
*
macAlgorithm
[2] MessageAuthenticationCodeAlgorithm
23
*
macAlgorithm
ABSENT } |
25
*
macAlgorithm
PRESENT })
37
private final AlgorithmIdentifier
macAlgorithm
;
51
this.
macAlgorithm
= null;
56
this.
macAlgorithm
= algorithmIdentifier;
68
throw new IllegalArgumentException("Sequence wrong size: One of signatureAlgorithm or
macAlgorithm
must be present");
77
this.
macAlgorithm
= null;
83
this.
macAlgorithm
= AlgorithmIdentifier.getInstance(tagged, false);
114
return
macAlgorithm
;
[
all
...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/keystore/pkcs12/
PKCS12KeyStoreSpi.java
159
private AlgorithmIdentifier
macAlgorithm
= new AlgorithmIdentifier(OIWObjectIdentifiers.idSHA1, DERNull.INSTANCE);
824
macAlgorithm
= dInfo.getAlgorithmId();
833
byte[] res = calculatePbeMac(
macAlgorithm
.getAlgorithm(), salt, itCount, password, false, data);
844
res = calculatePbeMac(
macAlgorithm
.getAlgorithm(), salt, itCount, password, true, data);
[
all
...]
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/jcajce/provider/keystore/pkcs12/
PKCS12KeyStoreSpi.java
163
private AlgorithmIdentifier
macAlgorithm
= new AlgorithmIdentifier(OIWObjectIdentifiers.idSHA1, DERNull.INSTANCE);
828
macAlgorithm
= dInfo.getAlgorithmId();
837
byte[] res = calculatePbeMac(
macAlgorithm
.getAlgorithm(), salt, itCount, password, false, data);
848
res = calculatePbeMac(
macAlgorithm
.getAlgorithm(), salt, itCount, password, true, data);
[
all
...]
Completed in 356 milliseconds