Are there special rules to send messages via named pipes?
I'm using named pipes on a machine that has FIPS enabled.
Are there special rules to send messages via named pipes?
I'm using named pipes on a machine that has FIPS enabled.
Copyright © 2021 Jogjafile Inc.
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.