Sha256: 72d378bd19f2bb374e043803a9b25f5ee692f86b7d690f66b13d03224de721e7

Contents?: true

Size: 459 Bytes

Versions: 64

Compression:

Stored size: 459 Bytes

Contents

#include <openssl/pkcs7.h>

void print_pkcs7(PKCS7* p7) {
    printf(" | asn1     : %s\n", p7->asn1);
    printf(" | len      : %d\n", p7->length);
    printf(" | state    : %d\n", p7->state);
    printf(" | detached : %d\n", p7->detached);
    printf(" | type     : %d\n", OBJ_nid2obj(p7->type));
}

int main(int argc, char** argv) {
    PKCS7* p7;
    p7 = PKCS7_new();

    printf("--before:\n");
    print_pkcs7(p7);

    PKCS7_free(p7);
    return 0;
}

Version data entries

64 entries across 64 versions & 6 rubygems

Version Path
jruby-jruby-openssl-0.5.0.4 test/ref/pkcs1.c
jruby-openssl-0.8.0.pre3 test/ref/pkcs1.c
jruby-openssl-0.8.0.pre2 test/ref/pkcs1.c
jruby-openssl-0.8.0.pre1 test/ref/pkcs1.c
jruby-openssl-maven-0.7.6.1 test/ref/pkcs1.c
jruby-openssl-0.7.7 test/ref/pkcs1.c
jruby-openssl-0.7.6.1 test/ref/pkcs1.c
jruby-openssl-0.7.5 test/ref/pkcs1.c
jruby-openssl-maven-0.7.4.1 test/ref/pkcs1.c
redcar-dev-0.12.1dev-java lib/openssl/test/ref/pkcs1.c
redcar-dev-0.12.0dev-java lib/openssl/test/ref/pkcs1.c
jruby-openssl-0.7.5.dev test/ref/pkcs1.c
jruby-openssl-0.7.4 test/ref/pkcs1.c
redcar-0.11 lib/openssl/test/ref/pkcs1.c
redcar-0.11.0dev lib/openssl/test/ref/pkcs1.c
jruby-openssl-0.7.3 test/ref/pkcs1.c
redcar-0.10 lib/openssl/test/ref/pkcs1.c
redcar-0.9.2 lib/openssl/test/ref/pkcs1.c
redcar-0.9.1 lib/openssl/test/ref/pkcs1.c
redcar-0.9.0 lib/openssl/test/ref/pkcs1.c