Ejemplo n.º 1
0
 public static extern unsafe NTSTATUS BCryptEnumAlgorithms(
     AlgorithmOperations dwAlgOperations,
     out int pAlgCount,
     out BCRYPT_ALGORITHM_IDENTIFIER* ppAlgList,
     BCryptEnumAlgorithmsFlags dwFlags = BCryptEnumAlgorithmsFlags.None);
Ejemplo n.º 2
0
 public static extern unsafe SECURITY_STATUS NCryptEnumAlgorithms(
     SafeProviderHandle hProvider,
     AlgorithmOperations dwAlgOperations,
     out int pdwAlgCount,
     out NCryptAlgorithmName *ppAlgList,
     NCryptEnumAlgorithmsFlags dwFlags = NCryptEnumAlgorithmsFlags.None);
Ejemplo n.º 3
0
 public Algorithm(AlgorithmOperations algorithmOperations)
 {
     _algorithmOperations = algorithmOperations;
 }
Ejemplo n.º 4
0
 public static extern unsafe SECURITY_STATUS NCryptEnumAlgorithms(
     SafeProviderHandle hProvider,
     AlgorithmOperations dwAlgOperations,
     out int pdwAlgCount,
     out NCryptAlgorithmName* ppAlgList,
     NCryptEnumAlgorithmsFlags dwFlags = NCryptEnumAlgorithmsFlags.None);
Ejemplo n.º 5
0
 public BetterAlgorithm(AlgorithmOperations algorithmOperations)
     : base(algorithmOperations)
 {
 }