示例#1
0
 public static extern unsafe NTSTATUS BCryptEnumAlgorithms(
     AlgorithmOperations dwAlgOperations,
     out int pAlgCount,
     out BCRYPT_ALGORITHM_IDENTIFIER* ppAlgList,
     BCryptEnumAlgorithmsFlags dwFlags = BCryptEnumAlgorithmsFlags.None);
示例#2
0
 public static extern unsafe SECURITY_STATUS NCryptEnumAlgorithms(
     SafeProviderHandle hProvider,
     AlgorithmOperations dwAlgOperations,
     out int pdwAlgCount,
     out NCryptAlgorithmName *ppAlgList,
     NCryptEnumAlgorithmsFlags dwFlags = NCryptEnumAlgorithmsFlags.None);
示例#3
0
 public Algorithm(AlgorithmOperations algorithmOperations)
 {
     _algorithmOperations = algorithmOperations;
 }
示例#4
0
文件: NCrypt.cs 项目: hmemcpy/pinvoke
 public static extern unsafe SECURITY_STATUS NCryptEnumAlgorithms(
     SafeProviderHandle hProvider,
     AlgorithmOperations dwAlgOperations,
     out int pdwAlgCount,
     out NCryptAlgorithmName* ppAlgList,
     NCryptEnumAlgorithmsFlags dwFlags = NCryptEnumAlgorithmsFlags.None);
示例#5
0
 public BetterAlgorithm(AlgorithmOperations algorithmOperations)
     : base(algorithmOperations)
 {
 }