fips

How do I convert from Census FIPS to Lat Lon?

主宰稳场 提交于 2019-12-06 00:40:13
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 Labor which gave me population divided by census tract in FIPS (i.e. 0201301090 is Akutan City in the Aleutians East Borough). Is there a way to convert FIPS to Lat Lon or plot by FIPS in python? The FIPS code for places in your example (the 01090 part) is in a style (FIPS 55.3) that was retired long ago by the Census Bureau, so finding a good data

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

自古美人都是妖i 提交于 2019-12-06 00:19:25
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 i = 0; i < hash.Length; i++) { hashResult += hash[i].ToString("x2"); // hex format } This is working just fine, however, it fails in a FIPS enabled environment because HMACSHA256 uses an underlying SHA256Managed implementation which is itself not FIPS compliant. Searching through MSDN documentation I find that the only SHA256 implementation of

Unknown cpu type when compiling OpenSSL FIPS Capable libraries for arm64 or arm7s

荒凉一梦 提交于 2019-12-04 13:30:36
I can successfully (at least without warnings and with resulting .a files) compile for arm7, x86_64, and i386. When I compile for arm64, I get Unknown cpu type 100000c, no adjustments made . When I compile for arm7s, I get Unknown cpu type 100000c, no adjustments made . The script for those two architectures, which is modified from and uses environment scripts from https://github.com/noloader/openssl-1.0.1i-ios is below including arm7, which works and arm7s and arm64, followed by a log tail for arm64. The scripts build non-fips libraries successfully before modification. incore_macho and fips

ASP.NET 2.0 RijndaelManaged encryption algorithm vs. FIPS

╄→гoц情女王★ 提交于 2019-12-03 14:01:30
I'm running into an issue with an ASP.NET 2.0 application. Our network folks just upped our security, and now I get the floowing error whenever I try to access the app: "This implementation is not part of the Windows Platform FIPS validated cryptographic algorithms." I've done a little research, and it sounds like ASP.NET uses the RijndaelManaged AES encryption algorithm to encrypt the ViewState of pages... and RijndaelManaged is on the list of algorithms that aren't FIPS compliant. We're certainly not explicitly calling any encryption algorithm... much less anything on the non-compliant list.

Configure Oracle JDK to use IBM JCE/JSSE providers for FIPS compliance

我们两清 提交于 2019-12-03 13:53:11
问题 I would like to configure the Oracle JDK to use IBM's FIPS-compliant JCE/JSSE security providers. What JAR files do I need and where should they be installed? What should the provider list in the java.security file look like? 回答1: I'm using IBMJCE on sun jdk5 and it works fine. It may be similar to fips, I guess You need ibmjceprovider.jar, ibmpkcs.jar, ibmjcefips.jar You can find them in ibm jre The code like this static{ //install ibm's provider java.security.Security.addProvider(new IBMJCE

Configure Oracle JDK to use IBM JCE/JSSE providers for FIPS compliance

不羁的心 提交于 2019-12-03 04:53:17
I would like to configure the Oracle JDK to use IBM's FIPS-compliant JCE/JSSE security providers. What JAR files do I need and where should they be installed? What should the provider list in the java.security file look like? kyon I'm using IBMJCE on sun jdk5 and it works fine. It may be similar to fips, I guess You need ibmjceprovider.jar, ibmpkcs.jar, ibmjcefips.jar You can find them in ibm jre The code like this static{ //install ibm's provider java.security.Security.addProvider(new IBMJCE()); } public byte[] encrypt(byte[] input)throws SecurityException{ KeyGenerator kg = KeyGenerator

How to disable fips in asp .net

此生再无相见时 提交于 2019-12-01 06:49:18
I want to disalbe fips in asp .net x64 application. In web.config I added <runtime> <enforceFIPSPolicy enabled = "false"> </runtime> I set debug to false. However my application do not work. Should I declare runtime section in < configSections > ? If yes then is it a proper line <section name="runtime" type="System.Configuration.IgnoreSection, System.Configuration, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" allowLocation="false"/> Tung Solution only works for IIS >= 7.5 It doesn't look like IIS allows you to manipulate this setting through a web application's web.config

Problem with FIPS Validated Cryptographic Algorithms

爱⌒轻易说出口 提交于 2019-11-30 13:47:02
I am running Visual Studio 2008 Version 9.0.30729.1 SP with .NET 3.5 SP 1 under Windows XP Pro Version 2002 SP 3 with an Intel Core 2 Duo E8400 3 GHz processor. I am developing a C# WPF application that uses the Microsoft Patterns & Practices group's Composite Application Library (CAL). I am getting the following compliation error in XAML: "MC1000: This implementation is not part of the Windows platform FIPS validated cryptographic algorithms." I have found a hotfix that is supposed to fix this in Microsoft Knowledge Base aritcle 935434. However, the installer for this hotfix reports the

enforceFIPSPolicy flag in web.config doesn't seem to working for web application

≡放荡痞女 提交于 2019-11-30 07:14:50
问题 I'm trying to set up a web application to work in an environment where the FIPSAlgorithmPolicy is set to 1 in the Windows registry (specifically, HKLM/SYSTEM/CurrentControlSet/Control/Lsa). When this flag is enabled, any call to the class MD5CryptoServiceProvider will cause an Invalid Operation Exception to be thrown with the following stack trace: [InvalidOperationException: This implementation is not part of the Windows Platform FIPS validated cryptographic algorithms.] System.Security

enforceFIPSPolicy flag in web.config doesn't seem to working for web application

核能气质少年 提交于 2019-11-29 01:59:48
I'm trying to set up a web application to work in an environment where the FIPSAlgorithmPolicy is set to 1 in the Windows registry (specifically, HKLM/SYSTEM/CurrentControlSet/Control/Lsa). When this flag is enabled, any call to the class MD5CryptoServiceProvider will cause an Invalid Operation Exception to be thrown with the following stack trace: [InvalidOperationException: This implementation is not part of the Windows Platform FIPS validated cryptographic algorithms.] System.Security.Cryptography.RijndaelManaged..ctor() +10480142 System.Web.Configuration.MachineKeySection