FIPS に準拠するよう Jtest を設定できます。
このセクションの内容
https://www.bouncycastle.org/download/bouncy-castle-java-fips/ から以下の BouncyCastle FIPS ライブラリをダウンロードする必要があります。
bc-fips-<VERSION>.jar および bctls-fips-<VERSION>.jar を <JTEST_INSTALL_DIR>/bin
ディレクトリにコピーします。
<JTEST_INSTALL_DIR>/bin/jre/conf/security/
ディレクトリにある java.security ファイルを開いて以下の変更を行います。
security.provider.<number>
という名前の既存のプロパティをすべてコメント アウトし、以下の行を挿入することでセキュリティ プロバイダーのリストを設定します。
security.provider.<number>. and inserting the following lines: security.provider.1=org.bouncycastle.jcajce.provider.BouncyCastleFipsProvider security.provider.2=org.bouncycastle.jsse.provider.BouncyCastleJsseProvider fips:BCFIPS security.provider.3=SUN |
javax.net.ssl package のキー マネージャー ファクトリおよびトラスト マネージャー ファクトリのアルゴリズムを PKIX に変更します。
ssl.KeyManagerFactory.algorithm=PKIX ssl.TrustManagerFactory.algorithm=PKIX |
デフォルトのキーストア タイプを fips に変更し、JKS および PKCS12 キーストア タイプの互換モードを無効にします。
keystore.type=fips keystore.type.compat=false |
(Linux の場合のみ) 既知の強力な SecureRandom 実装のリストに NativePRNGNonBlocking アルゴリズムを追加します。
securerandom.strongAlgorithms=NativePRNGNonBlocking:SUN,NativePRNGBlocking:SUN,DRBG:SUN |
FIPS 認証済みのアルゴリズムだけを許可します。
org.bouncycastle.fips.approved_only=true |
<JTEST_INSTALL_DIR>/bin/jre/conf/security/
ディレクトリにある java.policy ファイルを開き、デフォルト ドメインに次のパーミッションを挿入します。
permission java.lang.RuntimePermission "accessClassInPackage.sun.security.internal.spec"; permission org.bouncycastle.crypto.CryptoServicesPermission "tlsAlgorithmsEnabled"; |
<JTEST_INSTALL_DIR>/bin/jre/conf/
ディレクトリにある logging.properties ファイルを開き、Bouncy Castle のロガー設定を挿入します。
org.bouncycastle.jsse.provider.DisabledAlgorithmConstraints.level=SEVERE org.bouncycastle.jsse.provider.PropertyUtils.level=SEVEREERE |
変更を保存します。