Beispiel #1
0
        static WinSodium()
        {
            if (PlatformDetails.RunningOnPosix)
            {
                return;
            }

            _is32bits = PlatformDetails.Is32Bits;
            if (_is32bits)
            {
                X86.Initialize();
            }
            else
            {
                X64.Initialize();
            }
        }