The term "fips" commonly refers to the Federal Information Processing Standards Publication 140 (FIPS 140), a document published by the National Institute of Standards and Technology (NIST), a U.S. government agency. Cryptographic software and hardware that complies with the standard must use only ...

learn more… | top users | synonyms

0
votes
0answers
4 views

Compile OpenSSL FIPS for Android armv6

I have seen several answers for how to compile OpenSSL for Android, and the FIPS module for Android armv7 (which I followed), but I have yet to figure out how to make the FIPS module for armv6 on ...
0
votes
1answer
27 views

FIPS country codes in objective-c

I need to use FIPS country codes in my app. Is there a way to find them? I've tried NSLocaleCountryCode but these codes are different than FIPS. Does anyone know how can I do it?
0
votes
0answers
15 views

Converting Address (Street Address, City, State, Zip Code) to FIPS Code

I am trying to convert an address of the type: 24 Willie Mays Plaza, San Francisco, CA 94107 to a FIPS code (in this case, it would be 075). Does anyone know any tools that can do this? Would even ...
0
votes
1answer
13 views

Maximum filesize per file can FIP service handle

We got this alert and it appears that the controller server was unable to transfer the file to our production server due to the file too large to be transferred to our Production Server/s: exception: ...
0
votes
0answers
38 views

scp fails with “FIPS_mode_set:fingerprint does not match” error

I have the following machine: Linux ssim-21416 2.6.18-348.3.1.el5 #1 SMP Mon Mar 11 19:39:25 EDT 2013 x86_64 x86_64 x86_64 GNU/Linux and CentOS release 5.9 (Final) now when i try to do scp or ...
2
votes
1answer
75 views

FIPS compliant SSH library for Java

I want to implement SCP (Secure Copy) functionality in my Java application to copy a file from the SSH server to another machine. My java application must be FIPS compliant and hence it uses SunPKCS11 ...
0
votes
0answers
120 views

Openssl cross-compile linking issues when using fips module

I'm attempting to add the Openssl FIPS module to an existing embedded powerpc system running Linux. Its mostly going well, but I'm stuck on an issue that occurs during the linking phase. If I don't ...
1
vote
1answer
116 views

Looking for Java wrapper for curl library

I am looking for Java wrapper for curl. I understand Java has excellent apis for http and https connections (i.e. standard as well as Apache http client). I have a scenario where my https connections ...
0
votes
1answer
102 views

FIPS approved random number generator in VB script and Java script

My project is about sending a random number from client side to server side. Since my random number should be approved by FIPS 196, I wonder if there is a way that I can generate this random number ...
1
vote
0answers
93 views

Deploying a FIPS enabled Apache/OpenSSL

I've built Apache with mod_ssl/OpenSSL for FIPS compliance (I'm building and installing in a Windows environment) and it works locally. I can do the following: openssl md5 C:\path\to\random\file.txt ...
1
vote
1answer
113 views

This implementation is not part of the Windows Platform FIPS validated cryptographic algorithms when building an app with visual studio

I am trying to compile my program in visual studio and I am getting a FIPS Cryptographic algorithms error. I have checked the registry key and it is set to false. Any suggestions?
0
votes
1answer
57 views

FIPS error when using SHA512Cng on a FIPS Compliance enabled computer Asp.Net

I tried to search the forum but didn't find what I needed. We have an Asp.Net web app that we want to be FIPS compliant. After some research it seems that SHA512Cng class is Fips compliant and can be ...
4
votes
1answer
302 views

FIPS Compliance and BouncyCastle

I wish to know if my Android App is FIPS 140-2 compliant if it uses only the crypto algorithms provided here? I use SpongyCastle to implement these algorithms. Edit: A generalised question : Can ...
2
votes
2answers
70 views

Hashing algorithm that meet FISMA / other federal informations systems requirements

I work in an organization that must meet FISMA requirements for FIPS-enabled systems. One of the thing that I am trying to do is implement a hash algorithm for our passwords. I have many choice on ...
0
votes
0answers
228 views

Apple: OpenSSL and `make depend`

I'm trying to build a FIPS Capable OpenSSL for an iDevice. I'm working with the FIPS 2.0 gear, and the 1.0.1 sources. Step 1 is OpenSSL FIPS Object Module, and it went fairly well. Step 2 is FIPS ...
2
votes
1answer
88 views

mono for android error CopyGeneratedJavaResourceClasses

I am installing mono for android on my pc I installed Xamarin Installer for Mono for Android when the installer finished I opened MonoDevelop and created new android project and get this error ...
1
vote
0answers
108 views

