Using named pipes on a machine that has FIPS enabled - C#

182 Views Asked by At

Are there special rules to send messages via named pipes?

I'm using named pipes on a machine that has FIPS enabled.

1

There are 1 best solutions below

1
On

FIPS mode does not affect named pipes, so there are no special rules to follow.

FIPS mode refers to FIPS 140-2, a standard that affects cryptographic operations like encryption, hashing, cryptographic key management, and random number generation. Intuition tells us that named pipes are just a communication channel, ungoverned by FIPS.

But for concrete evidence, we can look at the API. It does not throw any exception related to FIPS. Compare with a managed crypto API, like SHA1Managed. As of .net 4.0, its constructor throws InvalidOperationException when constructed on a system in FIPS mode because it is not a FIPS-certified implementation of SHA-1.