aboutsummaryrefslogtreecommitdiff
path: root/lib/NVault.Crypto.Noscrypt/src/NostrCrypto.cs
blob: 6b547de5001161356c680f8f0ebacd88f2f79bf9 (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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
// Copyright (C) 2024 Vaughn Nugent
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
// published by the Free Software Foundation, either version 3 of the
// License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program.  If not, see <https://www.gnu.org/licenses/>.

using System;
using System.Runtime.CompilerServices;

using VNLib.Utils;

using NCResult = System.Int64;

namespace NVault.Crypto.Noscrypt
{

    /// <summary>
    /// A default implementation of the <see cref="INostrCrypto"/> interface
    /// </summary>
    /// <param name="context">The initialized library context</param>
    public unsafe class NostrCrypto(NCContext context, bool ownsContext) : VnDisposeable, INostrCrypto
    {
        /// <summary>
        /// Gets the underlying library context.
        /// </summary>
        public NCContext Context => context;

        private ref readonly FunctionTable Functions => ref context.Library.Functions;

        ///<inheritdoc/>
        public void Decrypt(
            ref readonly NCSecretKey secretKey, 
            ref readonly NCPublicKey publicKey, 
            ref readonly byte nonce, 
            ref readonly byte cipherText, 
            ref byte plainText, 
            uint size
        )
        {
            Check();

            IntPtr libCtx = context.DangerousGetHandle();

            NCCryptoData data = default;
            data.dataSize = size;

            //Copy nonce to struct memory buffer
            Unsafe.CopyBlock(
                ref Unsafe.AsRef<byte>(data.nonce), 
                in nonce, 
                LibNoscrypt.NC_ENCRYPTION_NONCE_SIZE
            );           

            fixed (NCSecretKey* pSecKey = &secretKey)
            fixed (NCPublicKey* pPubKey = &publicKey)
            fixed (byte* pCipherText = &cipherText, pTextPtr = &plainText)
            {
                //Set input data to the cipher text to decrypt and the output data to the plaintext buffer
                data.inputData = pCipherText;
                data.outputData = pTextPtr;

                NCResult result = Functions.NCDecrypt.Invoke(libCtx, pSecKey, pPubKey, &data);
                NCUtil.CheckResult<FunctionTable.NCDecryptDelegate>(result);
            }
        }

        ///<inheritdoc/>
        public void Encrypt(
            ref readonly NCSecretKey secretKey,
            ref readonly NCPublicKey publicKey, 
            ref readonly byte nonce, 
            ref readonly byte plainText, 
            ref byte cipherText, 
            uint size
        )
        {
            Check();

            IntPtr libCtx = context.DangerousGetHandle();

            NCCryptoData data = default;
            data.dataSize = size;

            //Copy nonce to struct memory buffer           
            Unsafe.CopyBlock(
                ref Unsafe.AsRef<byte>(data.nonce), 
                in nonce, 
                0
            );

            fixed (NCSecretKey* pSecKey = &secretKey)
            fixed (NCPublicKey* pPubKey = &publicKey)
            fixed (byte* pCipherText = &cipherText, pTextPtr = &plainText)
            {
                //Set input data to the plaintext to encrypt and the output data to the cipher text buffer
                data.inputData = pTextPtr;
                data.outputData = pCipherText;

                NCResult result = Functions.NCEncrypt.Invoke(libCtx, pSecKey, pPubKey, &data);
                NCUtil.CheckResult<FunctionTable.NCEncryptDelegate>(result);
            }
        }

        ///<inheritdoc/>
        public void GetPublicKey(ref readonly NCSecretKey secretKey, ref NCPublicKey publicKey)
        {
            Check();

            IntPtr libCtx = context.DangerousGetHandle();

            fixed(NCSecretKey* pSecKey = &secretKey)
            fixed(NCPublicKey* pPubKey = &publicKey)
            {
                NCResult result = Functions.NCGetPublicKey.Invoke(libCtx, pSecKey, pPubKey);
                NCUtil.CheckResult<FunctionTable.NCGetPublicKeyDelegate>(result);
            }
        }

        ///<inheritdoc/>
        public void SignData(
            ref readonly NCSecretKey secretKey, 
            ref readonly byte random32, 
            ref readonly byte data, 
            nint dataSize, 
            ref byte sig64
        )
        {
            Check();

            IntPtr libCtx = context.DangerousGetHandle();

            fixed (NCSecretKey* pSecKey = &secretKey)
            fixed(byte* pData = &data, pSig = &sig64, pRandom = &random32)
            {
                NCResult result = Functions.NCSignData.Invoke(libCtx, pSecKey, pRandom, pData, dataSize, pSig);
                NCUtil.CheckResult<FunctionTable.NCSignDataDelegate>(result);
            }
        }

        ///<inheritdoc/>
        public bool ValidateSecretKey(ref readonly NCSecretKey secretKey)
        {
            Check();

            IntPtr libCtx = context.DangerousGetHandle();

            fixed (NCSecretKey* pSecKey = &secretKey)
            {
                /*
                 * Validate should return a result of 1 if the secret key is valid
                 * or a 0 if it is not.
                 */
                NCResult result = Functions.NCValidateSecretKey.Invoke(libCtx, pSecKey);
                NCUtil.CheckResult<FunctionTable.NCValidateSecretKeyDelegate>(result);

                //Result should be 1 if the secret key is valid
                return result == 1;
            }
        }

        ///<inheritdoc/>
        public void VerifyData(
            ref readonly NCPublicKey pubKey, 
            ref readonly byte data, 
            nint dataSize, 
            ref byte sig64
        )
        {
            Check();

            IntPtr libCtx = context.DangerousGetHandle();
            
            fixed(NCPublicKey* pPubKey = &pubKey)
            fixed (byte* pData = &data, pSig = &sig64)
            {
                NCResult result = Functions.NCVerifyData.Invoke(libCtx, pPubKey, pData, dataSize, pSig);
                NCUtil.CheckResult<FunctionTable.NCVerifyDataDelegate>(result);
            }
        }


        ///<inheritdoc/>
        protected override void Free()
        {
            if(ownsContext)
            {
                context.Dispose();
            }
        }
    }
}