Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Sha1.PlatformNotSupported.cs « Arm64 « Arm « Intrinsics « Runtime « System « shared « System.Private.CoreLib « src - github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9b6c5aac63265a045bdfa502db7d0c71fab03613 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
using System.Runtime.CompilerServices;
using System.Runtime.Intrinsics;

namespace System.Runtime.Intrinsics.Arm.Arm64
{
    /// <summary>
    /// This class provides access to the Arm64 SHA1 Crypto intrinsics
    ///
    /// Arm64 CPU indicate support for this feature by setting
    /// ID_AA64ISAR0_EL1.SHA1 is 1 or better
    /// </summary>
    [CLSCompliant(false)]
    public static class Sha1
    {

        public static bool IsSupported {  get { return false; } }

        // <summary>
        /// Performs SHA1 hash update choose form.
        /// vsha1cq_u32 (uint32x4_t hash_abcd, uint32_t hash_e, uint32x4_t wk)
        ///</summary>
        public static Vector128<uint> HashChoose(Vector128<uint> hash_abcd, uint hash_e, Vector128<uint>wk) { throw new PlatformNotSupportedException(); }

        // <summary>
        /// Performs SHA1 hash update majority form.
        /// vsha1mq_u32 (uint32x4_t hash_abcd, uint32_t hash_e, uint32x4_t wk)
        ///</summary>
        public static Vector128<uint> HashMajority(Vector128<uint> hash_abcd, uint hash_e, Vector128<uint>wk) { throw new PlatformNotSupportedException(); }

        // <summary>
        /// Performs SHA1 hash update parity form.
        /// vsha1pq_u32 (uint32x4_t hash_abcd, uint32_t hash_e, uint32x4_t wk)
        ///</summary>
        public static Vector128<uint> HashParity(Vector128<uint> hash_abcd, uint hash_e, Vector128<uint>wk) { throw new PlatformNotSupportedException(); }

        // <summary>
        /// Performs SHA1 fixed rotate
        /// vsha1h_u32 (uint32_t hash_e)
        ///</summary>
        public static uint FixedRotate(uint hash_e) { throw new PlatformNotSupportedException(); }

        // <summary>
        /// Performs SHA1 schedule update 0
        /// vsha1su0q_u32 (uint32x4_t w0_3, uint32x4_t w4_7, uint32x4_t w8_11)
        ///</summary>
        public static Vector128<uint> SchedulePart1(Vector128<uint> w0_3, Vector128<uint> w4_7, Vector128<uint> w8_11) { throw new PlatformNotSupportedException(); }

        // <summary>
        /// Performs SHA1 schedule update 1
        /// vsha1su1q_u32 (uint32x4_t tw0_3, uint32x4_t w12_15)
        ///</summary>
        public static Vector128<uint> SchedulePart2(Vector128<uint> tw0_3, Vector128<uint> w12_15) { throw new PlatformNotSupportedException(); }
    }
}