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

pal_eckey.h « System.Security.Cryptography.Native « Unix « Native « src - github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4f180c90078b7d54ea138fd6f03e9c190833a4d8 (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
// 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_types.h"
#include "opensslshim.h"

/*
Cleans up and deletes an EC_KEY instance.

Implemented by calling EC_KEY_free.

No-op if r is null.
The given EC_KEY pointer is invalid after this call.
Always succeeds.
*/
extern "C" void CryptoNative_EcKeyDestroy(EC_KEY* r);

/*
Shims the EC_KEY_new_by_curve_name method.

Returns the new EC_KEY instance.
*/
extern "C" EC_KEY* CryptoNative_EcKeyCreateByCurveName(int32_t nid);

/*
Shims the EC_KEY_new_by_curve_name method.

Returns the new EC_KEY instance.
*/
extern "C" EC_KEY* CryptoNative_EcKeyCreateByOid(const char* oid);

/*
Shims the EC_KEY_generate_key method.

Returns 1 upon success, otherwise 0.
*/
extern "C" int32_t CryptoNative_EcKeyGenerateKey(EC_KEY* eckey);

/*
Shims the EC_KEY_up_ref method.

Returns 1 upon success, otherwise 0.
*/
extern "C" int32_t CryptoNative_EcKeyUpRef(EC_KEY* r);

/*
Gets the key size in bits for the specified EC_KEY.

Returns 1 upon success, otherwise 0.
*/
extern "C" int32_t CryptoNative_EcKeyGetSize(const EC_KEY* key, int32_t* keySize);

/*
Gets the NID of the curve name as an oid value for the specified EC_KEY.
*/
extern "C" int32_t CryptoNative_EcKeyGetCurveName(const EC_KEY* key);

/*
Gets the NID of the curve name as an oid value for the specified EC_KEY.

Returns 1 upon success, otherwise 0.
*/
extern "C" int32_t CryptoNative_EcKeyGetCurveName2(const EC_KEY* key, int32_t* nidName);