2016-09-26 03:47:58 +03:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
#ifndef _FREEBL_H_
|
|
|
|
#define _FREEBL_H_
|
|
|
|
|
2017-02-21 15:55:41 +03:00
|
|
|
/* deprecated */
|
2016-09-26 03:47:58 +03:00
|
|
|
typedef enum {
|
|
|
|
ECPoint_Uncompressed,
|
2017-02-21 15:55:41 +03:00
|
|
|
ECPoint_XOnly,
|
|
|
|
ECPoint_Undefined
|
2016-09-26 03:47:58 +03:00
|
|
|
} ECPointEncoding;
|
|
|
|
|
|
|
|
#endif /* _FREEBL_H_ */
|