/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
*/
/*
* btohex.c - Binary to Hexadecimal string conversion.
*
* These routines convert binary labels into canonical
* hexadecimal representations of the binary form.
*/
#include <stdlib.h>
#include <strings.h>
/*
* h_alloc - Allocate data storage for a Hexadecimal label string.
*
* Entry id = Type of label to allocate storage for.
* SUN_SL_ID - Sensitivity Label.
* SUN_CLR_ID - Clearance.
*
* Returns NULL, If unable to allocate storage.
* Address of buffer.
*
* Calls malloc;
*/
char *
{
switch (id) {
case SUN_SL_ID:
size = MAXLABELSTR;
break;
case SUN_CLR_ID:
size = MAXLABELSTR;
break;
default:
return (NULL);
}
}
/*
* h_free - Free a Hexadecimal label string.
*
* Entry hex = Hexadecimal label string.
*
* Returns none.
*
* Calls free.
*/
void
{
return;
}
/*
* bsltoh_r - Convert a Sensitivity Label into a Hexadecimal label string.
*
* Entry label = Sensitivity Label to be translated.
* hex = Buffer to place converted label.
* len = Length of buffer.
*
* Returns NULL, If invalid label type.
* Address of buffer.
*
* Calls label_to_str, strncpy.
*/
char *
{
char *h;
free(h);
return (NULL);
}
free(h);
return (hex);
}
/*
* bsltoh - Convert a Sensitivity Label into a Hexadecimal label string.
*
* Entry label = Sensitivity Label to be translated.
*
* Returns NULL, If invalid label type.
* Address of statically allocated hex label string.
*
* Calls bsltoh_r.
*
* Uses hex_buf.
*/
char *
{
}
/*
* bcleartoh_r - Convert a Clearance into a Hexadecimal label string.
*
* Entry clearance = Clearance to be translated.
* hex = Buffer to place converted label.
* len = Length of buffer.
*
* Returns NULL, If invalid label type.
* Address of buffer.
*
* Calls label_to_str, strncpy.
*/
char *
{
char *h;
free(h);
return (NULL);
}
free(h);
return (hex);
}
/*
* bcleartoh - Convert a Clearance into a Hexadecimal label string.
*
* Entry clearance = Clearance to be translated.
*
* Returns NULL, If invalid label type.
* Address of statically allocated hex label string.
*
* Calls bcleartoh_r.
*
* Uses hex_buf.
*/
char *
{
}