Questions tagged [fips]

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 cryptographic algorithms specified in FIPS 140-2, the latest published revision.

The term FIPS is sometimes used to refer to a specific publication, Security Requirements for Cryptographic Modules FIPS 140. Cryptographic software and hardware that complies with the standard must use only cryptographic algorithms specified in FIPS 140-2, the latest published revision.

However, FIPS 140-2 is one of many publications that describes information technology standards for use by U.S. Government Agencies.

Further information can be found at the FIPS Home Page

432 questions
4
votes
1 answer

FIPS Capable OpenSSL cross-compiled: incore fingerprint issue

I'm having an issue trying to use the OpenSSL shared library (libcrypto) compiled to be FIPS capable on a MIPS device. I cross-compiled the FIPS Object Module and then the OpenSSL library in the following way (summarizing): export…
neoben
  • 743
  • 12
  • 30
4
votes
1 answer

How do I convert from Census FIPS to Lat Lon?

I'm trying to learn some skills in programming (python) by plotting out/manipulating public data sets. Currently, I'm trying to make an interactive population map of the Arctic. I downloaded Alaskan census data from the Alaskan State Department of…
4
votes
1 answer

FIPS 140-2 compliant random number generator - Java

I need to write a random number generator that uses an algorithm that is FIPS 140-2 compliant/certified. I am having a tough time finding anything that will work for me. Anyone done this before? I don't want to pay an arm and a leg to do this. Using…
Adrian E
  • 49
  • 1
  • 3
4
votes
3 answers

Checking Encryption handshake using Wireshark for SQL connection over SSL

I have implemented a secure SSL connection on the SQL Server 2005 server. I use the "Microsoft SQL Server Management studio" to connect to the SQL Server and I check the "Encrypt Connection" check box in the options section. The connection is…
FatherFigure
  • 1,135
  • 1
  • 16
  • 39
4
votes
1 answer

Why are the .NET "Managed" Cryptography classes not permitted if Windows FIPS Compliance policy is enabled?

I have been working on making our .NET application FIPS compliant, and have found that the Managed Cryptography classes (such as AESManaged) are not FIPS compliant. I have read several other articles and questions on which classes are compliant,…
Hydroslide
  • 155
  • 2
  • 10
4
votes
1 answer

How to disable fips in asp .net

I want to disalbe fips in asp .net x64 application. In web.config I added I set debug to false. However my application do not work. Should I declare runtime section in < configSections…
Darqer
  • 2,847
  • 9
  • 45
  • 65
4
votes
3 answers

Consequences for adding relocation information in fips validated libeay32.dll

We are using the FIPS validated libeay32.dll. This dll uses the /FIXED linker switch so that the libeay32.dll will be loaded at fixed base address. The other modules from our project is consuming the openssl dll in shared mode using LoadLibrary()…
4
votes
2 answers

Which .NET SHA1 class is FIPS compliant?

I'm using the SHA1Managed class in my code, but this causes a problem when I run it on a particular machine. I get this exception: System.InvalidOperationException: This implementation is not part of the Windows Platform FIPS validated…
dan-gph
  • 16,301
  • 12
  • 61
  • 79
4
votes
1 answer

Shading counties using FIPS code in R map

I am looking for a way to shade counties on the US maps in R. I have list of numeric/char county FIPS code that I can input as parameter. I just need to highlight these counties -- so would just need to shade them and there are no values or…
rajvijay
  • 1,641
  • 4
  • 23
  • 28
4
votes
1 answer

Are county FIPS accurate in R maps()?

When I run the following code... require(maps) colors <- data.frame(county=county.fips$polyname,color=rep("#FFFFFF",nrow(county.fips)), stringsAsFactors=FALSE) colors[colors$county=="arizona,maricopa","color"] <- "#ABCABC" map("county", col =…
JoeBass
  • 519
  • 7
  • 18
4
votes
1 answer

Java 8 cannot load its cacerts in FIPS. Exception "no such provider: SunEC"

My server was using java 7 and is running fine in FIPS mode. Now we are upgrading to jre8 and the following exception is coming during the startup while loading cacerts. java.lang.RuntimeException: java.security.NoSuchProviderException: no such…
Atul Soman
  • 4,612
  • 4
  • 30
  • 45
4
votes
2 answers

How can I build a DLL using the OpenSSL FIPS static library on Windows?

I asked this on the openssl-users mailing list with no replies, so I thought I'd try here. I am trying to build a Windows DLL that includes the static OpenSSL FIPS libraries. I built the FIPS libraries using perl Configure fips --with-fipslibdir=...…
Graeme Perrow
  • 56,086
  • 21
  • 82
  • 121
4
votes
1 answer

How can I verify that my Tomcat app server correctly supports FIPS 140-2?

I've built openssl-fips, openssl, and tc-native (Tomcat Native Library) and pointed Tomcat at the native library. I see APR started in the logs: 13-Nov-2014 14:01:32.197 INFO [main] org.apache.catalina.core.AprLifecycleListener.init Loaded APR based…
Chris Williams
  • 11,647
  • 15
  • 60
  • 97
4
votes
1 answer

PBKDF2 is a Non- FIPS Complaint Algorithm?

PBKDF2 algorithm is used in SimpleMembership provider (Universal Provider) 2.0. Is it a Non-FIPS Complaint Algorithm? Please ensure the correct solutions?
kalimuthu
  • 139
  • 3
  • 11
4
votes
3 answers

Is there a keyed SHA256 hash algorithm that is FIPS compliant for .NET?

I am creating a keyed SHA256 hash using HMACSHA256 with the following code: HMACSHA256 hmac = new HMACSHA256(Encoding.UTF8.GetBytes(secretKey); byte[] hash = hmac.ComputeHash(Encoding.UTF8.GetBytes(data)); string hashResult = string.Empty; for (int…
hubiggo
  • 43
  • 1
  • 3