HomeSort by relevance Sort by last modified time
    Searched full:wrappedkey (Results 1 - 25 of 38) sorted by null

1 2

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/util/
BaseCipherSpi.java 138 byte[] wrappedKey,
148 encoded = engineDoFinal(wrappedKey, 0, wrappedKey.length);
152 encoded = wrapEngine.unwrap(wrappedKey, 0, wrappedKey.length);
  /external/guice/extensions/multibindings/test/com/google/inject/multibindings/
ProvidesIntoTest.java 104 @WrappedKey(number = 1)
108 @WrappedKey(number = 2)
148 Map<WrappedKey, Number> wrappedMap =
149 injector.getInstance(new Key<Map<WrappedKey, Number>>() {});
177 @interface WrappedKey {
181 @SuppressWarnings("unused") @WrappedKey(number=1) private static Object wrappedKey1Holder;
182 @SuppressWarnings("unused") @WrappedKey(number=2) private static Object wrappedKey2Holder;
183 WrappedKey wrappedKeyFor(int number) throws Exception {
195 return field.getAnnotation(WrappedKey.class);
  /frameworks/base/media/lib/signer/java/com/android/mediadrm/signer/
MediaDrmSigner.java 129 * @param wrappedKey - the wrapped (encrypted) RSA private key obtained
134 String algorithm, byte[] wrappedKey, byte[] message) {
135 return drm.signRSA(sessionId, algorithm, wrappedKey, message);
  /frameworks/av/drm/mediadrm/plugins/clearkey/
DrmPlugin.h 101 Vector<uint8_t>& wrappedKey) {
103 UNUSED(wrappedKey);
234 const Vector<uint8_t>& wrappedKey,
237 message.size() == 0 || wrappedKey.size() == 0) {
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/util/
BaseWrapCipher.java 324 byte[] wrappedKey,
334 encoded = engineDoFinal(wrappedKey, 0, wrappedKey.length);
338 encoded = wrapEngine.unwrap(wrappedKey, 0, wrappedKey.length);
  /hardware/interfaces/drm/1.0/default/
DrmPlugin.cpp 165 Vector<uint8_t> wrappedKey;
168 toVector(response), certificate, wrappedKey);
171 toHidlVec(wrappedKey));
312 const hidl_vec<uint8_t>& wrappedKey, signRSA_cb _hidl_cb) {
316 String8(algorithm.c_str()), toVector(message), toVector(wrappedKey),
DrmPlugin.h 127 const hidl_vec<uint8_t>& wrappedkey, signRSA_cb _hidl_cb) override;
  /frameworks/av/drm/libmediadrm/
IDrm.cpp 265 Vector<uint8_t> &wrappedKey) {
276 readVector(reply, wrappedKey);
513 Vector<uint8_t> const &wrappedKey,
521 writeVector(data, wrappedKey);
737 Vector<uint8_t> wrappedKey;
739 status_t result = provideProvisionResponse(response, certificate, wrappedKey);
741 writeVector(reply, wrappedKey);
911 Vector<uint8_t> sessionId, message, wrappedKey, signature;
915 readVector(data, wrappedKey);
916 uint32_t result = signRSA(sessionId, algorithm, message, wrappedKey, signature)
    [all...]
DrmHal.cpp 676 Vector<uint8_t> &certificate, Vector<uint8_t> &wrappedKey) {
690 wrappedKey = toVector(hWrappedKey);
980 Vector<uint8_t> const &wrappedKey, Vector<uint8_t> &signature) {
996 toHidlString(algorithm), toHidlVec(message), toHidlVec(wrappedKey),
  /frameworks/av/drm/mediadrm/plugins/mock/
MockDrmCryptoPlugin.h 88 Vector<uint8_t> &wrappedKey);
136 Vector<uint8_t> const &wrappedKey,
MockDrmCryptoPlugin.cpp 303 Vector<uint8_t> & /* wrappedKey */)
707 Vector<uint8_t> const &wrappedKey,
716 vectorToString(wrappedKey).string(),
720 // byte[] wrappedKey -> mock-wrappedkey
726 mByteArrayProperties.add(String8("mock-wrappedkey"), wrappedKey);
  /frameworks/av/media/libmedia/include/media/
Drm.h 78 Vector<uint8_t> &wrappedKey);
125 Vector<uint8_t> const &wrappedKey,
DrmHal.h 93 Vector<uint8_t> &wrappedKey);
140 Vector<uint8_t> const &wrappedKey,
IDrm.h 73 Vector<uint8_t> &wrappedKey) = 0;
121 Vector<uint8_t> const &wrappedKey,
  /frameworks/base/keystore/java/android/security/keystore/
AndroidKeyStoreCipherSpiBase.java 663 protected final Key engineUnwrap(byte[] wrappedKey, String wrappedKeyAlgorithm,
674 if (wrappedKey == null) {
675 throw new NullPointerException("wrappedKey == null");
680 encoded = engineDoFinal(wrappedKey, 0, wrappedKey.length);
    [all...]
  /external/conscrypt/common/src/main/java/org/conscrypt/
OpenSSLCipherRSA.java 333 protected Key engineUnwrap(byte[] wrappedKey, String wrappedKeyAlgorithm,
336 byte[] encoded = engineDoFinal(wrappedKey, 0, wrappedKey.length);
OpenSSLCipher.java 402 protected Key engineUnwrap(byte[] wrappedKey, String wrappedKeyAlgorithm, int wrappedKeyType)
405 byte[] encoded = engineDoFinal(wrappedKey, 0, wrappedKey.length);
    [all...]
  /hardware/interfaces/drm/1.0/
IDrmPlugin.hal 211 * @return wrappedKey an opaque object containing encrypted private key
216 vec<uint8_t> certificate, vec<uint8_t> wrappedKey);
481 * @param wrappedKey the private key returned during provisioning as
491 vec<uint8_t> wrappedkey)
  /frameworks/base/media/jni/
android_media_MediaDrm.cpp     [all...]
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
CipherSpiTest.java 134 protected Key engineUnwrap(byte[] wrappedKey, String wrappedKeyAlgorithm, int wrappedKeyType)
136 return super.engineUnwrap(wrappedKey, wrappedKeyAlgorithm, wrappedKeyType);
  /frameworks/base/media/java/android/media/
MediaDrm.java     [all...]
  /libcore/ojluni/src/main/java/javax/crypto/
CipherSpi.java     [all...]
Cipher.java     [all...]
  /hardware/interfaces/drm/1.0/vts/functional/
drm_hal_clearkey_test.cpp 852 hidl_vec<uint8_t> wrappedKey = {0, 0, 0, 0, 0, 0, 0, 0,
854 auto res = drmPlugin->signRSA(session, algorithm, message, wrappedKey,
    [all...]
drm_hal_vendor_test.cpp     [all...]

Completed in 857 milliseconds

1 2