Lines Matching defs:version
54 * - Output format version number (1) - 4 bytes in network byte order.
447 uint32_t version = SUNW_ENCRYPT_FILE_VERSION;
734 * Read the version number from the head of the file
738 if (read(infd, &version, sizeof (version)) !=
739 sizeof (version)) {
741 "failed to get format version from "
746 version = ntohl(version);
748 switch (version) {
752 * - Output format version 1 (4 bytes)
792 "Unrecognized format version read from "
794 SUNW_ENCRYPT_FILE_VERSION, version);
908 /* Write the version header encrypt command */
911 uint32_t netversion = htonl(version);
917 "failed to write version number "