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

pal_symmetric.cpp « System.Security.Cryptography.Native.Apple « Unix « Native « src - github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7716213d0031d85ce93a421e360b0505abaf4f8d (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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

#include "pal_symmetric.h"

#include <assert.h>

static_assert(PAL_OperationEncrypt == kCCEncrypt, "");
static_assert(PAL_OperationDecrypt == kCCDecrypt, "");

static_assert(PAL_AlgorithmAES == kCCAlgorithmAES128, "");
static_assert(PAL_Algorithm3DES == kCCAlgorithm3DES, "");

static_assert(PAL_ChainingModeECB == kCCModeECB, "");
static_assert(PAL_ChainingModeCBC == kCCModeCBC, "");

static_assert(PAL_PaddingModeNone == ccNoPadding, "");
static_assert(PAL_PaddingModePkcs7 == ccPKCS7Padding, "");

// No PAL_SymmetricOptions are currently mapped, so no asserts required.

extern "C" void AppleCryptoNative_CryptorFree(CCCryptorRef cryptor)
{
    if (cryptor != nullptr)
    {
        CCCryptorRelease(cryptor);
    }
}

extern "C" int AppleCryptoNative_CryptorCreate(PAL_SymmetricOperation operation,
                                               PAL_SymmetricAlgorithm algorithm,
                                               PAL_ChainingMode chainingMode,
                                               PAL_PaddingMode paddingMode,
                                               const uint8_t* pbKey,
                                               int32_t cbKey,
                                               const uint8_t* pbIv,
                                               PAL_SymmetricOptions options,
                                               CCCryptorRef* ppCryptorOut,
                                               int32_t* pccStatus)
{
    if (pccStatus == nullptr)
        return -1;

    *pccStatus = 0;

    if (pbKey == nullptr || cbKey < 1 || ppCryptorOut == nullptr)
        return -1;
    if (pbIv == nullptr && chainingMode != PAL_ChainingModeECB)
        return -1;

    // Ensure we aren't passing through things we don't understand
    assert(operation == PAL_OperationEncrypt || operation == PAL_OperationDecrypt);
    assert(algorithm == PAL_AlgorithmAES || algorithm == PAL_Algorithm3DES);
    assert(chainingMode == PAL_ChainingModeECB || chainingMode == PAL_ChainingModeCBC);
    assert(paddingMode == PAL_PaddingModeNone || paddingMode == PAL_PaddingModePkcs7);
    assert(options == 0);

    CCStatus status = CCCryptorCreateWithMode(operation,
                                              chainingMode,
                                              algorithm,
                                              paddingMode,
                                              pbIv,
                                              pbKey,
                                              static_cast<size_t>(cbKey),
                                              /* tweak is not supported */ nullptr,
                                              0,
                                              /* numRounds is not supported */ 0,
                                              options,
                                              ppCryptorOut);

    *pccStatus = status;
    return status == kCCSuccess;
}

extern "C" int AppleCryptoNative_CryptorUpdate(CCCryptorRef cryptor,
                                               const uint8_t* pbData,
                                               int32_t cbData,
                                               uint32_t* pbOutput,
                                               int32_t cbOutput,
                                               int32_t* pcbWritten,
                                               int32_t* pccStatus)
{
    if (pccStatus == nullptr)
        return -1;

    *pccStatus = 0;

    if (pbData == nullptr || cbData < 0 || pbOutput == nullptr || cbOutput < cbData || pcbWritten == nullptr)
        return -1;

    CCStatus status = CCCryptorUpdate(cryptor,
                                      pbData,
                                      static_cast<size_t>(cbData),
                                      pbOutput,
                                      static_cast<size_t>(cbOutput),
                                      reinterpret_cast<size_t*>(pcbWritten));

    *pccStatus = status;
    return status == kCCSuccess;
}

extern "C" int AppleCryptoNative_CryptorFinal(
    CCCryptorRef cryptor, uint8_t* pbOutput, int32_t cbOutput, int32_t* pcbWritten, int32_t* pccStatus)
{
    if (pccStatus == nullptr)
        return -1;

    *pccStatus = 0;

    if (pbOutput == nullptr || cbOutput < 0 || pcbWritten == nullptr)
        return -1;

    CCStatus status =
        CCCryptorFinal(cryptor, pbOutput, static_cast<size_t>(cbOutput), reinterpret_cast<size_t*>(pcbWritten));

    *pccStatus = status;
    return status == kCCSuccess;
}

extern "C" int AppleCryptoNative_CryptorReset(CCCryptorRef cryptor, const uint8_t* pbIv, int32_t* pccStatus)
{
    if (pccStatus == nullptr)
        return -1;

    *pccStatus = 0;

    if (cryptor == nullptr)
        return -1;

    CCStatus status = CCCryptorReset(cryptor, pbIv);
    *pccStatus = status;
    return status == kCCSuccess;
}