Java Code Examples for sun.security.x509.AlgorithmId#SHA512_256_oid
The following examples show how to use
sun.security.x509.AlgorithmId#SHA512_256_oid .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: RSASignature.java From openjdk-jdk8u with GNU General Public License v2.0 | 4 votes |
public SHA512_256withRSA() { super("SHA-512/256", AlgorithmId.SHA512_256_oid, 11); }
Example 2
Source File: RSASignature.java From Bytecoder with Apache License 2.0 | 4 votes |
public SHA512_256withRSA() { super("SHA-512/256", AlgorithmId.SHA512_256_oid, 11); }
Example 3
Source File: RSASignature.java From jdk8u_jdk with GNU General Public License v2.0 | 4 votes |
public SHA512_256withRSA() { super("SHA-512/256", AlgorithmId.SHA512_256_oid, 11); }