Searched refs:pSeed (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/security/pkcs11/wrapper/
H A DCK_TLS_PRF_PARAMS.java36 public byte[] pSeed; field in class:CK_TLS_PRF_PARAMS
40 public CK_TLS_PRF_PARAMS(byte[] pSeed, byte[] pLabel, byte[] pOutput) { argument
41 this.pSeed = pSeed;
H A DPKCS11.java1374 * @param pSeed the seed material and the seed material's length
1375 * (PKCS#11 param: CK_BYTE_PTR pSeed, CK_ULONG ulSeedLen)
1377 * @preconditions (pSeed <> null)
1380 public native void C_SeedRandom(long hSession, byte[] pSeed) throws PKCS11Exception; argument
1693 public synchronized void C_SeedRandom(long hSession, byte[] pSeed) throws PKCS11Exception { argument
1694 super.C_SeedRandom(hSession, pSeed);
/openjdk7/jdk/src/share/native/sun/security/pkcs11/wrapper/
H A Dp11_convert.c532 /* get pSeed */
535 fieldID = (*env)->GetFieldID(env, jTlsPrfParamsClass, "pSeed", "[B");
550 jByteArrayToCKByteArray(env, jSeed, &(ckParam.pSeed), &(ckParam.ulSeedLen));
554 free(ckParam.pSeed);
559 free(ckParam.pSeed);
566 free(ckParam.pSeed);
H A Dpkcs11f.h859 CK_BYTE_PTR pSeed, /* the seed material */
H A Dpkcs11t.h1551 CK_BYTE_PTR pSeed; member in struct:CK_TLS_PRF_PARAMS
1582 CK_BYTE_PTR pSeed; member in struct:CK_WTLS_PRF_PARAMS
H A Dp11_keymgmt.c450 free(ckTLSPrfParams->pSeed);

Completed in 57 milliseconds