OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:epkInfo
(Results
1 - 4
of
4
) sorted by null
/build/tools/signtos/
SignTos.java
99
EncryptedPrivateKeyInfo
epkInfo
;
101
epkInfo
= new EncryptedPrivateKeyInfo(encryptedPrivateKey);
109
SecretKeyFactory skFactory = SecretKeyFactory.getInstance(
epkInfo
.getAlgName());
112
Cipher cipher = Cipher.getInstance(
epkInfo
.getAlgName());
113
cipher.init(Cipher.DECRYPT_MODE, key,
epkInfo
.getAlgParameters());
116
return
epkInfo
.getKeySpec(cipher);
/system/extras/verity/
Utils.java
140
EncryptedPrivateKeyInfo
epkInfo
;
142
epkInfo
= new EncryptedPrivateKeyInfo(encryptedPrivateKey);
150
SecretKeyFactory skFactory = SecretKeyFactory.getInstance(
epkInfo
.getAlgName());
154
Cipher cipher = Cipher.getInstance(
epkInfo
.getAlgName());
155
cipher.init(Cipher.DECRYPT_MODE, key,
epkInfo
.getAlgParameters());
158
return
epkInfo
.getKeySpec(cipher);
/build/tools/signapk/src/com/android/signapk/
SignApk.java
226
EncryptedPrivateKeyInfo
epkInfo
;
228
epkInfo
= new EncryptedPrivateKeyInfo(encryptedPrivateKey);
236
SecretKeyFactory skFactory = SecretKeyFactory.getInstance(
epkInfo
.getAlgName());
239
Cipher cipher = Cipher.getInstance(
epkInfo
.getAlgName());
240
cipher.init(Cipher.DECRYPT_MODE, key,
epkInfo
.getAlgParameters());
243
return
epkInfo
.getKeySpec(cipher);
[
all
...]
/prebuilts/sdk/tools/lib/
signapk.jar
Completed in 2604 milliseconds