Rename a file that had a confusing filename.
[deb_shairplay.git] / src / rsapem.h
1 #ifndef RSAPEM_H
2 #define RSAPEM_H
3
4 typedef struct rsapem_s rsapem_t;
5
6 rsapem_t *rsapem_init(const char *pemstr);
7 int rsapem_read_vector(rsapem_t *rsapem, unsigned char **data);
8 void rsapem_destroy(rsapem_t *rsapem);
9
10 #endif