Searched refs:iv (Results 1 - 25 of 27) sorted by relevance

12

/forgerock/openam-v13/openam-shared/src/main/java/com/iplanet/am/util/
H A DJSSInit.java169 CryptoManager.InitializationValues iv = null;
172 iv = new CryptoManager.InitializationValues(certdbDir);
175 iv = new CryptoManager.InitializationValues(certdbDir,
183 iv.getManufacturerID());
185 iv.getLibraryDescription());
187 iv.getInternalSlotDescription());
189 iv.getInternalTokenDescription());
191 iv.getFIPSKeyStorageSlotDescription());
193 iv.getInternalKeyStorageTokenDescription());
195 iv
[all...]
/forgerock/openam-v13/openam-shared/src/main/java/com/iplanet/services/util/
H A DJCEEncryption.java173 byte[] iv = pbeCipher.getIV();
175 result = addPrefix(type, iv, result);
202 * @param iv
205 private static byte[] addPrefix(byte type[], byte iv[], byte share[]) { argument
213 data[3 + i] = iv[i];
H A DJSSEncryption.java295 //secureRandom.nextBytes(iv);
297 byte iv[] = ivSpec.getIV();
300 enc = addPrefix(type, iv, enc);
373 private static byte[] addPrefix(byte type[], byte iv[], byte share[]) { argument
379 data[3+i] = iv[i];
395 byte iv[] = new byte[8];
397 iv[i] = share[i+3];
399 return iv;
/forgerock/openam/openam-shared/src/main/java/com/iplanet/services/util/
H A DJCEEncryption.java173 byte[] iv = pbeCipher.getIV();
175 result = addPrefix(type, iv, result);
202 * @param iv
205 private static byte[] addPrefix(byte type[], byte iv[], byte share[]) { argument
213 data[3 + i] = iv[i];
/forgerock/opendj-b2.6/src/server/org/opends/server/crypto/
H A DCryptoManagerImpl.java1700 final byte[] iv = cipher.getIV();
1701 keyEntry.setIVLengthBits((null == iv) ? 0 : iv.length * Byte.SIZE);
1886 byte[] iv = null;
1888 iv = new byte[ivLengthBits / Byte.SIZE];
1889 pseudoRandom.nextBytes(iv);
1891 getCipher(keyEntry, Cipher.DECRYPT_MODE, iv);
2176 byte[] iv;
2178 iv = new byte[keyEntry.getIVLengthBits() / Byte.SIZE];
2179 pseudoRandom.nextBytes(iv);
[all...]
/forgerock/opendj2/src/server/org/opends/server/crypto/
H A DCryptoManagerImpl.java1699 final byte[] iv = cipher.getIV();
1700 keyEntry.setIVLengthBits(null == iv ? 0 : iv.length * Byte.SIZE);
1885 byte[] iv = null;
1887 iv = new byte[ivLengthBits / Byte.SIZE];
1888 pseudoRandom.nextBytes(iv);
1890 getCipher(keyEntry, Cipher.DECRYPT_MODE, iv);
2175 byte[] iv;
2177 iv = new byte[keyEntry.getIVLengthBits() / Byte.SIZE];
2178 pseudoRandom.nextBytes(iv);
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/crypto/
H A DCryptoManagerImpl.java1700 final byte[] iv = cipher.getIV();
1701 keyEntry.setIVLengthBits((null == iv) ? 0 : iv.length * Byte.SIZE);
1886 byte[] iv = null;
1888 iv = new byte[ivLengthBits / Byte.SIZE];
1889 pseudoRandom.nextBytes(iv);
1891 getCipher(keyEntry, Cipher.DECRYPT_MODE, iv);
2176 byte[] iv;
2178 iv = new byte[keyEntry.getIVLengthBits() / Byte.SIZE];
2179 pseudoRandom.nextBytes(iv);
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/crypto/
H A DCryptoManagerImpl.java1700 final byte[] iv = cipher.getIV();
1701 keyEntry.setIVLengthBits((null == iv) ? 0 : iv.length * Byte.SIZE);
1886 byte[] iv = null;
1888 iv = new byte[ivLengthBits / Byte.SIZE];
1889 pseudoRandom.nextBytes(iv);
1891 getCipher(keyEntry, Cipher.DECRYPT_MODE, iv);
2176 byte[] iv;
2178 iv = new byte[keyEntry.getIVLengthBits() / Byte.SIZE];
2179 pseudoRandom.nextBytes(iv);
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/crypto/
H A DCryptoManagerImpl.java1699 final byte[] iv = cipher.getIV();
1700 keyEntry.setIVLengthBits(null == iv ? 0 : iv.length * Byte.SIZE);
1885 byte[] iv = null;
1887 iv = new byte[ivLengthBits / Byte.SIZE];
1888 pseudoRandom.nextBytes(iv);
1890 getCipher(keyEntry, Cipher.DECRYPT_MODE, iv);
2175 byte[] iv;
2177 iv = new byte[keyEntry.getIVLengthBits() / Byte.SIZE];
2178 pseudoRandom.nextBytes(iv);
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/crypto/
H A DCryptoManagerImpl.java1539 final byte[] iv = cipher.getIV();
1540 keyEntry.setIVLengthBits(null == iv ? 0 : iv.length * Byte.SIZE);
1702 byte[] iv = null;
1704 iv = new byte[ivLengthBits / Byte.SIZE];
1705 secureRandom.nextBytes(iv);
1707 getCipher(keyEntry, Cipher.DECRYPT_MODE, iv);
1990 byte[] iv;
1992 iv = new byte[keyEntry.getIVLengthBits() / Byte.SIZE];
1993 secureRandom.nextBytes(iv);
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/util/
H A DCrypt.java370 int iv = FP[j] - 1;
371 a = (iv <= 31) ? _c._L[iv] : _c._R[iv - 32];
/forgerock/opendj2/src/server/org/opends/server/util/
H A DCrypt.java369 int iv = FP[j] - 1;
370 a = (iv <= 31) ? _c._L[iv] : _c._R[iv - 32];
/forgerock/opendj2.6.2/src/server/org/opends/server/util/
H A DCrypt.java370 int iv = FP[j] - 1;
371 a = (iv <= 31) ? _c._L[iv] : _c._R[iv - 32];
/forgerock/opendj2-jel-hg/src/server/org/opends/server/util/
H A DCrypt.java370 int iv = FP[j] - 1;
371 a = (iv <= 31) ? _c._L[iv] : _c._R[iv - 32];
/forgerock/opendj2-hg/src/server/org/opends/server/util/
H A DCrypt.java369 int iv = FP[j] - 1;
370 a = (iv <= 31) ? _c._L[iv] : _c._R[iv - 32];
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/util/
H A DCrypt.java376 int iv = FP[j] - 1;
377 int a = (iv <= 31) ? _c._L[iv] : _c._R[iv - 32];
/forgerock/opendj2/ext/svnkit/lib/
H A Dtrilead-ssh2-1.0.0-build217.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt com/ com/trilead/ com/ ...
/forgerock/opendj-b2.6/ext/svnkit/
H A Dtrilead.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt com/ com/trilead/ com/ ...
/forgerock/opendj2.6.2/ext/svnkit/
H A Dtrilead.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt com/ com/trilead/ com/ ...
/forgerock/opendj2-hg/ext/svnkit/lib/
H A Dtrilead-ssh2-1.0.0-build217.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt com/ com/trilead/ com/ ...
/forgerock/opendj-b2.6/ext/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...
/forgerock/opendj2/ext/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...
/forgerock/opendj2.6.2/ext/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...
/forgerock/opendj2-jel-hg/ext/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...
/forgerock/opendj2-hg/ext/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...

Completed in 169 milliseconds

12