HomeSort by relevance Sort by last modified time
    Searched refs:i2d_PUBKEY (Results 1 - 11 of 11) sorted by null

  /external/openssl/crypto/asn1/
x_pubkey.c 216 int i2d_PUBKEY(EVP_PKEY *a, unsigned char **pp)
264 ret = i2d_PUBKEY(pktmp, pp);
304 ret = i2d_PUBKEY(pktmp, pp);
342 ret = i2d_PUBKEY(pktmp, pp);
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
OpenSSLDSAPublicKey.java 92 return NativeCrypto.i2d_PUBKEY(key.getPkeyContext());
OpenSSLRSAPublicKey.java 88 return NativeCrypto.i2d_PUBKEY(key.getPkeyContext());
NativeCrypto.java 87 public static native byte[] i2d_PUBKEY(int pkey);
  /hardware/samsung_slsi/exynos5/libkeymaster/
keymaster_mobicore.cpp 309 int len = i2d_PUBKEY(pkey.get(), NULL);
311 logOpenSSLError("i2d_PUBKEY");
322 if (i2d_PUBKEY(pkey.get(), &tmp) != len) {
  /system/security/softkeymaster/
keymaster_openssl.cpp 316 int len = i2d_PUBKEY(pkey.get(), NULL);
329 if (i2d_PUBKEY(pkey.get(), &tmp) != len) {
  /external/openssl/crypto/x509/
x_all.c 483 return ASN1_i2d_fp_of(EVP_PKEY,i2d_PUBKEY,fp,pkey);
529 return ASN1_i2d_bio_of(EVP_PKEY,i2d_PUBKEY,bp,pkey);
x509.h 802 int i2d_PUBKEY(EVP_PKEY *a,unsigned char **pp);
    [all...]
  /device/samsung/tuna/keymaster/
keymaster_tuna.cpp 686 int len = i2d_PUBKEY(pkey.get(), NULL);
699 if (i2d_PUBKEY(pkey.get(), &tmp) != len) {
  /external/openssl/include/openssl/
x509.h 802 int i2d_PUBKEY(EVP_PKEY *a,unsigned char **pp);
    [all...]
  /libcore/luni/src/main/native/
org_apache_harmony_xnet_provider_jsse_NativeCrypto.cpp 1019 * static native byte[] i2d_PUBKEY(int)
1023 JNI_TRACE("i2d_PUBKEY(%p)", pkey);
1030 int len = i2d_PUBKEY(pkey, NULL);
1032 throwExceptionIfNecessary(env, "i2d_PUBKEY");
1033 JNI_TRACE("i2d_PUBKEY(%p) => threw error measuring key", pkey);
1044 if (i2d_PUBKEY(pkey, &tmp) < 0) {
1045 throwExceptionIfNecessary(env, "i2d_PUBKEY");
1046 JNI_TRACE("i2d_PUBKEY(%p) => threw error converting key", pkey);
1050 JNI_TRACE("pkey=%p i2d_PUBKEY => size=%d", pkey, len);
    [all...]

Completed in 4580 milliseconds