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.
发布评论
评论(1)
FIPS 模式不影响命名管道,因此无需遵循特殊规则。
FIPS 模式指的是 FIPS 140-2,该标准影响加密操作,例如加密、散列、加密密钥管理和随机数生成。直觉告诉我们,命名管道只是一个不受 FIPS 管理的通信通道。
但要获得具体证据,我们可以查看 API。它不会引发任何与 FIPS 相关的异常。与托管加密 API 进行比较,例如 SHA1Managed。从 .net 4.0 开始,其构造函数在 FIPS 模式的系统上构造时会抛出 InvalidOperationException,因为它不是经过 FIPS 认证的 SHA-1 实现。
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.