How to use DRBG from OpenSSL FIPS Object module v2.0

I am trying to use the OpenSSL FIPS Object module v2.0 with the base OpenSSL library (1.0.1c) to make my application FIPS 140-2 complaint. The problem is I am not able to figure out how to use the ...
0
votes
0answers
161 views

FIPS 140-2 compliant SFTP java code to send files

I have a requirement where in I have to listen to a folder, pick the gzip-ed xml file from the file system and send to a remote server of other organization outside our Intranet network via SFTP ...
1
vote
1answer
122 views

FIPS 140-2 Level 1 Certification

I have a custom Android device. I need to protect the data-at-rest with FIPS certified (140-2 Level 1) cryptographic module. I have several questions If such cryptographic module exist in open ...
1
vote
1answer
88 views

Is there a way to enable FIPS mode on a Windows Mobile device?

I'm using a Windows Mobile 6.5 device, and was wondering, is there a way to enable FIPS only mode on it, the way you can in Windows 7 and XP? The equivalent setting I've found on a desktop OS is: ...
0
votes
0answers
134 views

FIPS-2.0 build for Android ARMv6 and ARMv7 support

I followed the link Android, build openssl-fips-2.0 for building fips-2.0 compliant using openssl -1.0.c . It was working wonderful untill armv7 architecture, where to build for armv6 I think we ...
1
vote
1answer
717 views

ASP.net This implementation is not part of the Windows Platform FIPS validated cryptographic algorithms

Hey all i am getting this error when trying to compare a password in my database using my ASP.net page. This implementation is not part of the Windows Platform FIPS validated cryptographic ...
3
votes
1answer
260 views

How to build fips compliant sqlcipher to call FIPS_mode_set(1)

I built libcrypto.so.1.0.0 with fips compliant as described here I tried to include libcrypto.so.1.0.0 (by creating symbolic link for the file libcrypto.so in android libs folder) and tried to call ...
2
votes
1answer
595 views

This implementation is not part of the Windows Platform FIPS validated cryptographic algorithms while caching

We have created a web app that caches a drop down list of states and only recaches once a week. I disabled FIPS in the registry and cannot find any information on what to do about this issue. ...
2
votes
0answers
330 views

OpenSSL with FIPS cross compiling for iOS armv7

I cross compiled the FIPS for armv7 using the instructions from http://opensslfoundation.com/testing/validation-2.0/platforms/ios/ I am having difficulties cross compiling openssl dependency on fips. ...
0
votes
1answer
740 views

Using openssl-fips-2.0 shared libraries in Android

I was able to follow directions in this question to build a shared lib of openssl for Android. E.g. cd openssl-fips-2.0/ ./config make make install And cd openssl-1.0.1c/ ./config fips ...
5
votes
2answers
428 views

Using OpenSSL in FIPS mode with .NET

I've build OpenSSL FIPS container version 2.0.1, then built OpenSSL 1.0.1c using that container (according to the instructions in User Guide for the OpenSSL FIPS Object Module v2.0): SET ...
0
votes
1answer
148 views

gdb throws error when I include openssl FIPS libraries during prelaunch of the app. Linking is fine

Editing this question as the problem is now different. I got rid of the linking problem by building it for the right platform ( armv7). Now , I am stuck into another issue which doesnt let me launch ...
0
votes
1answer
116 views

Is there a way to extract secret key from NSS

I am using NSS as my keystore. I have generated a secret key which i use for encrypting/decrypting sensitive data (using AES) and all works fine. For portability, is there a way in which this secret ...
1
vote
1answer
121 views

Enable FIPS on PostgreSQL db

Can someone please specify the steps to enable FIPS on Postgres Database? I have googled but was not able to find anything concrete.
0
votes
1answer
61 views

not able to find fips.ora file

I am configuring Oracle Database in fips compliant mode, but not able to find fips.ora, can someone please tell me do i need to create a new file or there is any default location?
0
votes
1answer
265 views

openssl-fips-2.0 in core failure for Android

I have successfully built openssl-fips-2.0 + openssl-1.0.1c for Android using ndk-r8. I am doing cross-compile on Mac OSX. However, I cannot pass FIPS_mode_set(1). I get the following error: "FIPS ...
0
votes
0answers
302 views

Building FIPS capable openssl for iOS

I have been trying to get OpenSSL with FIPS to work for iOS. Based on the documentation at http://www.openssl.org/docs/fips/UserGuide-1.2.pdf I managed to the the canister built, next thing is to ...
1
vote
0answers
165 views

IIS7 App Pool can't load library with Fixed Base Address

My .NET 4.0 Web services are using libeay32.dll, which is compiled in VS2010 with the /FIXED option in order to be FIPS compliant. This means that libeay32.dll fails to load unless it gets to live in ...
0
votes
1answer
314 views

Android, how to use fipsld in “ndk-build” for openssl

In order to use fips-capable openssl library (libcrypto.a in my case) on android, I need to link the built libcrypto.a in my.so (JNI code). According to openssl fips 2.0 user manual, fipsld should be ...
6
votes
3answers
492 views

Why MD5 is required for JCE initialization

I am experimenting on enabling FIPS 180-3 on my java application. FIPS 180-3 allows only usage of 5 secure [hashes] (http://csrc.nist.gov/publications/fips/fips180-3/fips180-3_final.pdf) , MD5 is not ...
0
votes
0answers
240 views

openssl fips error

I use OpenSSL libraries in a service project running in Windows. These libraries are build as FIPS compliant. In a 32-bit Windows OS, the service works fine. However, the program crashes when I try to ...
0
votes
1answer
460 views

Building FIPS module for android

I am working on an android project that requires the cryptographic libraries that are present in the application to be FIPS certified. To my knowledge there are no FIPS compliant JAVA security ...
2
votes
1answer
50 views

What data for BCryptGetFipsAlgorithmMode use to determine FIPs status?

I am having a hard time finding out what factors go into determining whether BCryptGetFipsAlgorithmMode() returns TRUE or FALSE. Does it just return the status of: ...
2
votes
1answer
380 views

PIV Smart Card - GENERAL AUTHENTICATE - Sign a nonce

I was hoping someone could help me with the PIV smart card standard. I would like to authenticate the smart card by making it sign a PKCS#1 padded nonce with the previously generated RSA 1024-bit ...
1
vote
1answer
409 views

unknown build error “This implementation is not part of the Windows Platform FIPS validated cryptographic algorithms”

So I enabled this group policy and the first time I tried to compile my solution I get this error. The funny thing is that I only use cryptographic function in one place but what I am seeing this on ...
-1
votes
1answer
132 views

Making OpenLdap fips 140-2 compatible

I'm hoping that I'm not asking the wrong question or repeating another question. i m trying to make my ldap application fips 140-2 compliant. It uses OpenLDAP , so i think i should first try to make ...
4
votes
2answers
821 views

FIPS HMAC SHA512

I'm hoping this isn't a repeat question, I couldn't find exactly what I was looking for on this site. So I'm building a FIPS compliant application and have the FIPS mode turned on on my computer. I ...
2
votes
1answer
834 views

trying to enable FIPS mode using SunPKCS11 with NSS in Java

I'm working on a project requiring FIPS 140-2 compliant cryptography, and I'm trying to use NSS with the SunPKCS11 token interface, and I've gotten it working up until turning on FIPS mode in NSS. I ...
1
vote
0answers
206 views

How to make bouncycastle .net libraries talk to FIPS compliant .net implementation

We are currently building a certificate authority .net that will: Generate a root certificate Use the root certificate to issue device certs. Revoke a device certificate Generate a Certificate ...
1
vote
0answers
296 views

NSS PKCS11 not working well as jsse provider

I'm using Network Security Services as my Sun PKCS#11 provider for my Java application and I'm experiencing some undesired behavior. reinserting the same trusted certificate into the Keystore will ...
1
vote
1answer
496 views

Is there FIPS compliant RADIUS .NET solution?

I am wondering if there is a FIPS compliant solution for authenticating with a RADIUS server via .NET , such as http://code.google.com/p/radius-net/source/browse/trunk/radius-net/src/?r=4 The problem ...
2
votes
2answers
469 views

FIPS 140-2 compliant .NET Zip Solution?

Other than Xceed, is there a Zip library for .NET that uses encryption algorithms that can be used in a FIPS 140-2 enabled environment? FYI I have read on DotNetZip but it uses WinZipAes, based on ...
1
vote
1answer
412 views

Override MD5 to make it FIPS compliant?

Is there is a way to override the MD5 functionality provided by MD5CryptoServiceProvider to make it FIPS compliant? This is because I would like to keep the logic used in the application and not ...
1
vote
2answers
133 views

Enabling FIPS during application execution?

I'm doing some testing regarding FIPS compliance with an application that currently isn't. I am able to disable FIPS so the application can startup, and then I enable FIPS while using the application. ...

1 2